/*
 * site.css — Estilos globais do site
 * Customizações: painel Admin > Dev Tools > CSS Global
 *
 * Seções:
 *  1. Reset & Box Model
 *  2. CSS Custom Properties (:root)
 *  3. Utilitários de espaçamento
 *  4. Tipografia base
 *  5. Componentes de layout (header, footer, nav…)
 *  6. Componentes de UI (botões, formulários…)
 *  7. Mega menu
 *  8. Mobile drawer
 *  9. Utilitários responsivos
 */

/* ══════════════════════════════════════════════════════
   1. RESET & BOX MODEL
   ══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ══════════════════════════════════════════════════════
   2. CSS CUSTOM PROPERTIES
   As cores dinâmicas (--gold, --green) são sobrescritas
   via <style> inline no base.php a partir das configs
   do painel — este bloco define os valores estáticos.
   ══════════════════════════════════════════════════════ */
:root {
  /* ── Backgrounds ── */
  --bg:         var(--brand-bg, #0B0B0C);
  --surface:    #111114;
  --surface2:   #18181C;
  --card:       rgba(255,255,255,0.04);
  --border:     rgba(255,255,255,0.08);
  --border-gold:rgba(212,175,55,0.25);

  /* ── Brand Colors — defaults; overridden by branding.css + base.php inline ── */
  --gold:       var(--brand-primary,  #D4AF37);
  --gold-light: #F5E6A8;
  --gold-dark:  #C9A227;
  --gold-soft:  rgba(212,175,55,0.10);
  --gold-glow:  rgba(212,175,55,0.35);
  --green:      var(--brand-accent,   #00C896);
  --green-soft: rgba(0,200,150,0.08);
  --red:        #EF4444;

  /* ── Text ── */
  --text:       var(--brand-text, #F0EDE8);
  --muted:      #7A7A8A;
  --muted2:     #9A9AAA;

  /* ── Radius ── */
  --radius:     12px;
  --radius-lg:  20px;

  /* ── Tipografia — escala global ──
     Use sempre estas vars em sections geradas por IA */
  --fs-xs:    11px;
  --fs-sm:    13px;
  --fs-base:  15px;
  --fs-md:    17px;
  --fs-lg:    20px;
  --fs-xl:    24px;
  --fs-2xl:   clamp(22px, 2.5vw, 30px);
  --fs-3xl:   clamp(26px, 3.5vw, 40px);
  --fs-4xl:   clamp(30px, 4.5vw, 52px);
  --fs-5xl:   clamp(38px, 6.5vw, 68px);

  /* Pesos */
  --fw-normal:   400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-black:    800;

  /* Line heights */
  --lh-tight:   1.1;
  --lh-snug:    1.25;
  --lh-normal:  1.6;
  --lh-relaxed: 1.75;

  /* Letter spacing */
  --ls-tighter: -0.04em;
  --ls-tight:   -0.02em;
  --ls-normal:  0;
  --ls-wide:    0.06em;
  --ls-wider:   0.12em;

  /* ── Transitions ── */
  --ease-smooth:    cubic-bezier(.25,.46,.45,.94);
  --ease-bounce:    cubic-bezier(.34,1.56,.64,1);
  --ease-out:       cubic-bezier(.16,1,.3,1);
  --t-fast:         .18s;
  --t-base:         .28s;
  --t-slow:         .42s;
  --t-smooth:       .32s var(--ease-smooth);

  /* ── Shadows ── */
  --shadow-sm:   0 1px 6px rgba(0,0,0,.15);
  --shadow-md:   0 4px 20px rgba(0,0,0,.2);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.28);
  --shadow-xl:   0 16px 64px rgba(0,0,0,.38);
}

/* ══════════════════════════════════════════════════════
   3. UTILITÁRIOS DE ESPAÇAMENTO
   ══════════════════════════════════════════════════════ */
.clear { width: 100%; clear: both; }
.clear10,.clear20,.clear30,.clear40,.clear50,
.clear60,.clear70,.clear80,.clear90,.clear100 { width: 100%; clear: both; display: block; }
.clear10  { height: 10px;  } .clear20 { height: 20px; } .clear30 { height: 30px; }
.clear40  { height: 40px;  } .clear50 { height: 50px; } .clear60 { height: 60px; }
.clear70  { height: 70px;  } .clear80 { height: 80px; } .clear90 { height: 90px; }
.clear100 { height: 100px; }

body::-webkit-scrollbar{ #dfd1c4 !important; width: 10px; }
body::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, rgba(190,169,142,1), rgba(190,169,142,0.6));
  border-radius: 999px !important;
}

/* ══════════════════════════════════════════════════════
   4. TIPOGRAFIA BASE
   ══════════════════════════════════════════════════════ */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body, 'Inter', 'Segoe UI', system-ui, sans-serif);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ── TOPBAR ── */
.site-topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 101;
  height: var(--topbar-h, 48px);
  background: #070B59;
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-topbar .tb-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex; align-items: center; justify-content: flex-end; gap: 32px;
}
.site-topbar a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.78);
  text-decoration: none; transition: color .2s; white-space: nowrap;
}
.site-topbar a:hover { color: #fff; }
.site-topbar a i { font-size: 13px; }
.site-topbar .tb-wa { color: #25D366; }
.site-topbar .tb-wa:hover { color: #43e081; }
@media(max-width:600px){ .site-topbar { display: none; } }

/* ── HEADER ── */
.site-header {
  position: fixed; top: var(--topbar-h, 0px); left: 0; right: 0;
  z-index: 100;
  background: rgba(11,11,12,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}
.header-inner {
  position: relative;
  max-width: 1240px; margin: 0 auto;
  padding: 0 32px;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.site-logo {
  display: flex; align-items: center; gap: 14px;
  font-weight: 700; font-size: 18px; letter-spacing: -.3px;
  flex-shrink: 0;
}
.site-logo img { height: 60px; object-fit: contain; }
.site-logo span { color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--muted);
  transition: all .2s;
}
.site-nav a:hover, .site-nav a.active { color: var(--text); background: rgba(255,255,255,.06); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: #0B0B0C !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px var(--gold-glow);
  padding: 8px 20px !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px var(--gold-glow) !important; background: rgba(255,255,255,0) !important; }

/* ── MOBILE MENU ── */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: all .3s; }

/* ── MAIN ── */
.site-main { padding-top: calc(80px + var(--topbar-h, 0px)); min-height: calc(100vh - 80px - var(--topbar-h, 0px)); }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: var(--sec-py, 80px) 0; }
.section-sm { padding: var(--sec-py, 48px) 0; }
.section-flush { padding: 0; }    /* ← use quando não quer padding nenhum */

/* ── HEADINGS ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -.5px; line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 560px; line-height: 1.7; }

/* ════════════════════════════════════════════════════════════
   SISTEMA TIPOGRÁFICO DE SECTIONS — classes globais
   Use estas classes em sections IA para garantir consistência
   ════════════════════════════════════════════════════════════ */

/* Eyebrow / label acima do título */
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-xs); font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: var(--ls-wider);
  color: var(--gold); margin-bottom: 14px;
}
.sec-eyebrow::before {
  content: ''; width: 20px; height: 1px;
  background: currentColor; flex-shrink: 0;
}

