/* =============================================================
   ORDUS SYSTEM FULL-SERVICE — GLOBAL.CSS
   Tema: Clean Slate adaptado · Tweakcn export · Build v2
   Regra absoluta: NUNCA hard-code valores de estilo.
   SEMPRE usar as variáveis CSS abaixo como fonte única de verdade.
   ============================================================= */

/* -------------------------------------------------------------
   0. FONTES — Google Fonts
   ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@400;500;600&display=swap');

/* -------------------------------------------------------------
   1. VARIÁVEIS CSS — Fonte única de verdade (baseado no Tweakcn)
   ------------------------------------------------------------- */
:root {
  /* Cores base */
  --background:          hsl(60 7.1429% 94.5098%);   /* #F2F2F0 */
  --foreground:          hsl(240 27.7778% 14.1176%);  /* #1A1A2E */
  --card:                hsl(0 0% 100%);
  --card-foreground:     hsl(217 32% 17%);
  --popover:             hsl(0 0% 100%);
  --popover-foreground:  hsl(217 32% 17%);

  /* Cor primária — Roxo Ordus */
  --primary:             hsl(278 86% 49%);            /* #9A11E9 */
  --primary-dark:        hsl(278 62% 42%);            /* hover */
  --primary-light:       hsl(278 86% 49% / 0.08);     /* fundo sutil */
  --primary-foreground:  hsl(0 0% 100%);

  /* Cor positiva — resultado, sucesso, CTA secundário */
  --positive:            hsl(160 65% 40%);            /* #10B981 */
  --positive-light:      hsl(160 65% 40% / 0.10);

  /* Secundárias */
  --secondary:           hsl(220 13% 91%);
  --secondary-foreground: hsl(217 19% 27%);
  --muted:               hsl(220 14% 96%);
  --muted-foreground:    hsl(220 9% 46%);
  --accent:              hsl(226 100% 94%);
  --accent-foreground:   hsl(217 19% 27%);

  /* Texto secundário com leve tom roxo */
  --text-secondary:      hsl(240 15% 41%);            /* #64648A */

  /* Destructive */
  --destructive:         hsl(0 84% 60%);
  --destructive-foreground: hsl(0 0% 100%);

  /* Bordas e inputs */
  --border:              hsl(216 12% 84%);
  --border-strong:       hsl(216 18% 72%);
  --input:               hsl(216 12% 84%);
  --ring:                hsl(278 86% 49%);

  /* Tipografia */
  --font-display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --font-body:    'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-sans:    'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --weight-regular:   400;
  --weight-medium:    500;
  --weight-semibold:  600;
  --weight-bold:      700;
  --weight-extrabold: 800;

  /* Raio de borda */
  --radius:    0.75rem;   /* 12px — cards */
  --radius-md: 0.5rem;    /* 8px  — botões */
  --radius-sm: 0.375rem;  /* 6px  — badges */
  --radius-xs: 0.25rem;   /* 4px  — micro */

  /* Sombras */
  --shadow-xs: 0 1px 2px hsl(0 0% 0% / 0.04);
  --shadow-sm: 0 1px 3px hsl(0 0% 0% / 0.06), 0 1px 2px hsl(0 0% 0% / 0.04);
  --shadow:    0 2px 8px hsl(0 0% 0% / 0.07), 0 1px 3px hsl(0 0% 0% / 0.05);
  --shadow-md: 0 4px 16px hsl(0 0% 0% / 0.08), 0 2px 6px hsl(0 0% 0% / 0.05);
  --shadow-lg: 0 8px 32px hsl(0 0% 0% / 0.10), 0 4px 8px hsl(0 0% 0% / 0.06);
  --shadow-xl: 0 16px 48px hsl(0 0% 0% / 0.12), 0 8px 16px hsl(0 0% 0% / 0.07);

  /* Espaçamento — base 4px */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max:  1200px;
  --section-pad-y:  var(--space-24);
  --header-height:  68px;

  /* Transições */
  --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   400ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------------------------------------------------
   2. RESET
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--weight-regular);
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  line-height: 1.15;
  color: var(--foreground);
  letter-spacing: -0.02em;
}

/* -------------------------------------------------------------
   3. LAYOUT
   ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--narrow { max-width: 760px; }
.container--wide   { max-width: 1400px; }

.section {
  padding-block: var(--section-pad-y);
}

.section--sm { padding-block: var(--space-16); }
.section--lg { padding-block: calc(var(--section-pad-y) * 1.33); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }

/* Flex */
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* -------------------------------------------------------------
   4. TIPOGRAFIA — Escala
   ------------------------------------------------------------- */
