/* =====================================================
   DESIGN SYSTEM — MBS (Box Bastidores de Sucesso)
   Larissa Araújo — Mentora de Negócios para Profissionais Criativos

   Fonte da verdade: ../box-bastidores-sucesso-0001.html

   FONTES (literal do briefing Figma):
   - Cormorant  (display, italic+bold gold) — TODOS os headings
   - DM Sans    (body, UI, eyebrows, badges, buttons UI)

   PALETA INSTITUCIONAL:
   - #03142D  page-outer  (mais escuro que navy)
   - #151E3D  navy        (primary CTA, sections dark)
   - #3D527B  navy-mid    (secondary CTA)
   - #F0F1F5  ivory       (light bg, text inverted)
   - #A27D50  gold        (acento da marca)

   USO:
   - Inclua antes de qualquer CSS de componente.
   - Tema por seção: <section data-theme="dark"> ou data-theme="light"
   - Para página inteiramente dark: <body data-theme="dark">

   ÍNDICE:
   1.  Primitivos
   2.  Tokens semânticos — Light
   3.  Tokens semânticos — Dark
   4.  Gradientes
   5.  Focus rings
   6.  Tokens de componentes especiais
   7.  Tipografia
   8.  Espaçamento + Section spacing + Container
   9.  Forms (heights, padding, tokens)
   10. Border radius
   11. Animações (durações, easings, transitions)
   12. Z-index
   13. Iconografia (tokens + helpers)
   14. Reset mínimo + container
   15. Tipografia base (.ds-title, .ds-eyebrow, .italic-gold)
   16. Layout helpers (.ds-card, .ds-grid, .stack-stretch)
   17. Componentes — Buttons (.btn)
   18. Componentes — Pills, Badges, Alerts
   19. Componentes — Inputs, Select, Textarea, Checkbox/Radio/Switch
   20. Componentes — FAQ accordion
   21. Componentes — Marquee divisor
   22. Componentes — Browser mockup
   23. Componentes — Lista bullets (gold/red/neutral)
   24. Componentes — Tooltip, Avatar, Toast, Modal
   25. Componentes — Navbar + Footer do showcase
   26. Utilitários de espaçamento (~150 classes)
   27. Keyframes
   28. Animações de entrada (scroll-triggered)
   29. Micro-interações + Hero sequence
   30. Skeleton / shimmer
   31. prefers-reduced-motion (cirúrgico)
   ===================================================== */


/* =====================================================
   1. PRIMITIVOS — NÃO usar diretamente nos componentes
   ===================================================== */
:root {
  /* Navy */
  --navy-950: #0D1530;
  --navy-900: #151E3D;
  --navy-800: #1F294A;
  --navy-700: #2A3760;
  --navy-600: #3D527B;
  --navy-500: #4E6593;

  /* Gold */
  --gold-900: #5C4630;
  --gold-800: #7A5C3C;
  --gold-700: #8A6A44;
  --gold-600: #A27D50;
  --gold-500: #B89060;
  --gold-400: #C5A880;
  --gold-300: #D5B890;
  --gold-200: #E8D4B8;
  --gold-100: #F5ECD8;

  /* Neutrals frios (auxiliares — não usar direto em componentes) */
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Semânticas fixas */
  --green-400:  #4ade80;
  --green-500:  #4CAF50;
  --green-600:  #16a34a;
  --green-700:  #15803d;
  --yellow-400: #fbbf24;
  --amber-600:  #d97706;
  --amber-700:  #b45309;
  --red-400:    #f87171;
  --red-500:    #D9534F;
  --red-600:    #dc2626;
  --blue-400:   #60a5fa;
  --blue-600:   #2563eb;
}

/* =====================================================
   2. TOKENS SEMÂNTICOS — LIGHT (ivory/navy/gold)
   ===================================================== */