/* Heading principal da section (equivale a h2) */
.sec-h2 {
  font-family: var(--font-h2, var(--font-heading, var(--font-body, inherit)));
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-snug);
  color: var(--text);
  margin-bottom: 16px;
}

/* Heading secundário da section (equivale a h3) */
.sec-h3 {
  font-family: var(--font-h3, var(--font-heading, var(--font-body, inherit)));
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-snug);
  color: var(--text);
  margin-bottom: 12px;
}

/* Parágrafo de destaque / subtítulo */
.sec-lead {
  font-size: var(--fs-md);
  color: var(--muted);
  line-height: var(--lh-relaxed);
  max-width: 580px;
  margin-bottom: 32px;
}

/* Texto de corpo padrão */
.sec-body {
  font-size: var(--fs-base);
  color: var(--muted);
  line-height: var(--lh-normal);
}

/* Label / caption pequeno */
.sec-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--muted);
}

/* ── CARDS ── */
.card-grid { display: grid; gap: 20px; }
.card-grid-2 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.s-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s;
  display: flex; flex-direction: column;
}
.s-card:hover {
  border-color: rgba(212,175,55,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.s-card img { width: 100%; height: 200px; object-fit: cover; }
.s-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.s-card-title { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.s-card-text { font-size: 14px; color: var(--muted); flex: 1; line-height: 1.6; }
.s-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--gold);
  transition: gap .2s;
}
.s-card-link:hover { gap: 10px; }

/* ════════════════════════════════════════════════════════════
   TIPOGRAFIA GLOBAL — regras base para todos os elementos
   Sections podem customizar via classes específicas (.sec-h2 etc.)
   ════════════════════════════════════════════════════════════ */
h1, h4, h5, h6 {
  font-family: var(--font-heading, var(--font-body, 'Inter', sans-serif));
  line-height: var(--lh-snug, 1.25);
}
h2 {
  font-family: var(--font-h2, var(--font-heading, var(--font-body, 'Inter', sans-serif)));
  line-height: var(--lh-snug, 1.25);
  font-size: var(--fs-3xl, clamp(26px,3.5vw,40px));
  font-weight: var(--fw-bold, 700);
  letter-spacing: var(--ls-tight, -.02em);
}
h3 {
  font-family: var(--font-h3, var(--font-heading, var(--font-body, 'Inter', sans-serif)));
  line-height: var(--lh-snug, 1.25);
  font-size: var(--fs-2xl, clamp(22px,2.5vw,30px));
  font-weight: var(--fw-semibold, 600);
}
h4 { font-size: var(--fs-xl, 24px);  font-weight: var(--fw-semibold, 600); }
h5 { font-size: var(--fs-lg, 20px);  font-weight: var(--fw-medium, 500); }

/* ════════════════════════════════════════════════════════════
   SISTEMA DE BOTÕES PADRÃO  — .btn-padrao + .btn-wa
   Use SEMPRE estas classes em novas sections
   ════════════════════════════════════════════════════════════ */
.btn-padrao {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  color: #fff; text-decoration: none !important;
  background:
    radial-gradient(120% 200% at 20% 10%, rgba(255,255,255,.28), rgba(255,255,255,0) 42%),
    linear-gradient(105deg, var(--gold, #bea88e) 0%, #cdb08e 60%, #dcc4a0 120%);
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 10px 28px rgba(190,168,142,.28);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  white-space: nowrap;
}
.btn-padrao:hover {
  transform: translateY(-2px) scale(1.015); filter: brightness(1.06);
  box-shadow: 0 16px 40px rgba(190,168,142,.42); color: #fff;
}
.btn-padrao:active { transform: translateY(-1px) scale(.99); }
.btn-padrao.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-padrao.btn-lg { padding: 17px 44px; font-size: 16px; }
.btn-padrao.ghost {
  background: transparent; border: 1px solid rgba(190,168,142,.5);
  color: var(--gold, #bea88e); box-shadow: none;
}
.btn-padrao.ghost:hover { background: rgba(190,168,142,.1); color: var(--gold, #bea88e); }

.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  color: #fff; text-decoration: none !important;
  background:
    radial-gradient(120% 200% at 20% 10%, rgba(255,255,255,.22), rgba(255,255,255,0) 42%),
    linear-gradient(105deg, #25D366 0%, #1ebc59 62%, #0d8f3f 120%);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 10px 28px rgba(37,211,102,.26);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  white-space: nowrap;
}
.btn-wa:hover {
  transform: translateY(-2px) scale(1.015); filter: brightness(1.06);
  box-shadow: 0 16px 40px rgba(37,211,102,.4); color: #fff;
}
.btn-wa:active { transform: translateY(-1px) scale(.99); }
.btn-wa.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-wa.btn-lg { padding: 17px 44px; font-size: 16px; }

/* ── LEGACY BUTTON ALIASES (btn-site + modifier → design system classes) ── */
/* btn-site is aliased to btn-padrao for backward compat with older section HTML */
.btn-site { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 999px; font-family: var(--font-body,'Inter',sans-serif); font-size: 15px; font-weight: 600; letter-spacing: -.01em; cursor: pointer; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, filter .18s ease; border: none; white-space: nowrap; }
/* .btn-site.btn-gold → btn-wa (WhatsApp green) */
.btn-site.btn-gold, a.btn-site.btn-gold {
  background: linear-gradient(135deg, #128c7e, #25d366, #128c7e) !important;
  background-size: 200% 100% !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(37,211,102,.35) !important;
}
.btn-site.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 8px 28px rgba(37,211,102,.5) !important; }
/* .btn-site.btn-outline → ghost btn-padrao */
.btn-site.btn-outline, a.btn-site.btn-outline {
  background: transparent !important;
  color: var(--text) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 999px !important;
}
.btn-site.btn-outline:hover { border-color: var(--gold) !important; color: var(--gold) !important; }

/* ════════════════════════════════════════════════════════════
   BUTTON NORMALIZATION BRIDGE
   Maps legacy section-specific button classes → design system
   Sections that use these classes get consistent styling
   ════════════════════════════════════════════════════════════ */

/* Primary CTA buttons → btn-padrao style */
.hw-btn-main,
.tm-main-btn,
.btn-main,
.cta-btn-main,
.sec-btn-primary,
a[class*="-btn-main"],
a[class*="btn-principal"] {
  display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important;
  padding: 14px 32px !important; border-radius: 999px !important;
  font-family: var(--font-body,'Inter',sans-serif) !important;
  font-size: 15px !important; font-weight: 600 !important; letter-spacing: -.01em !important;
  color: #fff !important; text-decoration: none !important;
  background:
    radial-gradient(120% 200% at 20% 10%, rgba(255,255,255,.28), rgba(255,255,255,0) 42%),
    linear-gradient(105deg, var(--gold, #bea88e) 0%, #cdb08e 60%, #dcc4a0 120%) !important;
  border: 1px solid rgba(255,255,255,.32) !important;
  box-shadow: 0 10px 28px rgba(190,168,142,.28) !important;
  cursor: pointer !important;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease !important;
}
.hw-btn-main:hover, .tm-main-btn:hover, .btn-main:hover,
.cta-btn-main:hover, .sec-btn-primary:hover {
  transform: translateY(-2px) scale(1.015) !important;
  filter: brightness(1.06) !important;
  box-shadow: 0 16px 40px rgba(190,168,142,.42) !important;
  color: #fff !important;
}

/* WhatsApp buttons → btn-wa style */
/* :not(.btn-padrao) — se o dev escolheu explicitamente btn-padrao, respeita o estilo dele */
.s-btn-wa,
.sob-btn-wa,
[class*="btn-wa"]:not(.btn-wa),
[class*="btn-whatsapp"],
a[href*="wa.me"][class*="btn"]:not(.btn-padrao),
a[href*="whatsapp"][class*="btn"]:not(.btn-padrao) {
  display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 9px !important;
  padding: 14px 32px !important; border-radius: 999px !important;
  font-family: var(--font-body,'Inter',sans-serif) !important;
  font-size: 15px !important; font-weight: 600 !important; letter-spacing: -.01em !important;
  color: #fff !important; text-decoration: none !important;
  background:
    radial-gradient(120% 200% at 20% 10%, rgba(255,255,255,.22), rgba(255,255,255,0) 42%),
    linear-gradient(105deg, #25D366 0%, #1ebc59 62%, #0d8f3f 120%) !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  box-shadow: 0 10px 28px rgba(37,211,102,.26) !important;
  cursor: pointer !important;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease !important;
}
.s-btn-wa:hover, .sob-btn-wa:hover {
  transform: translateY(-2px) scale(1.015) !important;
  filter: brightness(1.06) !important;
  box-shadow: 0 16px 40px rgba(37,211,102,.4) !important;
  color: #fff !important;
}

/* Secondary / outline / ghost buttons — keep transparent */
.hw-btn-ghost,
.tm-sub-btn,
.btn-clean,
[class*="btn-ghost"],
[class*="btn-outline"],
[class*="btn-secondary"] {
  display: inline-flex !important; align-items: center !important; gap: 8px !important;
  padding: 13px 28px !important; border-radius: 999px !important;
  font-size: 14px !important; font-weight: 600 !important;
  color: rgba(255,255,255,.85) !important; text-decoration: none !important;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  cursor: pointer !important;
  transition: all .18s ease !important;
}
.hw-btn-ghost:hover, .tm-sub-btn:hover, .btn-clean:hover {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.4) !important;
  color: #fff !important;
}

/* Blog / listing CTA buttons */
.btn-cta {
  display: inline-flex !important; align-items: center !important; gap: 8px !important;
  padding: 12px 28px !important; border-radius: 999px !important;
  font-size: 14px !important; font-weight: 600 !important;
  color: var(--gold, #bea88e) !important;
  background: rgba(190,168,142,.10) !important;
  border: 1px solid rgba(190,168,142,.35) !important;
  text-decoration: none !important;
  transition: all .18s !important;
}
.btn-cta:hover {
  background: rgba(190,168,142,.18) !important;
  border-color: rgba(190,168,142,.6) !important;
  color: #fff !important;
}

/* ── FORM ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px; font-size: 14px; color: var(--text);
  font-family: inherit; outline: none; transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select option { background: #18181C; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 32px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text); font-weight: 500; }

/* ── FOOTER ── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 80px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 13px; color: var(--muted); }
.gold-line { height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 40px 0; opacity: .25; }

/* ── LGPD Banner ── */
#lgpdBanner {
  position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 999;
  background: #ffffff;
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,.08);
  border-top: 3px solid var(--brand-primary, var(--gold, #D4AF37));
  border-radius: 14px; padding: 16px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 18px 44px -18px rgba(12,9,64,.22),
    0 6px 16px -6px rgba(12,9,64,.12);
  max-width: 900px; margin: 0 auto;
  color: #1f2430;
}
#lgpdBanner p { font-size: 13px; line-height: 1.55; color: #3a3f4d; margin: 0; }
#lgpdBanner a {
  color: var(--brand-secondary, var(--brand-primary, var(--gold, #8A6D2B)));
  font-weight: 600; text-decoration: underline; text-underline-offset: 2px;
}
#lgpdBanner a:hover { color: var(--brand-primary, var(--gold, #D4AF37)); }
#lgpdBanner button {
  background: var(--brand-secondary, #0c0940);
  color: #fff; border: none; border-radius: 10px;
  padding: 10px 22px; font-size: 13px; font-weight: 700; letter-spacing: .2px;
  cursor: pointer; white-space: nowrap;
  box-shadow: 0 6px 16px -6px rgba(12,9,64,.45);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
#lgpdBanner button:hover { transform: translateY(-1px); filter: brightness(1.1); box-shadow: 0 10px 22px -8px rgba(12,9,64,.6); }

/* ── NAV ENHANCEMENTS ── */
.nav-icon { margin-right: 3px; }
.nav-badge {
  font-size: 9px; font-weight: 700; letter-spacing: .3px;
  background: #ff4757; color: #fff;
  padding: 1px 5px; border-radius: 10px; margin-left: 5px; vertical-align: middle;
}
.nav-sep { display: inline-block; width: 1px; height: 18px; background: var(--border); margin: 0 4px; vertical-align: middle; }
.nav-social {
  width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; border: 1px solid var(--border);
  color: var(--muted); font-size: 15px; transition: all .2s;
}
.nav-social:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }
.nav-info { font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }
.nav-info:hover { color: var(--text); }

/* ── NAV BUTTON VARIANTS ── */
.nav-btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: #0B0B0C !important; font-weight: 700 !important;
  padding: 8px 20px !important; border-radius: 8px; font-size: 14px !important;
  box-shadow: 0 4px 16px var(--gold-glow);
}
.nav-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px var(--gold-glow) !important; background: rgba(0,0,0,0) !important; }
.nav-btn-outline {
  border: 1px solid var(--border) !important; background: transparent !important;
  padding: 7px 16px !important; border-radius: 8px; font-size: 14px !important;
}
.nav-btn-outline:hover { border-color: var(--gold) !important; color: var(--gold) !important; }
.nav-btn-wa {
  background: #25d366 !important; color: #fff !important; font-weight: 700 !important;
  padding: 8px 18px !important; border-radius: 8px; font-size: 14px !important;
}
.nav-btn-ghost { padding: 8px 16px !important; border-radius: 8px; font-size: 14px; }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-drop-toggle {
  background: none; border: none; color: var(--muted); font-size: 14px; font-weight: 500;
  cursor: pointer; padding: 8px 14px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 5px; font-family: inherit; transition: all .2s;
}
.nav-drop-toggle:hover, .nav-dropdown:hover .nav-drop-toggle { color: var(--text); background: rgba(255,255,255,.06); }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-caret { font-size: 10px; transition: transform .2s; display: inline-block; }
.nav-dropdown:hover .nav-caret { transform: rotate(180deg); }
.nav-drop-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; min-width: 190px; padding: 6px; z-index: 200;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.nav-dropdown:hover .nav-drop-menu { display: block; }
.nav-sub-link {
  display: block; padding: 8px 12px; font-size: 13px; color: var(--muted);
  border-radius: 7px; transition: all .15s;
}
.nav-sub-link:hover { background: rgba(255,255,255,.05); color: var(--text); }

/* ── MEGA MENU ── */

/* ══════════════════════════════════════════════════════
   7. MEGA MENU — Senior UI/UX · Cinematic Drop Panel
   Posicionamento via JS (position:fixed) → funciona em
   qualquer estrutura de header customizado.
   ══════════════════════════════════════════════════════ */

.nav-dropdown.has-mega,
li.has-mega-cinema { position: static; list-style: none; margin: 0; padding: 0; display: inline-flex; align-items: center; }

/* Trigger — reset de <button> + visual idêntico ao link do header */
button.mega-trigger {
  background: none; border: none; outline: none;
  font: inherit; color: var(--muted); letter-spacing: inherit;
  padding: 8px 14px; margin: 0; border-radius: 8px;
  transition: all .2s;
}
button.mega-trigger:hover,
button.mega-trigger[aria-expanded="true"] { color: var(--text); background: rgba(255,255,255,.06); }
.mega-trigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; font-size: 14px; font-weight: 500; }
/* nav-caret removed — icon handled by ::before on .s-nav .mega-trigger */

/* ── Panel shell (JS sets position:fixed + top + left) ── */
.mega-panel {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 0;
  width: min(860px, 96vw);
  pointer-events: none;
  transform-origin: top center;
}

.mega-panel.mp-visible {
  display: block;
  pointer-events: auto;
  animation: mpIn .3s cubic-bezier(.22,1,.36,1) both;
}
.mega-panel.mp-hiding {
  display: block;
  pointer-events: none;
  animation: mpOut .2s ease forwards;
}

@keyframes mpIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mpOut {
  to   { opacity: 0; transform: translateY(-8px) scale(.985); }
}

/* ── Glass container ── */
.mega-inner {
  display: flex;
  background: rgba(8,10,30,.97);
  backdrop-filter: blur(40px) saturate(2);
  -webkit-backdrop-filter: blur(40px) saturate(2);
  border: 1px solid rgba(255,255,255,.08);
  border-top: none;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,.7),
    0 0 0 1px rgba(201,162,39,.06),
    inset 0 1px 0 rgba(255,255,255,.08);
  position: relative;
}

/* Gold bottom-line accent (panel is flush with header) */
.mega-inner::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px; z-index: 10;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,162,39,.15) 10%,
    rgba(201,162,39,.8) 35%,
    rgba(201,162,39,.8) 65%,
    rgba(201,162,39,.15) 90%,
    transparent 100%);
}

/* ── LEFT: Cinematic image preview ── */
.mega-preview {
  position: relative; flex: 0 0 290px;
  overflow: hidden;
  min-height: 380px;
}

.mega-preview-bg { position: absolute; inset: 0; }

.mega-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .55s cubic-bezier(.4,0,.2,1);
}
.mega-bg-front {
  animation: mpKenBurns 10s ease-in-out infinite alternate;
}
.mega-bg-back { opacity: 0; }

@keyframes mpKenBurns {
  from { transform: scale(1.04) translate(0,0); }
  to   { transform: scale(1.12) translate(-1%,-1%); }
}

/* Right-side vignette to blend into the list panel */
.mega-preview::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, transparent 55%, rgba(6,8,28,.96) 100%),
    linear-gradient(180deg, rgba(6,8,28,.1) 0%, rgba(6,8,28,.55) 55%, rgba(6,8,28,.99) 100%);
  pointer-events: none;
}

.mega-preview-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 20px; z-index: 3;
  display: flex; flex-direction: column; gap: 10px;
}