.text-display {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: var(--weight-extrabold);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.text-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: var(--weight-extrabold);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.text-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--weight-bold);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.text-h3 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: var(--weight-semibold);
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.text-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

.text-sm     { font-size: 0.875rem; line-height: 1.5; }
.text-xs     { font-size: 0.75rem; line-height: 1.4; }
.text-muted  { color: var(--muted-foreground); }
.text-secondary { color: var(--text-secondary); }
.text-primary   { color: var(--primary); }

/* -------------------------------------------------------------
   5. SECTION HEADER
   ------------------------------------------------------------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-4);
}

.section-label::before {
  display: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: var(--weight-extrabold);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--foreground);
  margin-bottom: var(--space-4);
}

.section-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.0625rem);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
}

.section-header {
  margin-bottom: var(--space-12);
}

.section-header--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.section-header--center .section-label  { justify-content: center; }
.section-header--center .section-lead   { margin-inline: auto; }

/* -------------------------------------------------------------
   6. NAVBAR
   ------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: var(--card);
  border-bottom: 1px solid var(--border);
  z-index: 50;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-fast);
}

.site-nav.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  width: 100%;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 1.125rem;
  color: var(--foreground);
  flex-shrink: 0;
}

.nav__logo-img {
  height: 28px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__link {
  font-size: 0.875rem;
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav__link:hover { color: var(--foreground); }

/* -------------------------------------------------------------
   7. BOTÕES
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: var(--weight-semibold);
  line-height: 1;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    border-color     var(--transition-fast),
    color            var(--transition-fast),
    box-shadow       var(--transition-fast),
    transform        80ms ease;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn--primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.btn--primary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn--outline {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border-strong);
}

.btn--outline:hover {
  background: var(--card);
  border-color: var(--primary);
  color: var(--primary);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: transparent;
}

.btn--ghost:hover {
  background: var(--muted);
  color: var(--foreground);
}

.btn--lg {
  padding: var(--space-4) var(--space-10);
  font-size: 1rem;
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: 0.8125rem;
}

.btn-text     { transition: opacity var(--transition-fast); }
.btn-loading  { display: none; }

.btn.is-loading .btn-text    { opacity: 0; }
.btn.is-loading .btn-loading { display: inline; }
.btn.is-loading { pointer-events: none; opacity: 0.7; }

/* -------------------------------------------------------------
   8. CARDS
   ------------------------------------------------------------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow-xs);
  transition:
    box-shadow     var(--transition-base),
    border-color   var(--transition-base),
    transform      var(--transition-base);
}

.card--hover:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.card--highlight {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-sm);
}

/* -------------------------------------------------------------
   9. BADGES
   ------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  line-height: 1;
  white-space: nowrap;
}

.badge--primary {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid hsl(278 86% 49% / 0.2);
}

.badge--positive {
  background: var(--positive-light);
  color: var(--positive);
  border: 1px solid hsl(160 65% 40% / 0.2);
}

.badge--muted {
  background: var(--muted);
  color: var(--muted-foreground);
  border: 1px solid var(--border);
}

.badge--outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* -------------------------------------------------------------
   10. FORMULÁRIO
   ------------------------------------------------------------- */
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-field__label {
  font-size: 0.75rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--foreground);
}

.form-field__input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--foreground);
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition:
    border-color var(--transition-fast),
    box-shadow   var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}

.form-field__input::placeholder { color: var(--muted-foreground); }

.form-field__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-field__input.has-error {
  border-color: var(--destructive);
  box-shadow: 0 0 0 3px hsl(0 84% 60% / 0.1);
}

.form-field__error {
  font-size: 0.8125rem;
  color: var(--destructive);
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: var(--space-4);
  line-height: 1.5;
}

.form-response-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: var(--space-2);
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  padding: var(--space-12);
  animation: success-in 400ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.form-success__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--positive-light);
  color: var(--positive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
}

.form-success__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  color: var(--foreground);
}

.form-success__body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 400px;
}

@keyframes success-in {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* -------------------------------------------------------------
   11. SCROLL REVEAL
   ------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity   500ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-group] > [data-reveal]:nth-child(2) { transition-delay: 80ms; }
[data-reveal-group] > [data-reveal]:nth-child(3) { transition-delay: 160ms; }
[data-reveal-group] > [data-reveal]:nth-child(4) { transition-delay: 240ms; }
[data-reveal-group] > [data-reveal]:nth-child(5) { transition-delay: 320ms; }
[data-reveal-group] > [data-reveal]:nth-child(6) { transition-delay: 400ms; }

