/* src/css/style.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --primary: #fbbf24;
  /* Amarelo Solar */
  --secondary: #0f172a;
  /* Azul Escuro */
}

body {
  font-family: 'Inter', sans-serif;
  @apply text-slate-800 bg-slate-50;
}

.btn-primary {
  @apply bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-6 rounded-lg transition duration-300 shadow-lg;
}