.mega-preview-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: .15em;
  color: var(--gold, #c9a227); text-transform: uppercase;
}
.mega-preview-tag::before {
  content: ''; width: 24px; height: 1px;
  background: currentColor; opacity: .55; flex-shrink: 0;
}

.mega-preview-title {
  font-size: 19px; font-weight: 800; color: #fff; line-height: 1.25;
  margin: 0; text-shadow: 0 2px 24px rgba(0,0,0,.6);
  transition: opacity .15s ease;
}

.mega-preview-cta {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  font-size: 12px; font-weight: 700; letter-spacing: .03em;
  color: var(--gold, #c9a227);
  padding: 8px 16px;
  border: 1px solid rgba(201,162,39,.3); border-radius: 40px;
  background: rgba(201,162,39,.08);
  transition: background .2s, border-color .2s, gap .2s;
}
.mega-preview-cta:hover {
  background: rgba(201,162,39,.2); border-color: rgba(201,162,39,.65);
  gap: 12px;
}
.mega-preview-cta svg { flex-shrink: 0; }

/* ── RIGHT: Items list ── */
.mega-list {
  flex: 1; display: flex; flex-direction: column;
  padding: 18px 10px 10px 4px; min-width: 0;
}

.mega-list-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: .15em;
  color: var(--gold, #c9a227); text-transform: uppercase; opacity: .6;
  padding: 0 12px 10px;
}
.mega-list-head::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(201,162,39,.15), transparent);
}