/* -------------------------------------------------------------
   12. FAQ / ACCORDION
   ------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: var(--weight-medium);
  color: var(--foreground);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-item__trigger:hover { color: var(--primary); }

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform var(--transition-base);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__body {
  padding-bottom: var(--space-5);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  display: none;
}

.faq-item.is-open .faq-item__body {
  display: block;
  animation: faq-open 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------
   13. FOOTER
   ------------------------------------------------------------- */
.site-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding-block: var(--space-12);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 1.125rem;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__links {
  display: flex;
  gap: var(--space-6);
}

.footer__link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color var(--transition-fast);
}

.footer__link:hover { color: var(--primary); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

/* -------------------------------------------------------------
   14. DIVIDERS
   ------------------------------------------------------------- */
.divider {
  height: 1px;
  background: var(--border);
  margin-block: var(--space-8);
}

/* -------------------------------------------------------------
   15. NAV — sub-brand label "SYSTEM"
   ------------------------------------------------------------- */
.nav__brand-sub {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 2px 5px;
  background: var(--primary-light);
  border-radius: var(--radius-xs);
  line-height: 1;
  align-self: center;
}

/* -------------------------------------------------------------
   16. HERO SECTION
   ------------------------------------------------------------- */
.hero-section {
  padding-top: calc(var(--header-height) + var(--space-20));
  padding-bottom: 0;
  /* overflow: visible — necessário para levitação não ser cortada */
}

.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);    /* texto e imagem mais próximos */
}

.hero-section__content {
  text-align: center;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.hero-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: var(--weight-extrabold);
  line-height: 1.07;
  letter-spacing: -0.035em;
  color: var(--foreground);
}

.hero-section__title-accent {
  color: var(--primary);
}

.hero-section__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 580px;
}

.hero-section__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.hero-section__badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8125rem;
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
}

.hero-section__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 0 3px var(--positive-light);
  flex-shrink: 0;
  animation: dot-pulse 2.5s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--positive-light); }
  50%       { box-shadow: 0 0 0 6px hsl(160 65% 40% / 0.04); }
}

.hero-section__microcopy {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

/* Visual — laptop mockup com fundo neutro.
   Sem wrapper escuro — a imagem tem fundo neutro próprio.
   Imagem vai de ponta a ponta do container (como na referência Launch UI). */
.hero-section__visual {
  width: 100%;
  max-width: 100%;    /* ocupa todo o container */
}

.hero-section__img-wrapper {
  background: transparent;
  border: none;
  position: relative;
}

/* Sem pseudo-elementos — a imagem tem seu próprio chrome */
.hero-section__img-wrapper::before,
.hero-section__img-wrapper::after {
  display: none;
}

.hero-section__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  /* Sombra warm para elevar o laptop do fundo claro */
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.14))
          drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: calc(var(--header-height) + var(--space-12));
  }

  .hero-section__actions .btn--lg {
    width: 100%;
  }
}

/* -------------------------------------------------------------
   18. SEÇÃO 03 — STORYTELLING (3 Tempos)
   ------------------------------------------------------------- */

.story-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: var(--weight-extrabold);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--foreground);
  margin-bottom: var(--space-12);
}

/* Cada bloco temporal */
.story-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--border);
}

.story-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

/* Marcador temporal */
.story-block__marker {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-top: var(--space-1);
  position: relative;
  line-height: 1.6;
}

.story-block__marker::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 1px;
  margin-bottom: var(--space-2);
}

.story-block__marker--antes {
  color: var(--muted-foreground);
}
.story-block__marker--antes::before {
  background: var(--border-strong);
}

.story-block__marker--durante {
  color: var(--text-secondary);
}
.story-block__marker--durante::before {
  background: var(--primary);
  opacity: 0.5;
}

.story-block__marker--depois {
  color: var(--positive);
}
.story-block__marker--depois::before {
  background: var(--positive);
}

/* Conteúdo do bloco */
.story-block__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.story-block__text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

.story-block__text--resolution {
  color: var(--foreground);
  font-weight: var(--weight-medium);
}

/* Frase de insight central */
.story-block__insight {
  margin: var(--space-2) 0 0;
  padding: var(--space-5) var(--space-6);
  background: var(--card);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-xs);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: var(--weight-semibold);
  line-height: 1.5;
  color: var(--foreground);
  letter-spacing: -0.01em;
}

