/* Design Tokens — Fazenda Canoa × Excalibur
 * Paleta fiel ao site fazendacanoa.com.br + Opção 2 Híbrido Editorial
 */
:root {
  /* --- Paleta dark (fundos escuros) --- */
  --bg-dark:     #1C1B13;   /* preto terroso — principal */
  --bg-dark-2:   #201A19;   /* preto bordô — secundário */
  --bg-dark-3:   #2F2725;   /* marrom café — cards */
  --bg-dark-4:   #382E2C;   /* marrom escuro — elevação */

  /* --- Paleta light (fundos claros) --- */
  --bg-cream:    #F0EEED;   /* creme off-white — principal light */
  --bg-white:    #FFFFFF;   /* branco puro */
  --bg-pearl:    #F1F1F2;   /* cinza pérola alternado */

  /* --- Texto em fundo escuro --- */
  --text-light:       #F5F5F0;
  --text-light-muted: rgba(245, 245, 240, 0.65);
  --text-light-dim:   rgba(245, 245, 240, 0.42);

  /* --- Texto em fundo claro --- */
  --text-dark:        #212529;
  --text-dark-muted:  #5B5B5B;
  --text-dark-dim:    #878787;

  /* --- Bordas --- */
  --border-light:  rgba(255, 255, 255, 0.08);
  --border-light-strong: rgba(255, 255, 255, 0.18);
  --border-dark:   rgba(28, 27, 19, 0.12);
  --border-dark-strong: rgba(28, 27, 19, 0.24);

  /* --- Accent (cor de marca, default: champagne — mais sóbrio, editorial) --- */
  --accent:        #B8A06B;   /* champagne dourado terra, default neutro */
  --accent-hover:  #9D8855;
  --accent-dim:    rgba(184, 160, 107, 0.14);
  --accent-glow:   rgba(184, 160, 107, 0.30);

  /* Variações de accent disponíveis para override por LP */
  --coral:         #C96B4A;   /* quente intimista, LP Legado */
  --coral-hover:   #A35636;
  --coral-dim:     rgba(201, 107, 74, 0.14);
  --coral-glow:    rgba(201, 107, 74, 0.32);

  --terra:         #8B6F47;   /* terra cerrado, LP Goiânia */
  --terra-hover:   #70593A;
  --terra-dim:     rgba(139, 111, 71, 0.15);
  --terra-glow:    rgba(139, 111, 71, 0.30);

  /* Vermelho mantido apenas como acento crítico pontual */
  --critical:      #C02B0A;

  --champagne:     #B8A06B;
  --champagne-dim: rgba(184, 160, 107, 0.14);

  /* --- Tokens contextuais (mudam por seção) --- */
  --bg:      var(--bg-dark);
  --text:    var(--text-light);
  --muted:   var(--text-light-muted);
  --dim:     var(--text-light-dim);
  --border:  var(--border-light);
  --border-strong: var(--border-light-strong);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-bg-hover: rgba(255, 255, 255, 0.06);

  /* --- Tipografia --- */
  --serif: 'Fraunces', 'Farnham Display', Georgia, 'Times New Roman', serif;
  --sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* --- Escala tipográfica --- */
  --fs-eyebrow: 0.72rem;
  --fs-meta: 0.78rem;
  --fs-body: 1rem;
  --fs-lead: clamp(1.05rem, 1.4vw, 1.25rem);
  --fs-h3: clamp(1.1rem, 1.6vw, 1.5rem);
  --fs-h2: clamp(1.8rem, 4.5vw, 3rem);
  --fs-h1: clamp(2.4rem, 7.5vw, 4.8rem);
  --fs-display: clamp(3rem, 9vw, 6rem);

  /* --- Espaçamento --- */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-6: 3rem;
  --sp-8: 4rem;
  --sp-12: 6rem;

  /* --- Bordas arredondadas --- */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  /* --- Animação --- */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 240ms;
}

/* ===== TEMAS POR SEÇÃO ===== */

/* Seção dark (padrão) */
.theme-dark {
  --bg: var(--bg-dark);
  --text: var(--text-light);
  --muted: var(--text-light-muted);
  --dim: var(--text-light-dim);
  --border: var(--border-light);
  --border-strong: var(--border-light-strong);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-bg-hover: rgba(255, 255, 255, 0.06);
}

/* Variante dark-2 (bordô) */
.theme-dark-2 {
  --bg: var(--bg-dark-2);
  --text: var(--text-light);
  --muted: var(--text-light-muted);
  --dim: var(--text-light-dim);
  --border: var(--border-light);
  --border-strong: var(--border-light-strong);
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-bg-hover: rgba(255, 255, 255, 0.07);
}

/* Seção light (creme) */
.theme-light {
  --bg: var(--bg-cream);
  --text: var(--text-dark);
  --muted: var(--text-dark-muted);
  --dim: var(--text-dark-dim);
  --border: var(--border-dark);
  --border-strong: var(--border-dark-strong);
  --card-bg: rgba(28, 27, 19, 0.03);
  --card-bg-hover: rgba(28, 27, 19, 0.06);
}

/* Seção white (puro) */
.theme-white {
  --bg: var(--bg-white);
  --text: var(--text-dark);
  --muted: var(--text-dark-muted);
  --dim: var(--text-dark-dim);
  --border: var(--border-dark);
  --border-strong: var(--border-dark-strong);
  --card-bg: rgba(28, 27, 19, 0.025);
  --card-bg-hover: rgba(28, 27, 19, 0.05);
}

/* ===== ACCENTS POR LP (aplicar no <body>) ===== */

/* LP Investimento : champagne (dourado patrimonial) */
.accent-champagne {
  --accent: #B8A06B;
  --accent-hover: #9D8855;
  --accent-dim: rgba(184, 160, 107, 0.14);
  --accent-glow: rgba(184, 160, 107, 0.30);
}

/* LP Legado : coral (quente intimista) */
.accent-coral {
  --accent: #C96B4A;
  --accent-hover: #A35636;
  --accent-dim: rgba(201, 107, 74, 0.14);
  --accent-glow: rgba(201, 107, 74, 0.32);
}

/* LP Goiânia : terra (cerrado, raízes) */
.accent-terra {
  --accent: #8B6F47;
  --accent-hover: #70593A;
  --accent-dim: rgba(139, 111, 71, 0.15);
  --accent-glow: rgba(139, 111, 71, 0.30);
}