:root,
[data-theme="light"] {
  color-scheme: light;

  /* Superfícies */
  --bg-base:            #F0F1F5;
  --bg-surface:         #FFFFFF;
  --bg-surface-raised:  #E8E9ED;
  --bg-surface-overlay: #DCDDE1;
  --bg-hover:           rgba(21,30,61,0.04);
  --bg-active:          rgba(162,125,80,0.08);
  --bg-input:           #FFFFFF;
  --bg-disabled:        rgba(21,30,61,0.04);

  /* Texto — WCAG AA validado sobre --bg-base #F0F1F5:
     primary    #151E3D → 14.6:1
     secondary  #535353 → 7.4:1
     muted      #666666 → 5.7:1
     accent     #A27D50 → 4.2:1  (uso apenas para texto ≥18pt/14pt-bold; OK para large text 3:1) */
  --text-primary:       #151E3D;
  --text-secondary:     #535353;
  --text-muted:         #666666;
  --text-disabled:      rgba(21,30,61,0.28);
  --text-inverted:      #F0F1F5;
  --text-accent:        #A27D50;
  --text-accent-hover:  #8A6A44;

  /* Bordas */
  --border-default:     rgba(21,30,61,0.12);
  --border-subtle:      rgba(21,30,61,0.07);
  --border-strong:      rgba(21,30,61,0.22);
  --border-focus:       #A27D50;
  --border-accent:      rgba(162,125,80,0.30);
  --border-error:       rgba(217,83,79,0.45);
  --border-success:     rgba(76,175,80,0.35);

  /* Acento (gold) */
  --accent-base:         #A27D50;
  --accent-hover:        #8A6A44;
  --accent-muted:        rgba(162,125,80,0.10);
  --accent-text:         #F0F1F5;   /* sobre --accent-base #A27D50 → 5.1:1 AA */
  --accent-shadow:       0 6px 20px rgba(162,125,80,0.28);
  --accent-shadow-hover: 0 10px 32px rgba(162,125,80,0.42);

  /* Primary CTA (navy) — F0F1F5 sobre #151E3D → 14.6:1 AAA */
  --primary-base:  #151E3D;
  --primary-hover: #0D142A;
  --primary-text:  #F0F1F5;

  /* Secondary CTA (mid-navy) — F0F1F5 sobre #3D527B → 7.6:1 AAA */
  --secondary-base:  #3D527B;
  --secondary-hover: #324166;
  --secondary-text:  #F0F1F5;

  /* Estados semânticos */
  --success-bg:     rgba(76,175,80,0.08);
  --success-border: rgba(76,175,80,0.28);
  --success-text:   #2e7d32;
  --warning-bg:     rgba(217,119,6,0.08);
  --warning-border: rgba(217,119,6,0.28);
  --warning-text:   #b45309;
  --danger-bg:      rgba(217,83,79,0.08);
  --danger-border:  rgba(217,83,79,0.28);
  --danger-text:    #c0392b;
  --info-bg:        rgba(37,99,235,0.08);
  --info-border:    rgba(37,99,235,0.28);
  --info-text:      #2563eb;

  /* Shadows (single-layer) */
  --shadow-sm:   0 1px 4px rgba(21,30,61,0.06);
  --shadow-md:   0 4px 16px rgba(21,30,61,0.08);
  --shadow-lg:   0 8px 32px rgba(21,30,61,0.10);
  --shadow-card: 0 2px 12px rgba(21,30,61,0.07), 0 0 0 1px rgba(21,30,61,0.05);
  --shadow-cta:  var(--accent-shadow);

  /* Navbar */
  --navbar-bg: rgba(240,241,245,0.92);

  /* Gradientes */
  --gradient-brand:   linear-gradient(135deg, #C5A880 0%, #A27D50 100%);
  --gradient-overlay: linear-gradient(to bottom, transparent 0%, var(--bg-base) 100%);
}

/* =====================================================
   3. TOKENS SEMÂNTICOS — DARK (navy/gold)
   ===================================================== */
[data-theme="dark"] {
  color-scheme: dark;

  /* Superfícies */
  --bg-base:            #151E3D;
  --bg-surface:         #1F294A;
  --bg-surface-raised:  #2A3760;
  --bg-surface-overlay: #3D527B;
  --bg-hover:           rgba(240,241,245,0.05);
  --bg-active:          rgba(162,125,80,0.12);
  --bg-input:           #1F294A;
  --bg-disabled:        rgba(240,241,245,0.04);

  /* Texto — WCAG AA validado sobre --bg-base #151E3D:
     primary    #F0F1F5             → 14.6:1
     secondary  rgba(F0F1F5/0.80)   → efetivo ~#C2C3CB → 9.6:1  (mantém leitura confortável)
     muted      rgba(F0F1F5/0.62)   → efetivo ~#929498 → 5.4:1  (bump de 0.55→0.62 para folga AA)
     accent     #C5A880             → 7.5:1 */
  --text-primary:       #F0F1F5;
  --text-secondary:     rgba(240,241,245,0.80);
  --text-muted:         rgba(240,241,245,0.62);
  --text-disabled:      rgba(240,241,245,0.32);
  --text-inverted:      #151E3D;
  --text-accent:        #C5A880;
  --text-accent-hover:  #D5B890;

  /* Bordas */
  --border-default:     rgba(240,241,245,0.16);
  --border-subtle:      rgba(240,241,245,0.08);
  --border-strong:      rgba(240,241,245,0.28);
  --border-focus:       #C5A880;
  --border-accent:      rgba(197,168,128,0.35);
  --border-error:       rgba(248,113,113,0.45);
  --border-success:     rgba(74,222,128,0.32);

  /* Acento (gold) */
  --accent-base:         #A27D50;
  --accent-hover:        #B89060;
  --accent-muted:        rgba(162,125,80,0.20);
  --accent-text:         #F0F1F5;
  --accent-shadow:       0 6px 20px rgba(162,125,80,0.35);
  --accent-shadow-hover: 0 10px 32px rgba(162,125,80,0.50);

  /* Primary / Secondary CTA — hex institucionais inalterados */
  --primary-base:    #151E3D;
  --primary-hover:   #0D142A;
  --primary-text:    #F0F1F5;
  --secondary-base:  #3D527B;
  --secondary-hover: #324166;
  --secondary-text:  #F0F1F5;

  /* Estados */
  --success-bg:     rgba(76,175,80,0.10);
  --success-border: rgba(76,175,80,0.32);
  --success-text:   #4ade80;
  --warning-bg:     rgba(251,191,36,0.10);
  --warning-border: rgba(251,191,36,0.32);
  --warning-text:   #fbbf24;
  --danger-bg:      rgba(217,83,79,0.12);
  --danger-border:  rgba(248,113,113,0.40);
  --danger-text:    #f87171;
  --info-bg:        rgba(96,165,250,0.10);
  --info-border:    rgba(96,165,250,0.32);
  --info-text:      #60a5fa;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.30);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.40);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.50);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.32), 0 0 0 1px rgba(240,241,245,0.06);
  --shadow-cta:  var(--accent-shadow);

  /* Navbar */
  --navbar-bg: rgba(3,20,45,0.88);

  /* Gradientes */
  --gradient-brand:   linear-gradient(135deg, #C5A880 0%, #A27D50 100%);
  --gradient-overlay: linear-gradient(to bottom, transparent 0%, var(--bg-base) 100%);
}

/* =====================================================
   4. GRADIENTES EXPANDIDOS
   ===================================================== */
:root {
  --gradient-hero:           radial-gradient(ellipse 80% 60% at 50% -10%, rgba(162,125,80,0.12) 0%, transparent 70%);
  --gradient-text:           linear-gradient(135deg, #C5A880 0%, #A27D50 100%);
  --gradient-card-highlight: linear-gradient(135deg, rgba(162,125,80,0.08) 0%, rgba(162,125,80,0.02) 100%);
  --gradient-divider:        linear-gradient(to right, transparent, var(--border-default), transparent);
  --gradient-overlay-top:    linear-gradient(to bottom, var(--bg-base) 0%, transparent 100%);
  --gradient-overlay-bottom: linear-gradient(to top, var(--bg-base) 0%, transparent 100%);
}

/* =====================================================
   5. FOCUS / OUTLINE
   ===================================================== */
:root {
  --focus-ring:         0 0 0 2px var(--bg-base), 0 0 0 4px var(--border-default);
  --focus-ring-accent:  0 0 0 2px var(--bg-base), 0 0 0 4px var(--accent-base);
  --focus-ring-error:   0 0 0 2px var(--bg-base), 0 0 0 4px var(--border-error);
  --focus-shadow-input: 0 0 0 3px var(--accent-muted);
}

/* =====================================================
   6. TOKENS DE COMPONENTES ESPECIAIS
   ===================================================== */
:root {
  --announcement-bg:     var(--accent-base);
  --announcement-text:   #FFFFFF;
  --announcement-height: 44px;

  --sticky-cta-bg:         var(--bg-surface);
  --sticky-cta-border-top: 1px solid var(--border-default);
  --sticky-cta-height:     72px;

  --step-size:        36px;
  --step-size-sm:     28px;
  --step-connector-h: 2px;

  --play-btn-size:   72px;
  --play-btn-bg:     rgba(255,255,255,0.95);
  --play-btn-icon:   var(--accent-base);
  --play-btn-shadow: 0 8px 32px rgba(0,0,0,0.25);

  --toast-max-width: 360px;
  --toast-padding:   16px;
  --toast-radius:    16px;

  --modal-backdrop-bg: rgba(3,20,45,0.60);
  --modal-radius:      20px;
  --modal-max-width:   480px;

  --tooltip-bg:     var(--navy-900);
  --tooltip-text:   #F0F1F5;
  --tooltip-radius: 6px;

  --avatar-sm: 32px;
  --avatar-md: 40px;
  --avatar-lg: 56px;
  --avatar-xl: 80px;
}

/* =====================================================
   7. TIPOGRAFIA
   ===================================================== */
:root {
  --font-heading: 'Cormorant', 'Georgia', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  /* Display — clamp(mobile, fluid, desktop) */
  --text-display-xl: clamp(3rem,    10vw,  6.5rem);
  --text-display-lg: clamp(2.4rem,  6vw,   4rem);
  --text-display-md: clamp(2rem,    5vw,   3.25rem);
  --text-display-sm: clamp(1.6rem,  4vw,   2.2rem);

  /* Conteúdo */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;

  /* Line-heights */
  --leading-tight:   1;
  --leading-display: 1.05; /* headlines display — segunda linha próxima à anterior */
  --leading-snug:    1.15;
  --leading-normal:  1.5;
  --leading-relaxed: 1.65;
  --leading-loose:   1.8;

  /* Letter-spacing */
  --tracking-display: -0.03em;
  --tracking-tight:   -0.02em;
  --tracking-cta:     0.01em;
  --tracking-normal:  0;
  --tracking-wide:    0.06em;
  --tracking-widest:  0.12em;

  /* Pesos */
  --w-light:     300;
  --w-normal:    400;
  --w-medium:    500;
  --w-semibold:  600;
  --w-bold:      700;
  --w-extrabold: 800;
}

/* =====================================================
   8. ESPAÇAMENTO + Section + Container
   ===================================================== */
:root {
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  --section-xs: clamp(2rem,  5vw,  3rem);
  --section-sm: clamp(3rem,  6vw,  4.5rem);
  --section-md: clamp(4rem,  7vw,  5.5rem);
  --section-lg: clamp(5rem,  10vw, 8rem);
  --section-xl: clamp(6rem,  12vw, 10rem);

  --container-max:     1300px;
  --container-padding: clamp(1.25rem, 5vw, 2.5rem);

  --page-outer: #03142D;
}

/* =====================================================
   9. FORMS — tokens (heights, padding, transitions)
   ===================================================== */
:root {
  --tap-target:               44px;
  --form-field-height:        48px;
  --form-field-height-sm:     36px;
  --form-field-height-lg:     56px;
  --form-field-padding-x:     14px;
  --form-field-padding-y:     12px;
  --form-field-padding:       12px 14px;
  --form-field-radius:        8px;
  --form-field-bg:            var(--bg-input);
  --form-field-border:        var(--border-default);
  --form-field-border-hover:  var(--border-strong);
  --form-field-border-focus:  var(--border-focus);
  --form-field-focus-ring:    var(--focus-shadow-input);
  --form-field-bg-disabled:   var(--bg-disabled);
  --form-label-color:         var(--text-primary);
  --form-helper-color:        var(--text-muted);
  --form-error-color:         var(--danger-text);
  --form-success-color:       var(--success-text);
  --form-required-color:      var(--accent-base);

  /* Card padding (referência) */
  --card-padding-sm: var(--space-4);
  --card-padding:    var(--space-6);
  --card-padding-lg: var(--space-8);
}

/* =====================================================
   10. RAIOS DE BORDA
   ===================================================== */
:root {
  --radius-sm:   6px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;   /* botões e CTAs */
  --radius-2xl:  20px;
  --radius-3xl:  24px;   /* cards "recebe" */
  --radius-full: 9999px;
}

/* =====================================================
   11. ANIMAÇÕES — Tokens
   ===================================================== */
:root {
  --duration-xfast:  75ms;
  --duration-fast:   150ms;
  --duration-base:   250ms;
  --duration-slow:   400ms;
  --duration-slower: 600ms;
  --duration-hero:   800ms;

  --delay-1: 100ms;
  --delay-2: 200ms;
  --delay-3: 300ms;
  --delay-4: 400ms;
  --delay-5: 500ms;
  --delay-6: 600ms;

  --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --ease-in:      cubic-bezier(0.4, 0, 1, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-spring:  cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-sharp:   cubic-bezier(0.4, 0, 0.6, 1);

  --transition-colors:    background-color var(--duration-fast) var(--ease-default),
                          color var(--duration-fast) var(--ease-default),
                          border-color var(--duration-fast) var(--ease-default);
  --transition-transform: transform var(--duration-base) var(--ease-out),
                          box-shadow var(--duration-base) var(--ease-out);
  --transition-opacity:   opacity var(--duration-base) var(--ease-out);
  --transition-all:       all var(--duration-base) var(--ease-default);
  --transition-shadow:    box-shadow var(--duration-base) var(--ease-out);

  /* Component-specific */
  --transition-form:   border-color var(--duration-fast) var(--ease-default),
                       box-shadow var(--duration-fast) var(--ease-default),
                       background-color var(--duration-fast) var(--ease-default);
  --transition-button: opacity var(--duration-fast) var(--ease-default),
                       transform var(--duration-fast) var(--ease-default),
                       box-shadow var(--duration-fast) var(--ease-default);
  --transition-card:   transform var(--duration-base) var(--ease-out),
                       box-shadow var(--duration-base) var(--ease-out),
                       border-color var(--duration-base) var(--ease-out);
}

/* =====================================================
   12. Z-INDEX
   ===================================================== */
:root {
  --z-base:     0;
  --z-raised:   10;
  --z-navbar:   50;
  --z-dropdown: 100;
  --z-overlay:  200;
  --z-modal:    300;
  --z-toast:    400;
  --z-tooltip:  500;
}

/* =====================================================
   13. ICONOGRAFIA
   ===================================================== */
:root {
  --icon-xs:  12px;
  --icon-sm:  16px;
  --icon-md:  20px;
  --icon-lg:  24px;
  --icon-xl:  32px;
  --icon-2xl: 48px;
}

.icon-inline {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon-inline > svg,
[data-lucide] { stroke-width: 1.75; }
.icon-xs  > svg, .icon-xs[data-lucide],  svg.icon-xs  { width: var(--icon-xs);  height: var(--icon-xs); }
.icon-sm  > svg, .icon-sm[data-lucide],  svg.icon-sm  { width: var(--icon-sm);  height: var(--icon-sm); }
.icon-md  > svg, .icon-md[data-lucide],  svg.icon-md  { width: var(--icon-md);  height: var(--icon-md); }
.icon-lg  > svg, .icon-lg[data-lucide],  svg.icon-lg  { width: var(--icon-lg);  height: var(--icon-lg); }
.icon-xl  > svg, .icon-xl[data-lucide],  svg.icon-xl  { width: var(--icon-xl);  height: var(--icon-xl); }
.icon-2xl > svg, .icon-2xl[data-lucide], svg.icon-2xl { width: var(--icon-2xl); height: var(--icon-2xl); }

.icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--accent-muted);
  color: var(--text-accent);
  border: 1px solid var(--border-accent);
  flex-shrink: 0;
}
.icon-container--sm { width: 36px; height: 36px; border-radius: var(--radius-md); }
.icon-container--lg { width: 64px; height: 64px; border-radius: var(--radius-xl); }

/* =====================================================
   14. RESET MÍNIMO + CONTAINER
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; }

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  letter-spacing: var(--tracking-tight);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

[data-theme] {
  background-color: var(--bg-base);
  color: var(--text-primary);
}
body[data-theme="dark"] { background: var(--page-outer); }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* =====================================================
   15. TIPOGRAFIA BASE (.ds-title, .ds-eyebrow, .italic-gold)
   TODOS os headings (h1–h6) usam Cormorant.
   ===================================================== */
h1, h2, h3, h4, h5, h6,
.ds-title {
  font-family: var(--font-heading);
  font-weight: var(--w-normal);
  letter-spacing: var(--tracking-display);
  line-height: 1.05;
  color: var(--text-primary);
}
.ds-title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.ds-title .accent { font-style: italic; font-weight: var(--w-bold); color: var(--text-accent); }

.ds-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  font-weight: var(--w-medium);
}

.italic-gold {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: var(--w-bold);
  color: var(--text-accent);
}

/* =====================================================
   16. LAYOUT HELPERS (.ds-card, .ds-grid, .stack-stretch)
   ===================================================== */
.ds-section {
  padding: var(--section-md) 0;
  scroll-margin-top: 80px;
}

.ds-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  transition: var(--transition-card);
}
.ds-card + .ds-card { margin-top: var(--space-8); }

/* Card flex stretch — usado quando o card vive em grid e precisa preencher a altura */
.ds-card--stretch,
.stack-stretch > .ds-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.stack-stretch > * { height: 100%; }
.flex-col { display: flex; flex-direction: column; }

.ds-grid { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
@media (min-width: 480px) {
  .ds-grid--2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .ds-grid--3    { grid-template-columns: repeat(3, 1fr); }
  .ds-grid--4    { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .ds-grid--lg-4 { grid-template-columns: repeat(4, 1fr); }
}
.ds-stack > * + * { margin-top: var(--space-8); }

/* Garantia automática para os principais grids: filhos esticam */
.ds-grid > .ds-card { display: flex; flex-direction: column; height: 100%; }
.ds-grid > .ds-card > .mt-auto { margin-top: auto; }

/* =====================================================
   17. COMPONENTES — BUTTONS (.btn)
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: var(--w-normal);
  font-size: 1.25rem;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: var(--tracking-cta);
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  padding: 1.125rem 1.75rem;
  min-height: var(--tap-target);
  transition: var(--transition-button);
  user-select: none;
}
.btn:disabled,
.btn[aria-disabled="true"] { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.btn:focus-visible { outline: 2px solid var(--border-focus); outline-offset: 3px; }

.btn--primary {
  background: var(--primary-base);
  color: var(--primary-text);
  border-color: var(--primary-base);
}
.btn--primary:hover { opacity: 0.92; transform: translateY(-1px); }

.btn--secondary {
  background: var(--secondary-base);
  color: var(--secondary-text);
  border-color: var(--secondary-base);
}
.btn--secondary:hover { opacity: 0.92; transform: translateY(-1px); }

.btn--accent {
  background: var(--accent-base);
  color: var(--accent-text);
  border-color: var(--accent-base);
  box-shadow: var(--accent-shadow);
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: var(--accent-shadow-hover); }

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-default);
}
.btn--ghost:hover { background: var(--bg-hover); border-color: var(--border-strong); }

.btn--danger {
  background: transparent;
  color: var(--danger-text);
  border: 1px solid var(--border-error);
}
.btn--danger:hover { background: var(--danger-bg); }

.btn--sm { font-size: 1rem; padding: 0.75rem 1.25rem; border-radius: var(--radius-lg); min-height: 40px; }
.btn--lg { font-size: 1.4rem; padding: 1.25rem 2rem; }
.btn--block { width: 100%; }

/* WhatsApp CTA — DM Sans 0.85rem, verde institucional */
.btn--whatsapp {
  font-family: var(--font-body);
  font-weight: var(--w-semibold);
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  color: #ffffff;
  background: #25d366;
  border-color: #25d366;
  border-radius: 0.625rem;
  padding: 0.625rem 1.25rem;
}
.btn--whatsapp:hover { opacity: 0.9; }

/* Icon-only button */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tap-target);
  height: var(--tap-target);
  border-radius: var(--radius-md);
  background: transparent;
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
  transition: var(--transition-button);
}
.btn-icon:hover { background: var(--bg-hover); color: var(--text-primary); }

/* Loading state */
.btn[aria-busy="true"] .btn-spinner {
  width: 16px; height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

/* =====================================================
   18. COMPONENTES — PILLS, BADGES, ALERTS
   ===================================================== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: var(--w-medium);
  letter-spacing: 0;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-default);
  color: var(--text-primary);
  background: transparent;
  white-space: nowrap;
}
.pill--ghost {
  /* Adapta automaticamente a light e dark via tokens. */
  border-color: var(--border-default);
  color: var(--text-secondary);
  background: transparent;
}
.pill--filled {
  background: var(--accent-base);
  border-color: var(--accent-base);
  color: var(--accent-text);
}
.pill--gold-soft {
  background: var(--accent-muted);
  border-color: var(--border-accent);
  color: var(--text-primary);
}
.pill--gold-soft::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-base);
  flex-shrink: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: var(--w-medium);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid;
  line-height: 1.4;
}
.badge--default { background: var(--bg-surface-raised); border-color: var(--border-default); color: var(--text-secondary); }
.badge--accent  { background: var(--accent-muted);      border-color: var(--border-accent);  color: var(--text-accent); }
.badge--success { background: var(--success-bg);        border-color: var(--success-border); color: var(--success-text); }
.badge--warning { background: var(--warning-bg);        border-color: var(--warning-border); color: var(--warning-text); }
.badge--danger  { background: var(--danger-bg);         border-color: var(--danger-border);  color: var(--danger-text); }
.badge--info    { background: var(--info-bg);           border-color: var(--info-border);    color: var(--info-text); }

