/* ============================================================
   CAÇAMBA EXPRESS — NOVO TEMA VISUAL PREMIUM
   Design: Laranja #fc8a00 + Dark Navy
   ============================================================ */

/* --- Google Fonts: Sora (display) + Nunito (body) --- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700&display=swap');

/* ============================================================
   1. VARIÁVEIS DO TEMA (Tailwind CSS Root Variables)
   Isso atualiza automaticamente TODAS as referências de cores 
   no site inteiro (bg-primary, text-primary, border-primary, etc.)
   ============================================================ */
:root {
  /* Cor primária: Laranja (#fc8a00) mapeado para HSL */
  --primary: 33 97% 49%;
  --primary-foreground: 0 0% 100%;

  /* Anéis de foco e seleção usam a cor primária */
  --ring: 33 97% 49%;

  /* Tons arredondados */
  --radius: 0.75rem;
}

/* Modo Escuro (Se necessário) */
.dark {
  --primary: 33 97% 49%;
  --primary-foreground: 0 0% 100%;
  --ring: 33 97% 49%;
}

/* ============================================================
   2. FONTES E TIPOGRAFIA
   ============================================================ */
body {
  font-family: 'Nunito', 'Inter', sans-serif !important;
}

h1, h2, h3, h4, h5, h6,
.font-display {
  font-family: 'Sora', 'Barlow', sans-serif !important;
  letter-spacing: -0.02em;
}

.text-6xl, .text-7xl {
  font-family: 'Sora', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

.text-5xl, .text-3xl, .text-2xl {
  font-family: 'Sora', sans-serif !important;
  font-weight: 700 !important;
}

.tracking-widest,
.tracking-wider {
  font-family: 'Nunito', sans-serif !important;
  font-weight: 700 !important;
}

/* ============================================================
   3. SELEÇÃO DE TEXTO
   ============================================================ */
::selection {
  background-color: rgba(252, 138, 0, 0.30) !important;
  color: inherit !important;
}

/* ============================================================
   4. ESTÉTICAS DE CARD (Substituindo border radius e box-shadows apenas)
   ============================================================ */
.bg-card,
[class*="rounded-2xl"],
[class*="rounded-3xl"] {
  border-radius: 1.25rem !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.bg-card:hover,
[class*="rounded-2xl"]:hover,
[class*="rounded-3xl"]:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08) !important;
}

/* ============================================================
   5. BOTÃO WHATSAPP (Preservar a cor do WhatsApp)
   Se em algum lugar o tema laranja afetar o WhatsApp, forçamos o verde nele
   ============================================================ */
.bg-\[\#25D366\],
a[href*="whatsapp"],
a[href*="wa.me"] {
  background-color: #25D366 !important;
}

a[href*="whatsapp"]:hover,
a[href*="wa.me"]:hover,
.bg-\[\#25D366\]:hover {
  background-color: #128c3e !important;
}