/* Comparativo — dois boxes separados */
.comparison-pair {
  margin-top: var(--space-16);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.comparison-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-width: 0; /* essencial para grid não expandir além da célula */
}

.comparison-box--before {
  border: 1.5px solid hsl(0 72% 55% / 0.35);
}

.comparison-box--after {
  border: 1.5px solid hsl(278 86% 49% / 0.35);
}

/* Header de cada box */
.comparison-box__header {
  padding: var(--space-3) var(--space-4);
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

/* Chip de label */
.comparison-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison-chip--danger {
  background: hsl(0 80% 97%);
  color: hsl(0 72% 42%);
  border: 1px solid hsl(0 80% 88%);
}

.comparison-chip--brand {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid hsl(278 86% 49% / 0.2);
}

.comparison-chip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.comparison-chip--danger .comparison-chip__dot {
  background: hsl(0 72% 55%);
}

.comparison-chip--brand .comparison-chip__dot {
  background: var(--primary);
}

/* VS badge central */
.comparison-frame__vs {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--muted);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  flex-shrink: 0;
}

/* Wrapper da imagem usando background-image para crop preciso.
   Imagem completa: 1672 × 941px.
   Cada metade:      836 × 941px → aspect-ratio 836/941 ≈ 8/9        */
.comparison-box__img-wrap {
  aspect-ratio: 836 / 941;
  background-image: url('https://assets.cdn.filesafe.space/C7Zw4DpSudSwERSPNq60/media/6a1e0baaf258f15ece42b783.png');
  background-size: auto 100%;   /* altura = 100% do container; largura = auto (mantém proporção) */
  background-repeat: no-repeat;
}

/* Metade esquerda: âncora no início */
.comparison-box__img-wrap--before {
  background-position: left center;
}

/* Metade direita: âncora no fim */
.comparison-box__img-wrap--after {
  background-position: right center;
}