/* Alerts (bloco com border-left) */
.alert {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid;
  border-left-width: 3px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}
.alert__title { font-weight: var(--w-semibold); margin-bottom: 2px; }
.alert--success { background: var(--success-bg); border-color: var(--success-border); color: var(--success-text); }
.alert--warning { background: var(--warning-bg); border-color: var(--warning-border); color: var(--warning-text); }
.alert--danger  { background: var(--danger-bg);  border-color: var(--danger-border);  color: var(--danger-text); }
.alert--info    { background: var(--info-bg);    border-color: var(--info-border);    color: var(--info-text); }

/* =====================================================
   19. COMPONENTES — FORM FIELDS
   ===================================================== */
.field { display: flex; flex-direction: column; }
.field + .field { margin-top: var(--space-5); }

.field-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--w-medium);
  color: var(--form-label-color);
  margin-bottom: var(--space-2);
}
.field-label .req { color: var(--form-required-color); margin-left: 2px; }

.input, .select, .textarea {
  width: 100%;
  background: var(--form-field-bg);
  border: 1px solid var(--form-field-border);
  border-radius: var(--form-field-radius);
  padding: var(--form-field-padding);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  min-height: var(--form-field-height);
  outline: none;
  transition: var(--transition-form);
}
.input::placeholder, .textarea::placeholder { color: var(--text-muted); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--form-field-border-hover); }
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--form-field-border-focus);
  box-shadow: var(--form-field-focus-ring);
}
.input--sm, .select--sm { min-height: var(--form-field-height-sm); padding: 6px 10px; font-size: var(--text-sm); }
.input--lg { min-height: var(--form-field-height-lg); }

