/* ==========================================================================
   DESIGN TOKENS & VARIÁVEIS GLOBAIS — DRA. KELLI LIMA ADVOCACIA
   ========================================================================== */

:root {
  /* --- Paleta de Cores Institucional --- */
  --brand-primary: #2E5C54;            /* Verde Esmeralda / Petróleo Principal */
  --brand-primary-dark: #0F3E3B;       /* Verde Escuro Profundo / Navbar / Footer / Títulos */
  --brand-primary-light: #447D73;      /* Verde Médio Suave */
  --brand-gold: #C2AC6B;               /* Dourado Nobre / Acento Elegante */
  --brand-gold-light: #DFCD98;         /* Dourado Claro / Realces */
  --brand-gold-dark: #9E8847;          /* Dourado Profundo */
  --brand-gold-gradient: linear-gradient(135deg, #C2AC6B 0%, #A89253 100%);
  --brand-hero-gradient: linear-gradient(135deg, rgba(15, 62, 59, 0.94) 0%, rgba(46, 92, 84, 0.88) 100%);

  /* --- Superfícies e Fundos --- */
  --bg-page: #F8F9F8;                  /* Fundo Geral Off-white Mineral */
  --bg-surface: #FFFFFF;               /* Fundo de Cards e Superfícies */
  --bg-surface-alt: #F3F5F4;           /* Fundo Secundário Neutro */
  --bg-warm: #F6F4EF;                  /* Fundo Bege Claro Acolhedor */
  --bg-dark: #0F3E3B;                  /* Fundo Escuro para Seções de Alto Contraste */
  --bg-footer: #0A2D2B;                /* Fundo Noturno Ultra-Profundo para Footer */

  /* --- Textos e Contraste --- */
  --text-dark: #0F3E3B;                /* Texto Principal Escuro */
  --text-body: #324B47;                /* Texto de Parágrafos com Alta Legibilidade */
  --text-muted: #5C7772;               /* Textos Secundários e Legendas */
  --text-light: #FFFFFF;               /* Texto Branco Puro */
  --text-light-muted: rgba(255, 255, 255, 0.75); /* Texto Branco Suave */
  --text-footer: #D8E5E3;              /* Texto do Rodapé de Alto Contraste (WCAG AAA) */
  --text-footer-muted: #B8CDC9;        /* Texto Secundário do Rodapé */

  /* --- Elementos de Conversão --- */
  --whatsapp-green: #25D366;           /* Verde Oficial WhatsApp */
  --whatsapp-hover: #128C7E;           /* Verde Escuro Hover WhatsApp */
  --border-subtle: rgba(15, 62, 59, 0.08); /* Bordas Finas 1px */
  --border-light: rgba(255, 255, 255, 0.12); /* Bordas Claras em Fundo Escuro */
  --border-gold: rgba(194, 172, 107, 0.35); /* Bordas Douradas */

  /* --- Tipografia --- */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* --- Curvas e Tempos de Movimento (Diretriz Premium & Slowmotion) --- */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-slowmo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s var(--ease-premium);
  --transition-normal: 0.4s var(--ease-premium);
  --transition-slow: 0.8s var(--ease-premium);
  --transition-slowmo: 1.5s var(--ease-slowmo);
  --transition-entrance: 1.6s var(--ease-slowmo);
  --transition-zoom-out: 2.2s var(--ease-slowmo);

  /* --- Sombreamentos Orgânicos & Profundos --- */
  --shadow-sm: 0 2px 8px rgba(15, 62, 59, 0.04);
  --shadow-card: 0 10px 30px -5px rgba(15, 62, 59, 0.06), 0 2px 8px rgba(15, 62, 59, 0.03);
  --shadow-hover: 0 20px 45px -10px rgba(15, 62, 59, 0.16), 0 0 20px rgba(194, 172, 107, 0.15);
  --shadow-floating: 0 16px 36px rgba(0, 0, 0, 0.18);

  /* --- Dimensões e Espaçamentos --- */
  --container-max: 1240px;
  --header-height: 96px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}