.mega-items {
  flex: 1; display: flex; flex-direction: column; gap: 2px;
  overflow-y: auto; max-height: 320px;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.07) transparent;
}

/* Stagger on open */
.mega-panel.mp-visible .mega-item {
  animation: mpItemIn .4s cubic-bezier(.22,1,.36,1) both;
}
.mega-panel.mp-visible .mega-item:nth-child(1){animation-delay:.05s}
.mega-panel.mp-visible .mega-item:nth-child(2){animation-delay:.09s}
.mega-panel.mp-visible .mega-item:nth-child(3){animation-delay:.13s}
.mega-panel.mp-visible .mega-item:nth-child(4){animation-delay:.17s}
.mega-panel.mp-visible .mega-item:nth-child(5){animation-delay:.21s}
.mega-panel.mp-visible .mega-item:nth-child(6){animation-delay:.25s}
.mega-panel.mp-visible .mega-item:nth-child(7){animation-delay:.29s}
.mega-panel.mp-visible .mega-item:nth-child(8){animation-delay:.33s}
.mega-panel.mp-visible .mega-item:nth-child(9){animation-delay:.37s}
.mega-panel.mp-visible .mega-item:nth-child(10){animation-delay:.41s}

@keyframes mpItemIn {
  from { opacity:0; transform: translateX(-10px); }
  to   { opacity:1; transform: translateX(0); }
}