.input--error   { border-color: var(--border-error);   box-shadow: 0 0 0 3px var(--danger-bg); }
.input--success { border-color: var(--border-success); }
.input--warning { border-color: var(--border-accent); }
.input:disabled, .select:disabled, .textarea:disabled {
  background: var(--form-field-bg-disabled);
  opacity: 0.55;
  cursor: not-allowed;
}
.input[readonly] { background: var(--bg-base); cursor: default; }
.textarea { min-height: 96px; resize: vertical; line-height: 1.55; }

.field-hint, .field-error, .field-success {
  font-size: var(--text-xs);
  margin-top: var(--space-2);
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.5;
}
.field-hint    { color: var(--form-helper-color); }
.field-error   { color: var(--form-error-color); }
.field-success { color: var(--form-success-color); }

/* Input wrap (com ícone) */
.input-wrap { position: relative; }
.input-wrap__icon {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}
.input-wrap__icon--left  { left: 14px; }
.input-wrap__icon--right { right: 14px; }
.input-wrap--has-left  .input { padding-left: 42px; }
.input-wrap--has-right .input { padding-right: 42px; }

/* Affix prefix/suffix */
.input-affix {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--form-field-border);
  border-radius: var(--form-field-radius);
  background: var(--form-field-bg);
  overflow: hidden;
  transition: var(--transition-form);
}
.input-affix:focus-within { border-color: var(--form-field-border-focus); box-shadow: var(--form-field-focus-ring); }
.input-affix__addon {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: var(--bg-surface-raised);
  color: var(--text-muted);
  font-size: var(--text-sm);
  border-right: 1px solid var(--border-subtle);
}
.input-affix__addon--suffix { border-right: none; border-left: 1px solid var(--border-subtle); }
.input-affix > .input { border: none; box-shadow: none !important; min-height: var(--form-field-height); }
.input-affix > .input:focus { box-shadow: none; }