/* Responsivo */
@media (max-width: 768px) {
  .comparison-pair {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

@media (max-width: 640px) {
  .comparison-chip {
    font-size: 0.625rem;
    padding: var(--space-1) var(--space-3);
  }
}

/* Responsivo */
@media (max-width: 640px) {
  .story-block {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .story-block__marker {
    display: flex;
    align-items: center;
    gap: var(--space-2);
  }

  .story-block__marker::before {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/* -------------------------------------------------------------
   19. SEÇÃO 04 — PROBLEMA (ABT)
   ------------------------------------------------------------- */

/* Estrutura ABT */
.abt-block {
  margin-bottom: var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.abt-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--border);
}

.abt-item:last-child {
  border-bottom: none;
}

/* Conector (E / Mas / Portanto) */
.abt-item__connector {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  width: 72px;
  padding-top: 3px;
  text-align: right;
}

.abt-item--e .abt-item__connector        { color: var(--muted-foreground); }
.abt-item--mas .abt-item__connector      { color: hsl(0 72% 50%); }
.abt-item--portanto .abt-item__connector { color: var(--primary); }

/* Divisor vertical simples entre conector e texto */
.abt-item__connector + .abt-item__text {
  border-left: 2px solid var(--border);
  padding-left: var(--space-5);
}

.abt-item--mas .abt-item__connector + .abt-item__text {
  border-left-color: hsl(0 72% 55% / 0.4);
}

.abt-item--portanto .abt-item__connector + .abt-item__text {
  border-left-color: hsl(278 86% 49% / 0.4);
}

.abt-item__text {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.abt-item--mas .abt-item__text {
  color: var(--foreground);
  font-weight: var(--weight-medium);
}

.abt-item--portanto .abt-item__text {
  color: var(--foreground);
}

/* Grid de sintomas */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.symptom-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  transition: border-color var(--transition-fast),
              box-shadow   var(--transition-fast);
}

.symptom-card:hover {
  border-color: hsl(0 72% 55% / 0.35);
  box-shadow: var(--shadow-sm);
}

.symptom-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: hsl(0 80% 97%);
  color: hsl(0 72% 50%);
  flex-shrink: 0;
}

.symptom-card__text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
  padding-top: 6px;
}

/* Frase de impacto */
.pain-quote {
  margin: 0;
  padding: var(--space-8) var(--space-8);
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: var(--weight-semibold);
  line-height: 1.55;
  color: var(--foreground);
  letter-spacing: -0.01em;
  text-align: center;
  position: relative;
}

.pain-quote::before {
  content: '"';
  position: absolute;
  top: -16px;
  left: var(--space-8);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: var(--weight-extrabold);
  color: var(--primary);
  line-height: 1;
  opacity: 0.2;
}

/* Responsivo */
@media (max-width: 640px) {
  .abt-item {
    gap: var(--space-3);
  }

  .abt-item__connector {
    width: 52px;
    font-size: 0.5625rem;
  }

  .abt-item__connector + .abt-item__text {
    padding-left: var(--space-3);
  }

  .symptoms-grid {
    grid-template-columns: 1fr;
  }

  .pain-quote {
    padding: var(--space-6);
    text-align: left;
  }
}

/* -------------------------------------------------------------
   20. SEÇÃO 05 — MECANISMO
   ------------------------------------------------------------- */

.mechanism-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.mechanism-section__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.mechanism-section__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.mechanism-section__body p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

/* Card destaque WhatsApp */
.whatsapp-highlight {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: hsl(142 70% 97%);
  border: 1px solid hsl(142 50% 85%);
  border-left: 3px solid #25D366;
  border-radius: var(--radius);
}

.whatsapp-highlight__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-highlight__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.whatsapp-highlight__text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: var(--weight-semibold);
  line-height: 1.55;
  color: var(--foreground);
  margin: 0;
}

.whatsapp-highlight__sub {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Imagem */
.mechanism-section__visual {
  position: relative;
}

.mechanism-section__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  filter: drop-shadow(0 16px 48px rgba(0,0,0,0.12))
          drop-shadow(0 4px 12px rgba(0,0,0,0.06));
}

/* Responsivo */
@media (max-width: 1024px) {
  .mechanism-section__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .mechanism-section__visual {
    max-width: 560px;
    margin-inline: auto;
  }
}

/* -------------------------------------------------------------
   21. SEÇÃO 06 — CARROSSEL DE ENTREGÁVEIS
   ------------------------------------------------------------- */

.deliverables-section {
  overflow: hidden; /* garante que o carrossel não vaze */
}

/* Wrapper do carrossel — position relative para setas absolutas */
.carousel-wrapper {
  position: relative;
  margin-top: var(--space-12);
}

/* Track do carrossel */
.carousel {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: var(--space-4) 0 var(--space-6);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar { display: none; }

/* Card individual */
.carousel-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.carousel-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Cover 4:5 */
.carousel-card__cover {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.carousel-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-card:hover .carousel-card__cover img {
  transform: scale(1.03);
}

/* Body do card */
.carousel-card__body {
  padding: var(--space-4) var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.carousel-card__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: var(--weight-bold);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--foreground);
  margin: 0;
}

.carousel-card__desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

/* Setas — absolutas, centralizadas na altura dos cards */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--card);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition:
    background-color var(--transition-fast),
    border-color     var(--transition-fast),
    color            var(--transition-fast),
    box-shadow       var(--transition-fast);
}

.carousel-btn--prev { left: -20px; }
.carousel-btn--next { right: -20px; }

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* -------------------------------------------------------------
   22. SEÇÃO 07 — PROCESSO
   ------------------------------------------------------------- */

.process-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.process-section__intro {
  position: sticky;
  top: calc(var(--header-height) + var(--space-8));
}

/* Timeline */
.process-timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--space-5);
}

/* Marcador + linha vertical */
.process-step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.process-step__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--background);
  box-shadow: 0 0 0 2px var(--primary);
  flex-shrink: 0;
  z-index: 1;
}

.process-step__dot--ongoing {
  background: var(--positive);
  box-shadow: 0 0 0 2px var(--positive);
}

.process-step__line {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin-top: 6px;
  min-height: 48px;
}

/* Conteúdo de cada passo */
.process-step__content {
  padding-bottom: var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.process-step--ongoing .process-step__content {
  padding-bottom: 0;
}

.process-step__period {
  align-self: flex-start;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: var(--weight-bold);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin: 0;
}

.process-step__text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .process-section__grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .process-section__intro {
    position: static;
  }
}

/* -------------------------------------------------------------
   23. SEÇÃO 08 — TIME
   ------------------------------------------------------------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
  margin-bottom: var(--space-12);
}

/* Card individual */
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-8) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-5);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Avatar circular */
.team-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--background);
  box-shadow: 0 0 0 2px hsl(278 86% 49% / 0.25), var(--shadow-sm);
  flex-shrink: 0;
}

.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Fallback iniciais (caso a foto não carregue) */
.team-card__initials {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  color: var(--primary);
  letter-spacing: 0.04em;
}

/* Info */
.team-card__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
}

.team-card__role {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin: 0;
}