.mega-item {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 14px; border-radius: 10px;
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: background .18s, transform .18s;
}

/* Shimmer sweep on hover */
.mega-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.04) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform .45s ease;
  pointer-events: none;
}
.mega-item:hover::after { transform: translateX(120%); }

.mega-item:hover { background: rgba(255,255,255,.05); transform: translateX(2px); }

.mega-item-active {
  background: linear-gradient(90deg, rgba(201,162,39,.1), rgba(201,162,39,.04)) !important;
  border-left: 2px solid rgba(201,162,39,.6);
  padding-left: 10px;
}
.mega-item-active .mega-item-label { color: var(--gold, #c9a227); font-weight: 600; }
.mega-item-active .mega-item-thumb { box-shadow: 0 0 0 2px rgba(201,162,39,.4); }

.mega-item-thumb {
  flex: 0 0 56px; height: 42px; border-radius: 8px; overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .2s, border-color .2s;
}
.mega-item:hover .mega-item-thumb { border-color: rgba(201,162,39,.2); }
.mega-item-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.mega-item:hover .mega-item-thumb img { transform: scale(1.1); }

.mega-item-label {
  flex: 1; font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,.7);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color .18s;
  letter-spacing: .01em;
}
.mega-item:hover .mega-item-label { color: #fff; }

.mega-item-arrow {
  flex: 0 0 auto; color: rgba(255,255,255,.2); opacity: 0;
  transition: opacity .18s, transform .18s;
}
.mega-item:hover .mega-item-arrow,
.mega-item-active .mega-item-arrow {
  opacity: 1; color: var(--gold, #c9a227); transform: translateX(3px);
}

/* See all footer */
.mega-see-all {
  display: flex; align-items: center; justify-content: space-between;
  margin: 8px 6px 4px; padding: 11px 14px;
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.06);
  border-radius: 8px; text-decoration: none;
  transition: color .2s, background .2s;
}
.mega-see-all:hover { color: var(--gold, #c9a227); background: rgba(201,162,39,.06); }
.mega-see-all svg { transition: transform .2s; }
.mega-see-all:hover svg { transform: translateX(4px); color: var(--gold, #c9a227); }

/* ── RESPONSIVE ── */

/* Tablet: oculta preview de imagem, exibe só a lista */
@media (max-width: 900px) {
  .mega-panel { width: min(400px, 94vw); }
  .mega-preview { display: none; }
  .mega-list { padding: 16px 8px 8px; }
  .mega-items { max-height: 340px; }
  .mega-item-thumb { flex: 0 0 44px; height: 34px; }
}

/* Mobile pequeno: painel full-width centrado */
@media (max-width: 520px) {
  .mega-panel { width: calc(100vw - 16px) !important; }
  .mega-inner { border-radius: 14px; }
  .mega-item { padding: 9px 10px; gap: 10px; }
  .mega-item-label { font-size: 13px; }
}

/* ── MOBILE DRAWER ── */
.mob-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.65); z-index: 200; backdrop-filter: blur(4px);
}
.mob-overlay.open { display: block; }
.mob-drawer {
  position: fixed; top: 0; right: -100%; width: min(300px, 88vw); height: 100vh;
  background: var(--surface); border-left: 1px solid var(--border);
  z-index: 201; transition: right .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.mob-drawer.open { right: 0; }
.mob-head {
  padding: 18px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.mob-close { background: none; border: none; color: var(--muted2); cursor: pointer; font-size: 22px; }
.mob-items { padding: 12px; flex: 1; overflow-y: auto; }
.mob-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 10px; font-size: 15px;
  color: var(--muted); transition: all .15s; margin-bottom: 2px;
}
.mob-link:hover, .mob-link.active { background: rgba(255,255,255,.05); color: var(--text); }
.mob-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border-radius: 10px; font-size: 15px; font-weight: 700;
  margin: 4px 0;
}
.mob-btn-primary { background: linear-gradient(135deg,var(--gold-dark),var(--gold)); color: #0B0B0C; }
.mob-btn-wa { background: #25d366; color: #fff; }
.mob-btn-outline { border: 1px solid var(--border); color: var(--text); }
.mob-sep { height: 1px; background: var(--border); margin: 8px 12px; }
.mob-sub { padding-left: 14px; }
.mob-sub .mob-link { font-size: 14px; padding: 9px 14px; }
.mob-parent .mob-sub { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.mob-parent.open .mob-sub { max-height:500px; }
.mob-parent-row { display:flex; align-items:center; }
.mob-parent-row .mob-link { flex:1; }
.mob-arrow { padding:12px; color:var(--muted2); transition:transform .3s; cursor:pointer; }
.mob-parent.open .mob-arrow { transform:rotate(180deg); }
.mob-sub-link { padding-left:32px !important; font-size:13px !important; opacity:.8; }
.mob-socials { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-nav { display: none !important; }
  .hamburger { display: block; }
  #lgpdBanner { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════════════════════════
   Motion System v3 — 8 estilos distintos de animação
   CSS vars: --mot-dur (duração), --mot-stag (stagger entre items)
   JS seta essas vars no :root de acordo com data-motion-speed
   ════════════════════════════════════════════════════════════ */
:root { --mot-dur:.65s; --mot-stag:110ms; }

/* ── ELEVATE: cada item sobe do chão um a um ── */
body[data-motion="elevate"] .site-main section:not(.no-motion) .mot-item {
  opacity: 0;
  transform: translateY(55px);
  transition: opacity var(--mot-dur,.65s) ease,
              transform var(--mot-dur,.65s) cubic-bezier(.22,.68,0,1.2);
  transition-delay: calc(var(--ii,0) * var(--mot-stag,110ms));
}
body[data-motion="elevate"] .site-main section.in-view .mot-item {
  opacity: 1; transform: translateY(0);
}

/* ── SLIDE: todos entram pela esquerda um a um ── */
body[data-motion="slide"] .site-main section:not(.no-motion) .mot-item {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity var(--mot-dur,.65s) ease,
              transform var(--mot-dur,.65s) cubic-bezier(.22,.68,0,1.1);
  transition-delay: calc(var(--ii,0) * var(--mot-stag,110ms));
}
body[data-motion="slide"] .site-main section.in-view .mot-item {
  opacity: 1; transform: translateX(0);
}

/* ── SCATTER: direções variadas — JS define --sx e --sy por item ── */
body[data-motion="scatter"] .site-main section:not(.no-motion) .mot-item {
  opacity: 0;
  transform: translate(var(--sx,0px), var(--sy,-45px));
  transition: opacity var(--mot-dur,.65s) ease,
              transform var(--mot-dur,.65s) cubic-bezier(.22,.68,0,1.1);
  transition-delay: calc(var(--ii,0) * var(--mot-stag,85ms));
}
body[data-motion="scatter"] .site-main section.in-view .mot-item {
  opacity: 1; transform: translate(0, 0);
}

/* ── CINEMATIC: seção inteira como cena de filme (zoom + blur) ── */
body[data-motion="cinematic"] .site-main section:not(.no-motion) {
  opacity: 0;
  transform: scale(.91) translateY(30px);
  filter: blur(9px);
  transition: opacity calc(var(--mot-dur,.65s) * 1.8) ease,
              transform calc(var(--mot-dur,.65s) * 1.8) cubic-bezier(.4,0,.2,1),
              filter calc(var(--mot-dur,.65s) * 1.5) ease;
}
body[data-motion="cinematic"] .site-main section.in-view {
  opacity: 1; transform: scale(1) translateY(0); filter: blur(0);
}

/* ── MAGNITUDE: mola elástica forte por item ── */
body[data-motion="magnitude"] .site-main section:not(.no-motion) .mot-item {
  opacity: 0;
  transform: translateY(78px) scale(.84);
  transition: opacity calc(var(--mot-dur,.65s) * .7) ease,
              transform calc(var(--mot-dur,.65s) * 1.45) cubic-bezier(.34,1.56,.64,1);
  transition-delay: calc(var(--ii,0) * calc(var(--mot-stag,110ms) * 1.18));
}
body[data-motion="magnitude"] .site-main section.in-view .mot-item {
  opacity: 1; transform: translateY(0) scale(1);
}

/* ── CASCADE: scroll-driven — JS aplica .mot-show item a item ── */
body[data-motion="cascade"] .site-main section:not(.no-motion) .mot-item {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity var(--mot-dur,.5s) ease,
              transform var(--mot-dur,.55s) cubic-bezier(.22,.68,0,1.1);
}
body[data-motion="cascade"] .site-main section:not(.no-motion) .mot-item.mot-show {
  opacity: 1; transform: translateY(0);
}

/* ── PARALLAX: profundidade real — JS move itens via transform no scroll ── */
body[data-motion="parallax"] .site-main section:not(.no-motion) .mot-item {
  will-change: transform;
}

/* ══════════════════════════════════════════════════════
   SCROLL REVEAL UTILITY — data-rv system
   Uso: adicionar data-rv ao elemento, data-rv-d="300" para delay em ms
   O observer global em base.php adiciona .rv-in quando visível.
   Sections podem sobrescrever a animação com seletores escopados:
     #minha-section [data-rv] { transform: translateX(-30px); }
   ══════════════════════════════════════════════════════ */
[data-rv] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--rv-d, 0ms);
}
[data-rv].rv-in {
  opacity: 1 !important;
  transform: none !important;
}

/* ══════════════════════════════════════════════════════
   GLASS CARD — utilitário reutilizável entre sections
   ══════════════════════════════════════════════════════ */
.glass-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg, 20px);
  backdrop-filter: blur(12px);
}

/* ══════════════════════════════════════════════════════
   ANTI-ANIMATION — Remove keyframe animations from headings
   (user preference: no entrance animations on titles)
   ══════════════════════════════════════════════════════ */

/* Hero / banner title animations removed */
.hw-kicker, .hw-title, h1.hw-title,
.hw-sub, .hw-actions, .hw-trust,
/* General section heading tokens */
.sec-h2, .sec-h3, .sec-eyebrow, .sec-lead, .sec-kicker,
/* Section title patterns used across all sections */
[class*="-title"]:is(h1,h2,h3,h4),
[class*="-heading"]:is(h1,h2,h3,h4),
[class*="-kicker"], [class*="-eyebrow"],
/* IntersectionObserver fade-up starters that never resolve */
.sec-fade-up:not(.is-visible),
.fade-up:not(.is-visible),
.anim-title:not(.is-visible) {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
  transition-delay: 0s !important;
}

/* Keep card/image hover transitions — only kill entrance keyframes */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