/* Custom select (com seta SVG via background) */
.select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
  color: var(--text-primary);
}

/* Checkbox / Radio */
.check, .radio {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  user-select: none;
}
.check input, .radio input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--form-field-bg);
  border: 1.5px solid var(--border-strong);
  transition: var(--transition-form);
  display: inline-grid;
  place-items: center;
}
.check input { border-radius: 4px; }
.radio input { border-radius: 50%; }
.check input:checked, .radio input:checked {
  background: var(--accent-base);
  border-color: var(--accent-base);
}
.check input:checked::after {
  content: '';
  width: 10px; height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F0F1F5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}
.radio input:checked::after {
  content: '';
  width: 8px; height: 8px;
  background: #F0F1F5;
  border-radius: 50%;
}
.check input:focus-visible, .radio input:focus-visible { box-shadow: var(--focus-shadow-input); }

/* Switch toggle */
.switch {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  user-select: none;
}
.switch input { display: none; }
.switch__track {
  width: 38px; height: 22px;
  background: var(--bg-surface-overlay);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  position: relative;
  transition: var(--transition-colors);
  flex-shrink: 0;
}
.switch__track::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  transition: transform var(--duration-fast) var(--ease-default);
}
.switch input:checked + .switch__track { background: var(--accent-base); border-color: var(--accent-base); }
.switch input:checked + .switch__track::after { transform: translateX(16px); }

/* File upload (drag-drop area) */
.file-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-2);
  padding: var(--space-8);
  background: var(--bg-surface);
  border: 2px dashed var(--border-default);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: var(--transition-form);
}
.file-drop:hover,
.file-drop.is-dragover {
  border-color: var(--accent-base);
  background: var(--accent-muted);
  color: var(--text-primary);
}
.file-drop input[type="file"] { display: none; }
.file-drop strong { color: var(--text-primary); font-weight: var(--w-semibold); }

/* Fieldset */
.fieldset {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.fieldset legend {
  padding: 0 var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--w-medium);
  color: var(--text-primary);
}

/* =====================================================
   20. COMPONENTES — FAQ ACCORDION
   ===================================================== */