.team-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* Bloco de posicionamento */
.team-positioning {
  margin: 0;
  padding: var(--space-8) var(--space-10);
  background: var(--primary-light);
  border: 1px solid hsl(278 86% 49% / 0.15);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
}

.team-positioning p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.0625rem);
  font-weight: var(--weight-semibold);
  line-height: 1.65;
  color: var(--foreground);
  letter-spacing: -0.01em;
  margin: 0;
  text-align: center;
}

/* Responsivo */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .team-positioning {
    padding: var(--space-6);
  }

  .team-positioning p {
    text-align: left;
  }
}

/* -------------------------------------------------------------
   24. SEÇÃO 09 — COMPARATIVO
   ------------------------------------------------------------- */

.comp-table-wrap {
  margin-top: var(--space-12);
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.9375rem;
}

/* Header */
.comp-table thead {
  background: var(--card);
  border-bottom: 2px solid var(--border);
}

.comp-table__col-header {
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: var(--weight-bold);
  color: var(--foreground);
  text-align: center;
  letter-spacing: -0.01em;
  vertical-align: middle;
}

.comp-table__col-header:first-child {
  text-align: left;
}

.comp-table__col-header--featured {
  background: var(--primary-light);
  color: var(--primary);
  border-left: 2px solid hsl(278 86% 49% / 0.2);
  border-right: 2px solid hsl(278 86% 49% / 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

/* Hack: thead th não suporta display:flex */
.comp-table__col-header--featured {
  display: table-cell;
  vertical-align: middle;
}

.comp-table__col-header--featured .badge {
  display: inline-flex;
  margin-bottom: var(--space-2);
}

/* Linhas */
.comp-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background-color var(--transition-fast);
}

.comp-table tbody tr:last-child {
  border-bottom: none;
}

.comp-table tbody tr:hover {
  background: var(--muted);
}

/* Células */
.comp-table__row-header {
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: var(--weight-semibold);
  color: var(--text-secondary);
  text-align: left;
  white-space: nowrap;
  background: var(--card);
}

.comp-table__cell {
  padding: var(--space-4) var(--space-6);
  color: var(--text-secondary);
  text-align: center;
  font-size: 0.9rem;
}

.comp-table__cell--featured {
  background: var(--primary-light);
  color: var(--primary);
  border-left: 2px solid hsl(278 86% 49% / 0.15);
  border-right: 2px solid hsl(278 86% 49% / 0.15);
  text-align: center;
}

.comp-table__cell--featured strong {
  font-weight: var(--weight-bold);
  color: var(--primary);
}

/* Texto contextual abaixo */
.comparison-context {
  margin-top: var(--space-8);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

/* Responsivo */
@media (max-width: 768px) {
  .comp-table__col-header,
  .comp-table__cell {
    padding: var(--space-3) var(--space-4);
    font-size: 0.8125rem;
  }

  .comp-table__row-header {
    padding: var(--space-3) var(--space-4);
    font-size: 0.8125rem;
  }
}

/* -------------------------------------------------------------
   25. SEÇÃO 10 — GARANTIAS
   ------------------------------------------------------------- */

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
  margin-bottom: var(--space-8);
}

/* Card */
.guarantee-card {
  background: var(--card);
  border: 1px solid hsl(160 65% 40% / 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

/* Topo: número grande + tag */
.guarantee-card__top {
  background: hsl(160 65% 40% / 0.06);
  border-bottom: 1px solid hsl(160 65% 40% / 0.15);
  padding: var(--space-6) var(--space-6) var(--space-5);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
}

/* Número de dias — hierarquia clara */
.guarantee-card__number {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  line-height: 1;
}

.guarantee-card__num-value {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: var(--weight-extrabold);
  letter-spacing: -0.04em;
  color: var(--positive);
}

.guarantee-card__num-unit {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: var(--weight-semibold);
  color: var(--positive);
  opacity: 0.7;
  padding-bottom: 4px;
}

/* Tag do nome da garantia */
.guarantee-card__tag {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--positive);
  text-align: right;
  line-height: 1.3;
  flex-shrink: 0;
}

/* Corpo: texto da garantia */
.guarantee-card__body {
  padding: var(--space-6);
  flex: 1;
}

.guarantee-card__text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: var(--weight-regular);
  line-height: 1.75;
  color: var(--foreground);
  margin: 0;
}

/* Footer: razão de existir — integrado, não apêndice */
.guarantee-card__footer {
  background: var(--muted);
  border-top: 1px solid var(--border);
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: var(--weight-medium);
  line-height: 1.55;
  color: var(--text-secondary);
}

/* Nota abaixo dos cards */
.guarantees-note {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .guarantees-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------
   26. SEÇÃO 11 — FAQ
   ------------------------------------------------------------- */

.faq-section .faq-list {
  margin-top: var(--space-10);
}

/* -------------------------------------------------------------
   27. SEÇÃO 12 — CTA FINAL
   ------------------------------------------------------------- */

.cta-section {
  background: var(--card);
  border-top: 1px solid var(--border);
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.cta-section__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.cta-section__anchor {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  padding: var(--space-4) var(--space-5);
  background: var(--positive-light);
  border-left: 3px solid var(--positive);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Form */
.cta-section__form-wrap {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.cta-form__fields {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.cta-form__submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.cta-form__btn {
  width: 100%;
  justify-content: center;
}

.cta-form__price {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: var(--weight-extrabold);
  letter-spacing: -0.03em;
  color: var(--foreground);
}

.cta-form__microcopy {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  text-align: center;
}

.cta-form__stripe-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: 0.8125rem;
  font-weight: var(--weight-medium);
  color: var(--positive);
}

/* Formulário — validação */
.form-field__input.has-error {
  border-color: var(--destructive);
  box-shadow: 0 0 0 3px hsl(0 84% 60% / 0.1);
}

@media (max-width: 1024px) {
  .cta-section__inner {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
}

/* Lógica de formulário via JS */
.cta-section__form-wrap form[hidden] { display: none; }

/* =============================================================
   MOTION SPRINT — Animações das 4 seções de máximo impacto
   ============================================================= */

/* ── HERO: Stagger linha a linha ── */
@keyframes hero-line-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-line {
  display: block;
  animation: hero-line-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-section__title .hero-line:nth-child(1) { animation-delay: 0.15s; }
.hero-section__title .hero-line:nth-child(2) { animation-delay: 0.32s; }
.hero-section__title .hero-line:nth-child(3) { animation-delay: 0.50s; }

/* Outros elementos do hero em cascata */
.hero-section__content .section-label { animation: hero-line-up 0.5s 0.05s both cubic-bezier(0.16,1,0.3,1); }
.hero-section__sub    { animation: hero-line-up 0.5s 0.68s both cubic-bezier(0.16,1,0.3,1); }
.hero-section__actions{ animation: hero-line-up 0.5s 0.80s both cubic-bezier(0.16,1,0.3,1); }
.hero-section__microcopy { animation: hero-line-up 0.4s 0.92s both cubic-bezier(0.16,1,0.3,1); }
.hero-section__visual { animation: hero-line-up 0.8s 0.4s both cubic-bezier(0.16,1,0.3,1); }

/* ── HERO: Levitação contínua da imagem (sutil, sem clipar) ── */
@keyframes levitate {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
.hero-section__img {
  animation: levitate 5s ease-in-out infinite;
}

/* Dar espaço para a levitação não ser cortada */
.hero-section__visual {
  padding-bottom: 16px;
}

/* ── PROCESSO: Timeline draw ── */
.process-step__line {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}
.process-step.is-visible .process-step__line {
  transform: scaleY(1);
}

/* Dot aparece com scale */
.process-step__dot {
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}
.process-step.is-visible .process-step__dot {
  transform: scale(1);
}

/* Dot da gestão contínua: glow permanente */
@keyframes ongoing-glow {
  0%, 100% { box-shadow: 0 0 0 2px var(--positive), 0 0 0 5px hsl(160 65% 40% / 0.2); }
  50%       { box-shadow: 0 0 0 2px var(--positive), 0 0 0 9px hsl(160 65% 40% / 0.06); }
}
.process-step--ongoing .process-step__dot--ongoing {
  animation: ongoing-glow 2.5s ease-in-out infinite;
}

/* ── GARANTIAS: Entrada direcional + border-top draw ── */
.guarantee-card {
  position: relative;
  overflow: hidden;
}

/* border-top se desenha */
.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--positive);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

/* Remove border-top do CSS base — substituído pelo ::before animado */
.guarantee-card {
  border-top: none;
}

.guarantee-card.is-visible::before {
  transform: scaleX(1);
}

/* Entrada da esquerda */
.guarantee-card--left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s,
              transform 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s;
}
.guarantee-card--left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Entrada da direita */
.guarantee-card--right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1) 0.2s,
              transform 0.6s cubic-bezier(0.16,1,0.3,1) 0.2s;
}
.guarantee-card--right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── CTA FINAL: Entrada texto × form em direções opostas ── */
.cta-section__text[data-reveal] {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s,
              transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s;
}
.cta-section__text.is-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.cta-section__form-wrap[data-reveal] {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s,
              transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s;
}
.cta-section__form-wrap.is-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Borda pulsante no form */
@keyframes form-pulse {
  0%, 100% { box-shadow: 0 0 0 1px hsl(278 86% 49% / 0.12), var(--shadow-md); }
  50%       { box-shadow: 0 0 0 3px hsl(278 86% 49% / 0.22), var(--shadow-md); }
}
.cta-section__form-wrap {
  animation: form-pulse 3.5s ease-in-out infinite;
}

/* Button: sweep de luz da esquerda para a direita */
.cta-form__btn {
  position: relative;
  overflow: hidden;
}
.cta-form__btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: btn-sweep 3.5s ease-in-out 1.5s infinite;
}
@keyframes btn-sweep {
  0%       { left: -100%; }
  40%, 100% { left: 160%; }
}

/* prefers-reduced-motion: respeitar preferência do usuário */
@media (prefers-reduced-motion: reduce) {
  .hero-line,
  .hero-section__content .section-label,
  .hero-section__sub,
  .hero-section__actions,
  .hero-section__microcopy,
  .hero-section__visual { animation: none; opacity: 1; transform: none; }
  .hero-section__img { animation: none; }
  .process-step__line { transition: none; transform: scaleY(1); }
  .process-step__dot  { transition: none; transform: scale(1); }
  .guarantee-card--left,
  .guarantee-card--right { opacity: 1; transform: none; transition: none; }
  .cta-section__text[data-reveal],
  .cta-section__form-wrap[data-reveal] { opacity: 1; transform: none; transition: none; }
  .cta-section__form-wrap { animation: none; }
  .cta-form__btn::after { animation: none; }
}

/* -------------------------------------------------------------
   28. UTILITÁRIOS
   ------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* -------------------------------------------------------------
   16. RESPONSIVIDADE
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --section-pad-y: var(--space-20); }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad-y: var(--space-16); }

  .container { padding-inline: var(--space-4); }

  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

  .nav__links { display: none !important; }

  .footer__top,
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .section-header--center {
    text-align: left;
  }

  .section-header--center .section-label,
  .section-header--center .section-lead {
    justify-content: flex-start;
    margin-inline: 0;
  }

  /* CTA Section mobile — colapsa e ajusta padding */
  .cta-section__inner {
    grid-template-columns: 1fr !important;
    gap: var(--space-8) !important;
  }

  .cta-section__form-wrap {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: var(--space-5) !important;
  }

  .cta-form__fields {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .cta-form__btn {
    width: 100% !important;
    min-width: 0 !important;
    font-size: 0.875rem !important;
    padding: var(--space-4) var(--space-4) !important;
  }

  /* Process e Mechanism — colapsar grids */
  .process-section__grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-8) !important;
  }

  .process-section__intro {
    position: static !important;
  }

  .mechanism-section__grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-8) !important;
  }

  /* Guarantees — colapsar */
  .guarantees-grid {
    grid-template-columns: 1fr !important;
  }

  /* Comparativo — scroll horizontal */
  .comp-table-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  /* Story ABT — reduzir conector */
  .abt-item {
    gap: var(--space-3) !important;
  }

  .abt-item__connector {
    width: 48px !important;
    font-size: 0.5625rem !important;
  }

  /* Team grid */
  .team-grid {
    grid-template-columns: 1fr !important;
    max-width: 360px !important;
    margin-inline: auto !important;
  }

  /* Comparison pair */
  .comparison-pair {
    grid-template-columns: 1fr !important;
    gap: var(--space-4) !important;
  }

  /* FAQ */
  .faq-item__trigger {
    font-size: 0.9375rem !important;
  }
}

@media (max-width: 480px) {
  :root { --section-pad-y: var(--space-12); }

  .container { padding-inline: var(--space-3); }

  .btn--lg {
    width: 100% !important;
    justify-content: center !important;
    font-size: 0.875rem !important;
    padding: var(--space-4) var(--space-3) !important;
  }

  /* Hero */
  .hero-section__title {
    font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
  }

  /* Section title menor */
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }

  /* Form wrap padding mínimo */
  .cta-section__form-wrap {
    padding: var(--space-4) !important;
  }

  /* Garantias número menor */
  .guarantee-card__num-value {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }
}

/* -------------------------------------------------------------
   17. ACESSIBILIDADE
   ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] { opacity: 1; transform: none; }
}