details.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
details.faq-item + details.faq-item { margin-top: var(--space-3); }
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.125rem 1.375rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: var(--w-medium);
  color: var(--text-primary);
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--duration-fast);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item[open] summary {
  background: var(--primary-base);
  color: var(--primary-text);
}
.faq-item__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  stroke: currentColor; stroke-width: 1.5; fill: none;
  transition: transform var(--duration-base) var(--ease-default);
}
details.faq-item[open] .faq-item__icon { transform: rotate(45deg); }
details.faq-item .faq-item__answer {
  padding: var(--space-4) 1.375rem var(--space-5);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =====================================================
   21. COMPONENTES — MARQUEE DIVISOR
   ===================================================== */
.divisor {
  background: var(--primary-base);
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-block: 1px solid rgba(240,241,245,0.06);
}
.divisor__track {
  display: flex;
  align-items: center;
  animation: marquee-scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.divisor__item {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding-right: 2rem;
}
.divisor__box {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  color: #F0F1F5;
  letter-spacing: var(--tracking-display);
}
.divisor__bastidores {
  font-family: var(--font-body);
  font-size: 0.45rem;
  font-weight: 300;
  color: #F0F1F5;
  letter-spacing: var(--tracking-display);
  margin-left: 2px;
}
.divisor__sucesso {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: #F0F1F5;
  letter-spacing: var(--tracking-display);
}
.divisor__author {
  font-family: var(--font-heading);
  font-size: 0.4rem;
  font-style: italic;
  color: rgba(240,241,245,0.5);
  margin-left: 4px;
}
.divisor__sep {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(162,125,80,0.5);
  margin-right: 2rem;
  flex-shrink: 0;
}

/* =====================================================
   22. COMPONENTES — BROWSER MOCKUP (macOS)
   ===================================================== */
.browser-mockup {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  margin-inline: auto;
}
.browser-mockup__bar {
  background: #f0f0f0;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.browser-dot--red    { background: #ff5f57; }
.browser-dot--yellow { background: #febc2e; }
.browser-dot--green  { background: #28c840; }
.browser-mockup__url {
  flex: 1;
  background: #e8e8e8;
  border-radius: 4px;
  padding: 3px 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: #666;
  text-align: center;
  margin-inline: 0.5rem;
}
.browser-mockup__body {
  background: var(--primary-base);
  padding: clamp(1.75rem, 5vw, 3rem);
  color: #F0F1F5;
}
.mockup-cols {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .mockup-cols { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

/* =====================================================
   23. COMPONENTES — LISTAS COM BULLETS
   ===================================================== */
.ulist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.ulist__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.bullet {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.bullet--gold { background: var(--accent-base); }
.bullet--red  { background: #c0392b; }
.bullet--neutral {
  background: var(--bg-surface-raised);
  border: 1px solid var(--border-default);
  color: var(--text-muted);
}

/* =====================================================
   24. COMPONENTES — TOOLTIP, AVATAR, TOAST, MODAL,
       DROPDOWN, TABS, PROGRESS, SPINNER, BREADCRUMB,
       PAGINATION, STAT CARD
   ===================================================== */

/* Tooltip CSS-only via data-tooltip */
[data-tooltip] { position: relative; }
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--tooltip-bg);
  color: var(--tooltip-text);
  padding: 6px 10px;
  border-radius: var(--tooltip-radius);
  font-size: 0.72rem;
  font-family: var(--font-body);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-fast) var(--ease-default),
              transform var(--duration-fast) var(--ease-default);
  z-index: var(--z-tooltip);
}
[data-tooltip]:hover::after,
[data-tooltip]:focus-visible::after { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Avatar */
.avatar {
  display: inline-block;
  width: var(--avatar-md);
  height: var(--avatar-md);
  border-radius: var(--radius-full);
  background: var(--accent-muted);
  color: var(--text-accent);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  text-align: center;
  line-height: var(--avatar-md);
  position: relative;
  flex-shrink: 0;
  border: 1px solid var(--border-accent);
}
.avatar--sm { width: var(--avatar-sm); height: var(--avatar-sm); line-height: var(--avatar-sm); font-size: 0.85rem; }
.avatar--lg { width: var(--avatar-lg); height: var(--avatar-lg); line-height: var(--avatar-lg); font-size: 1.3rem; }
.avatar--xl { width: var(--avatar-xl); height: var(--avatar-xl); line-height: var(--avatar-xl); font-size: 1.8rem; }
.avatar__status {
  position: absolute;
  bottom: 0; right: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--success-text);
  border: 2px solid var(--bg-surface);
}
.avatar__status--away    { background: var(--warning-text); }
.avatar__status--offline { background: var(--text-muted); }

/* Toast */
.toast {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-left-width: 3px;
  border-radius: var(--toast-radius);
  padding: var(--toast-padding);
  max-width: var(--toast-max-width);
  box-shadow: var(--shadow-lg);
}
.toast--success { border-left-color: var(--success-text); }
.toast--warning { border-left-color: var(--warning-text); }
.toast--danger  { border-left-color: var(--danger-text); }
.toast--info    { border-left-color: var(--info-text); }
.toast__title { font-weight: var(--w-semibold); margin-bottom: 2px; color: var(--text-primary); font-size: var(--text-sm); }
.toast__body  { color: var(--text-secondary); font-size: 0.8rem; line-height: 1.45; }

/* Modal */
dialog.modal,
.modal {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-default);
  border-radius: var(--modal-radius);
  max-width: var(--modal-max-width);
  width: calc(100% - 32px);
  padding: 0;
  box-shadow: var(--shadow-lg);
}
.modal::backdrop,
dialog.modal::backdrop { background: var(--modal-backdrop-bg); }
.modal__header, .modal__footer { padding: var(--space-4) var(--space-6); }
.modal__header { border-bottom: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: space-between; }
.modal__title  { font-size: 1.25rem; }
.modal__body   { padding: var(--space-5) var(--space-6); color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }
.modal__footer { border-top: 1px solid var(--border-subtle); display: flex; justify-content: flex-end; gap: var(--space-3); }

/* Dropdown (details-based) */
.dropdown { position: relative; display: inline-block; }
.dropdown summary {
  list-style: none;
  cursor: pointer;
  padding: 8px 14px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dropdown summary::-webkit-details-marker { display: none; }
.dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 6px;
  z-index: var(--z-dropdown);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dropdown__item {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  cursor: pointer;
}
.dropdown__item:hover { background: var(--bg-hover); color: var(--text-primary); }

/* Tabs (radio hack) */
.tabs { display: flex; flex-direction: column; gap: var(--space-4); }
.tabs__list {
  display: flex;
  gap: var(--space-1);
  border-bottom: 1px solid var(--border-default);
  flex-wrap: wrap;
}
.tabs__trigger {
  background: transparent;
  border: none;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--w-medium);
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition-colors);
}
.tabs__trigger[aria-selected="true"] { color: var(--text-accent); border-bottom-color: var(--accent-base); }
.tabs__panel { padding: var(--space-3) 0; color: var(--text-secondary); font-size: 0.95rem; }
.tabs__panel[hidden] { display: none; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-secondary); transition: color var(--duration-fast); }
.breadcrumb a:hover { color: var(--text-accent); }
.breadcrumb__sep { color: var(--text-muted); user-select: none; }
.breadcrumb [aria-current="page"] { color: var(--text-primary); font-weight: var(--w-medium); }

/* Pagination */
.pagination { display: inline-flex; gap: var(--space-1); }
.pagination__item {
  min-width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  padding: 0 10px;
}
.pagination__item:hover { background: var(--bg-hover); color: var(--text-primary); }
.pagination__item[aria-current="page"] {
  background: var(--accent-base);
  border-color: var(--accent-base);
  color: var(--accent-text);
}

/* Progress bar */
.progress {
  width: 100%;
  height: 8px;
  background: var(--bg-surface-raised);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress__bar {
  height: 100%;
  background: var(--accent-base);
  border-radius: inherit;
  transform-origin: left;
}

/* Spinner */
.spinner {
  width: 24px; height: 24px;
  border: 2.5px solid var(--border-default);
  border-right-color: var(--accent-base);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
  display: inline-block;
}
.spinner--sm { width: 16px; height: 16px; border-width: 2px; }
.spinner--lg { width: 40px; height: 40px; border-width: 3px; }

/* Stat card */
.stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.stat-card__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-muted);
  font-weight: var(--w-medium);
}
.stat-card__value {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-accent);
  line-height: 1;
}
.stat-card__delta { font-size: var(--text-xs); display: inline-flex; align-items: center; gap: 4px; }
.stat-card__delta--up   { color: var(--success-text); }
.stat-card__delta--down { color: var(--danger-text); }

/* =====================================================
   25. NAVBAR + FOOTER do showcase
   ===================================================== */
.ds-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-navbar);
  background: var(--navbar-bg);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border-subtle);
}
.ds-nav__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 12px var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.ds-nav__brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.ds-nav__logo {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--accent-base);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-style: italic; font-weight: 700; font-size: 1.125rem;
  color: #F0F1F5;
}
.ds-nav__brand-meta { display: flex; flex-direction: column; line-height: 1; min-width: 0; }
.ds-nav__brand-meta small {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: var(--tracking-wide);
  color: var(--text-muted); margin-bottom: 3px;
}
.ds-nav__brand-meta strong {
  font-family: var(--font-heading); font-weight: 600; font-style: italic;
  font-size: 0.95rem; color: var(--text-primary); letter-spacing: -0.02em;
}
.ds-nav__links { display: none; align-items: center; gap: 1.4rem; }
.ds-nav__links a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color var(--duration-fast) var(--ease-default);
}
.ds-nav__links a:hover { color: var(--text-primary); }
.ds-nav__theme-link {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--text-accent) !important;
  border: 1px solid var(--border-accent);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
}
.ds-nav__theme-link:hover { background: var(--accent-muted); }
.ds-nav__burger {
  background: transparent; border: none; padding: 8px;
  color: var(--text-primary);
  display: inline-flex; align-items: center;
}
.ds-nav__mob {
  display: none;
  padding: 0 var(--container-padding) 1rem;
  border-top: 1px solid var(--border-subtle);
  flex-direction: column; gap: 4px;
}
.ds-nav__mob.is-open { display: flex; }
.ds-nav__mob a {
  padding: 12px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}
.ds-nav__mob a:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .ds-nav__links { display: flex; }
  .ds-nav__burger { display: none; }
  .ds-nav__mob { display: none !important; }
}

.ds-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: var(--section-sm) 0;
}
.ds-footer__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
  text-align: left;
}
@media (min-width: 768px) {
  .ds-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
  }
}
.ds-footer__brand { display: flex; align-items: center; gap: var(--space-3); }
.ds-footer p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.ds-footer__theme-link {
  font-family: var(--font-heading); font-style: italic;
  color: var(--text-accent);
  border: 1px solid var(--border-accent);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
}
.ds-footer__theme-link:hover { background: var(--accent-muted); }

/* =====================================================
   26. UTILITÁRIOS DE ESPAÇAMENTO + LAYOUT
   ===================================================== */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.flex        { display: flex; }
.flex-wrap   { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.items-end    { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.swatch-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.swatch-row > * { flex: 0 0 auto; }

/* Margin top */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-1); } .mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); } .mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); } .mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); } .mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); } .mt-16 { margin-top: var(--space-16); }
.mt-20 { margin-top: var(--space-20); }
.mt-auto { margin-top: auto; }

/* Margin bottom */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); } .mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); } .mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); } .mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); } .mb-10 { margin-bottom: var(--space-10); }
.mb-12 { margin-bottom: var(--space-12); } .mb-16 { margin-bottom: var(--space-16); }
.mb-20 { margin-bottom: var(--space-20); }
.mb-auto { margin-bottom: auto; }

/* Margin horizontal/vertical */
.mx-0 { margin-left: 0; margin-right: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-4 { margin-left: var(--space-4); margin-right: var(--space-4); }
.mx-6 { margin-left: var(--space-6); margin-right: var(--space-6); }
.my-0 { margin-top: 0; margin-bottom: 0; }
.my-4 { margin-top: var(--space-4); margin-bottom: var(--space-4); }
.my-6 { margin-top: var(--space-6); margin-bottom: var(--space-6); }
.my-8 { margin-top: var(--space-8); margin-bottom: var(--space-8); }
.my-10 { margin-top: var(--space-10); margin-bottom: var(--space-10); }
.my-12 { margin-top: var(--space-12); margin-bottom: var(--space-12); }

/* Padding top/bottom */
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: var(--space-1); } .pt-2 { padding-top: var(--space-2); }
.pt-3 { padding-top: var(--space-3); } .pt-4 { padding-top: var(--space-4); }
.pt-5 { padding-top: var(--space-5); } .pt-6 { padding-top: var(--space-6); }
.pt-8 { padding-top: var(--space-8); } .pt-10 { padding-top: var(--space-10); }
.pt-12 { padding-top: var(--space-12); } .pt-16 { padding-top: var(--space-16); }
.pt-20 { padding-top: var(--space-20); }
.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: var(--space-1); } .pb-2 { padding-bottom: var(--space-2); }
.pb-3 { padding-bottom: var(--space-3); } .pb-4 { padding-bottom: var(--space-4); }
.pb-5 { padding-bottom: var(--space-5); } .pb-6 { padding-bottom: var(--space-6); }
.pb-8 { padding-bottom: var(--space-8); } .pb-10 { padding-bottom: var(--space-10); }
.pb-12 { padding-bottom: var(--space-12); } .pb-16 { padding-bottom: var(--space-16); }
.pb-20 { padding-bottom: var(--space-20); }

/* Padding horizontal/vertical/all */
.px-0 { padding-left: 0; padding-right: 0; }
.px-3 { padding-left: var(--space-3); padding-right: var(--space-3); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-5 { padding-left: var(--space-5); padding-right: var(--space-5); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }
.px-8 { padding-left: var(--space-8); padding-right: var(--space-8); }
.px-10 { padding-left: var(--space-10); padding-right: var(--space-10); }
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }
.py-3 { padding-top: var(--space-3); padding-bottom: var(--space-3); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-5 { padding-top: var(--space-5); padding-bottom: var(--space-5); }
.py-6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.py-10 { padding-top: var(--space-10); padding-bottom: var(--space-10); }
.py-12 { padding-top: var(--space-12); padding-bottom: var(--space-12); }
.p-0 { padding: 0; }
.p-3 { padding: var(--space-3); } .p-4 { padding: var(--space-4); }
.p-5 { padding: var(--space-5); } .p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

/* Gap */
.gap-1 { gap: var(--space-1); } .gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); } .gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); } .gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); } .gap-10 { gap: var(--space-10); }
.gap-12 { gap: var(--space-12); }

/* Section padding */
.section-py-xs { padding-top: var(--section-xs); padding-bottom: var(--section-xs); }
.section-py-sm { padding-top: var(--section-sm); padding-bottom: var(--section-sm); }
.section-py-md { padding-top: var(--section-md); padding-bottom: var(--section-md); }
.section-py-lg { padding-top: var(--section-lg); padding-bottom: var(--section-lg); }
.section-py-xl { padding-top: var(--section-xl); padding-bottom: var(--section-xl); }
.section-pt-xs { padding-top: var(--section-xs); } .section-pt-sm { padding-top: var(--section-sm); }
.section-pt-md { padding-top: var(--section-md); } .section-pt-lg { padding-top: var(--section-lg); }
.section-pt-xl { padding-top: var(--section-xl); }
.section-pb-xs { padding-bottom: var(--section-xs); } .section-pb-sm { padding-bottom: var(--section-sm); }
.section-pb-md { padding-bottom: var(--section-md); } .section-pb-lg { padding-bottom: var(--section-lg); }
.section-pb-xl { padding-bottom: var(--section-xl); }

/* Mobile overrides */
@media (max-width: 767px) {
  .section-py-lg { padding-top: var(--section-md); padding-bottom: var(--section-md); }
  .section-py-xl { padding-top: var(--section-lg); padding-bottom: var(--section-lg); }

  .ds-section { padding: var(--section-sm) 0; }
  .ds-title   { margin-bottom: var(--space-8); }
  .ds-card    { padding: var(--space-5); }
  .ds-card + .ds-card { margin-top: var(--space-6); }
  .ds-grid    { gap: var(--space-5); }
  .ds-nav__brand-meta small  { font-size: 0.6rem; }
  .ds-nav__brand-meta strong { font-size: 0.85rem; }

  .btn { font-size: 1.05rem; padding: 0.95rem 1.4rem; }
  .btn--lg { font-size: 1.2rem; padding: 1.1rem 1.6rem; }

  .divisor { height: 48px; }
  .divisor__box { font-size: 1rem; }
  .divisor__sucesso { font-size: 0.85rem; }
  .divisor__sep { margin-right: 1.25rem; }
  .divisor__item { padding-right: 1.25rem; }
  .browser-mockup__body { padding: var(--space-5) var(--space-4); }
  details.faq-item summary { padding: 1rem 1.1rem; font-size: 0.9rem; }
  details.faq-item .faq-item__answer { padding: var(--space-3) 1.1rem var(--space-4); font-size: 0.875rem; }
  .container { padding-inline: var(--space-4); }

  .sm\:mt-0 { margin-top: 0; }
  .sm\:mb-0 { margin-bottom: 0; }
  .sm\:pt-4 { padding-top: var(--space-4); }
  .sm\:pb-4 { padding-bottom: var(--space-4); }
  .sm\:px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
  .sm\:py-6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }
  .sm\:gap-4 { gap: var(--space-4); }
}

@media (max-width: 480px) {
  .ds-title { font-size: 1.5rem; }
  .ds-card  { padding: var(--space-4); }
  .ds-grid  { gap: var(--space-4); }
  .pill, .badge { font-size: 0.72rem; }
  .divisor { height: 44px; }
  .divisor__box { font-size: 0.9rem; }
  .hero-sequence h1, .hero-sequence h2 { line-height: 1; }
  .hero-sequence .flex > .btn,
  .hero-sequence .flex > .btn + .btn { flex: 1 1 100%; min-width: 0; }
}

/* =====================================================
   27. KEYFRAMES
   ===================================================== */
@keyframes fade-in     { from { opacity: 0; }                                    to { opacity: 1; } }
@keyframes slide-up    { from { opacity: 0; transform: translateY(28px); }       to { opacity: 1; transform: translateY(0); } }
@keyframes slide-down  { from { opacity: 0; transform: translateY(-28px); }      to { opacity: 1; transform: translateY(0); } }
@keyframes slide-left  { from { opacity: 0; transform: translateX(32px); }       to { opacity: 1; transform: translateX(0); } }
@keyframes slide-right { from { opacity: 0; transform: translateX(-32px); }      to { opacity: 1; transform: translateX(0); } }
@keyframes scale-in    { from { opacity: 0; transform: scale(0.92); }            to { opacity: 1; transform: scale(1); } }
@keyframes blur-in     { from { opacity: 0; filter: blur(8px); }                 to { opacity: 1; filter: blur(0); } }

@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(162,125,80,0); }
  50%      { box-shadow: 0 0 0 8px rgba(162,125,80,0.18); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25%      { transform: rotate(-4deg); }
  75%      { transform: rotate(4deg); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes skeleton-shimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}
@keyframes progress-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* =====================================================
   28. ANIMAÇÕES DE ENTRADA — Scroll-triggered
   ===================================================== */
[data-animate] {
  opacity: 0;
  transition-duration: var(--duration-slower);
  transition-timing-function: var(--ease-out);
  transition-property: opacity, transform, filter;
}
[data-animate].is-visible { opacity: 1; transform: none; filter: none; }

[data-animate="fade-in"]     { }
[data-animate="fade-up"]     { transform: translateY(28px); }
[data-animate="fade-down"]   { transform: translateY(-28px); }
[data-animate="slide-left"]  { transform: translateX(32px); }
[data-animate="slide-right"] { transform: translateX(-32px); }
[data-animate="scale-in"]    { transform: scale(0.92); }
[data-animate="blur-in"]     { filter: blur(8px); transform: translateY(12px); }

[data-delay="1"] { transition-delay: var(--delay-1); }
[data-delay="2"] { transition-delay: var(--delay-2); }
[data-delay="3"] { transition-delay: var(--delay-3); }
[data-delay="4"] { transition-delay: var(--delay-4); }
[data-delay="5"] { transition-delay: var(--delay-5); }
[data-delay="6"] { transition-delay: var(--delay-6); }

[data-stagger] > *:nth-child(1) { transition-delay: 0ms; }
[data-stagger] > *:nth-child(2) { transition-delay: var(--delay-1); }
[data-stagger] > *:nth-child(3) { transition-delay: var(--delay-2); }
[data-stagger] > *:nth-child(4) { transition-delay: var(--delay-3); }
[data-stagger] > *:nth-child(5) { transition-delay: var(--delay-4); }
[data-stagger] > *:nth-child(6) { transition-delay: var(--delay-5); }

/* =====================================================
   29. MICRO-INTERAÇÕES + HERO SEQUENCE
   ===================================================== */
.hover-lift  { transition: var(--transition-card); }
.hover-lift:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.hover-scale { transition: transform var(--duration-base) var(--ease-out); }
.hover-scale:hover { transform: scale(1.02); }
.hover-glow  { transition: box-shadow var(--duration-base) var(--ease-out); }
.hover-glow:hover { box-shadow: var(--accent-shadow-hover); }
.active-press:active { transform: translateY(1px); }
.focus-ring:focus-visible { outline: none; box-shadow: var(--focus-ring-accent); }

.hero-sequence > * {
  opacity: 0;
  transform: translateY(20px);
  animation: ds-fade-up var(--duration-slower) var(--ease-out) forwards;
}
.hero-sequence > *:nth-child(1) { animation-delay: 0ms; }
.hero-sequence > *:nth-child(2) { animation-delay: 120ms; }
.hero-sequence > *:nth-child(3) { animation-delay: 240ms; }
.hero-sequence > *:nth-child(4) { animation-delay: 380ms; }
.hero-sequence > *:nth-child(5) { animation-delay: 520ms; }
.hero-sequence > *:nth-child(6) { animation-delay: 650ms; }
@keyframes ds-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-pulse-soft { animation: pulse-soft 2.4s var(--ease-default) infinite; }
.animate-float      { animation: float 3s var(--ease-default) infinite; }
.animate-wiggle     { animation: wiggle 0.5s var(--ease-bounce); }
.animate-spin       { animation: spin 700ms linear infinite; }
.animate-fade-in    { animation: fade-in var(--duration-slower) var(--ease-out) forwards; }
.animate-slide-up   { animation: slide-up var(--duration-slower) var(--ease-out) forwards; }
.animate-slide-down { animation: slide-down var(--duration-slower) var(--ease-out) forwards; }
.animate-slide-left { animation: slide-left var(--duration-slower) var(--ease-out) forwards; }
.animate-slide-right{ animation: slide-right var(--duration-slower) var(--ease-out) forwards; }
.animate-scale-in   { animation: scale-in var(--duration-slower) var(--ease-out) forwards; }
.animate-blur-in    { animation: blur-in var(--duration-slower) var(--ease-out) forwards; }

/* =====================================================
   30. SHIMMER / SKELETON
   ===================================================== */
.shimmer {
  background: linear-gradient(
    90deg,
    var(--bg-surface-raised) 25%,
    var(--bg-surface-overlay) 50%,
    var(--bg-surface-raised) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}
.skeleton { border-radius: var(--radius-md); display: block; }
.skeleton,
.skeleton-text,
.skeleton-avatar,
.skeleton-card { background: var(--bg-surface-raised); position: relative; overflow: hidden; }
.skeleton::after,
.skeleton-text::after,
.skeleton-avatar::after,
.skeleton-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 25%, var(--bg-surface-overlay) 50%, transparent 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}
.skeleton-text { height: 1em; border-radius: var(--radius-sm); margin-bottom: var(--space-2); }
.skeleton-text.skeleton-text--lg { height: 1.5em; }
.skeleton-text.skeleton-text--sm { height: 0.75em; }
.skeleton-text.skeleton-text--w-full { width: 100%; }
.skeleton-text.skeleton-text--w-3-4  { width: 75%; }
.skeleton-text.skeleton-text--w-1-2  { width: 50%; }
.skeleton-avatar { border-radius: var(--radius-full); width: 44px; height: 44px; flex-shrink: 0; }
.skeleton-avatar--lg { width: 64px; height: 64px; }
.skeleton-card { border-radius: var(--radius-xl); height: 200px; }

/* =====================================================
   31. prefers-reduced-motion — cirúrgico
   Mantém transições funcionais de hover/focus;
   remove apenas decorativas e de entrada/scroll.
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .hero-sequence > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .animate-pulse-soft,
  .animate-float,
  .animate-wiggle,
  .animate-spin,
  .animate-fade-in,
  .animate-slide-up,
  .animate-slide-down,
  .animate-slide-left,
  .animate-slide-right,
  .animate-scale-in,
  .animate-blur-in,
  .shimmer,
  .skeleton::after,
  .skeleton-text::after,
  .skeleton-avatar::after,
  .skeleton-card::after,
  .divisor__track {
    animation: none !important;
  }
}
