/* ==============================================
   CLIVAR — Styles (v2 — premium editorial)
   ============================================== */

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

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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.72;
  color: var(--ink-800);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

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

/* ---------- CSS Custom Properties ---------- */
:root {
  --ink-900:       #0F1220;
  --ink-800:       #1A1D2E;
  --ink-700:       #2A3554;
  --text-sec:      #55607A;
  --text-muted:    #8A90A3;
  --gold:          #B8985A;
  --gold-soft:     #D4B97A;
  --line:          #E8E4DB;
  --line-strong:   #D4CEC0;
  --paper:         #F8F6F1;
  --paper-warm:    #F3EFE6;
  --white:         #FFFFFF;

  --shadow-card:       0 1px 2px rgba(15,18,32,0.04), 0 8px 24px rgba(15,18,32,0.06), 0 32px 64px rgba(15,18,32,0.05);
  --shadow-card-hover: 0 1px 2px rgba(15,18,32,0.04), 0 12px 32px rgba(15,18,32,0.10), 0 40px 80px rgba(15,18,32,0.08);
  --shadow-image:      0 20px 60px rgba(15,18,32,0.15), 0 40px 100px rgba(15,18,32,0.10);

  --topbar-h:  88px;
  --radius:    16px;
  --radius-sm: 4px;
  --max-w:     1200px;
  --section-py:   120px;
  --section-py-m: 72px;
}

/* ---------- Noise texture overlay ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

/* Everything above the noise */
.topbar, main, .footer { position: relative; z-index: 1; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink-800);
}

h1 {
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

/* ---------- Eyebrow + Mark ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow--gold { color: var(--gold); }
.eyebrow--small { font-size: 0.72rem; }

.mark {
  display: inline-flex;
  align-items: center;
  margin-right: 14px;
  flex-shrink: 0;
}

.mark__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.mark__line {
  width: 32px;
  height: 1px;
  background: var(--line-strong);
  margin-left: 6px;
}

.mark__line--gold {
  background: var(--gold);
  opacity: 0.5;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py-m) 0;
  scroll-margin-top: calc(var(--topbar-h) + 16px);
}

/* Scroll offset for anchor targets */
.tese-bar,
#metodo,
#para-clinicas,
#resultado,
#faq,
#contato {
  scroll-margin-top: calc(var(--topbar-h) + 16px);
}

.section--white {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__title {
  max-width: 820px;
  margin-bottom: 24px;
}

.section__lead {
  max-width: 720px;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 48px;
  line-height: 1.65;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--ink-900);
  color: #fff;
}

.btn--primary:hover {
  background: var(--ink-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(15,18,32,0.18);
}

.btn--outline {
  background: transparent;
  color: var(--ink-800);
  border: 1.5px solid var(--ink-700);
}

.btn--outline:hover {
  border-color: var(--ink-800);
  background: rgba(42,53,84,0.04);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--ink-900);
  font-weight: 700;
  padding: 16px 28px;
}

.btn--gold:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,152,90,0.25);
}

.btn--full { width: 100%; }


/* ==============================================
   TOPBAR
   ============================================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248,246,241,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.topbar--scrolled {
  background: rgba(248,246,241,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}

.topbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

.topbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.topbar__logo-svg {
  height: 28px;
  width: auto;
  display: block;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.topbar__link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-700);
  transition: color 0.2s;
  padding: 4px 0;
}

.topbar__link span {
  position: relative;
}

.topbar__link span::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.topbar__link:hover span::after {
  width: 100%;
}

.topbar__link:hover {
  color: var(--ink-900);
}

.topbar__cta {
  margin-left: 16px;
  font-size: 0.85rem;
  padding: 12px 24px;
  flex-shrink: 0;
}

/* Hamburger */
.topbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}

.topbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.topbar__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topbar__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.topbar__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.topbar__mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.topbar__mobile-nav.open { display: flex; }

.topbar__mobile-link {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-700);
  border-bottom: 1px solid var(--line);
}

.topbar__mobile-cta {
  margin-top: 20px;
  text-align: center;
}


/* ==============================================
   HERO
   ============================================== */
.hero {
  padding-top: calc(var(--topbar-h) + 56px);
  padding-bottom: 40px;
  display: flex;
  align-items: flex-start;
  overflow: clip;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero__content {
  max-width: 600px;
}

.hero__title {
  margin-bottom: 24px;
}

.hero__text {
  color: var(--text-sec);
  margin-bottom: 32px;
  font-size: 1.1rem;
  max-width: 560px;
}

.hero__text p + p { margin-top: 12px; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__micro {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero visual composition */
.hero__visual {
  position: relative;
  padding: 20px;
}

.hero__image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-image);
  aspect-ratio: 4 / 5;
  max-height: 440px;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating stat cards */
.hero__float {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  z-index: 3;
}

.hero__float--bottom {
  bottom: 4px;
  left: -12px;
  max-width: 200px;
  transform: rotate(2deg);
}

.hero__float--top {
  top: 8px;
  right: -4px;
  max-width: 160px;
  transform: rotate(2deg);
}

.hero__float-number {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink-900);
}

.hero__float-symbol {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink-700);
}

.hero__float--top .hero__float-number {
  font-size: 2rem;
}

.hero__float--top .hero__float-symbol {
  font-size: 1rem;
}

.hero__float-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 6px;
}


/* ==============================================
   BARRA DE TESE
   ============================================== */
.tese-bar {
  padding: 0 0 var(--section-py-m);
}

.tese-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.tese-bar__item {
  position: relative;
  padding: 32px 0 28px;
  border-top: 2px solid var(--ink-900);
}

.tese-bar__numeral {
  position: absolute;
  top: 12px;
  right: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--line-strong);
  line-height: 1;
  pointer-events: none;
}

.tese-bar__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  padding-right: 48px;
}

.tese-bar__desc {
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.65;
}


/* ==============================================
   O PROBLEMA REAL
   ============================================== */
.problema__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.problema__image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-image);
  aspect-ratio: 3 / 4;
  max-height: 440px;
}

.problema__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,18,32,0.12);
  pointer-events: none;
}

.problema__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problema__cards {
  margin-top: 40px;
}

.problema__card {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.problema__card:first-child { padding-top: 0; }
.problema__card:last-child { border-bottom: none; }

.problema__card-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 56px;
}

.problema__card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.problema__card-text {
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.65;
}


/* ==============================================
   A NOSSA TESE — DARK SECTION
   ============================================== */
.tese-dark {
  background: var(--ink-900);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.tese-dark__deco-top,
.tese-dark__deco-bottom {
  position: absolute;
  width: 120px;
  height: 1px;
  background: var(--gold);
  opacity: 0.2;
}

.tese-dark__deco-top {
  top: 60px;
  right: 8%;
  transform: rotate(-30deg);
}

.tese-dark__deco-bottom {
  bottom: 60px;
  left: 8%;
  transform: rotate(-30deg);
}

.tese-dark__gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.tese-dark .eyebrow { color: var(--gold); }

.tese-dark__title {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 800;
  color: var(--paper);
  max-width: 840px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.tese-dark__text {
  max-width: 680px;
  color: rgba(248,246,241,0.72);
  font-size: 1.2rem;
  line-height: 1.7;
}


/* ==============================================
   MÉTODO
   ============================================== */
.metodo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 16px;
}

.metodo__card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.metodo__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.metodo__card-bg {
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  color: var(--line);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.metodo__card-title {
  position: relative;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 14px;
  margin-top: 32px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.metodo__card-text {
  position: relative;
  font-size: 1rem;
  color: var(--text-sec);
  line-height: 1.68;
}

.metodo__card-line {
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
  position: relative;
}

.metodo__card-impact {
  position: relative;
  background: var(--paper-warm);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
}

.metodo__card-impact p {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-700);
  line-height: 1.6;
}


/* ==============================================
   ENTREGAS (O que você recebe)
   ============================================== */
.entregas__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.check-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.check-list__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--text-sec);
  line-height: 1.6;
}

.check-list__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Pricing card — DARK */
.pricing-card {
  background: var(--ink-900);
  border-radius: var(--radius);
  padding: 44px 36px;
  box-shadow: var(--shadow-image);
  position: relative;
}

.pricing-card .eyebrow { color: var(--gold); }

.pricing-card__desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-top: 16px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.pricing-card__price {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold-soft);
  line-height: 1.1;
}

.pricing-card__period {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

.pricing-card__divider {
  height: 2px;
  background: var(--gold);
  margin: 28px 0;
  width: 60px;
}

.pricing-card__note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* Entregas image */
.entregas__image {
  margin-top: 64px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-image);
  aspect-ratio: 21 / 9;
}

.entregas__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ==============================================
   PARA QUEM FAZ SENTIDO
   ============================================== */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 8px;
}

.fit-col {
  padding: 48px 36px;
  border-radius: var(--radius);
}

.fit-col--yes {
  background: var(--white);
  border-top: 3px solid var(--ink-900);
}

.fit-col--no {
  background: var(--paper-warm);
  border-top: 3px solid var(--line-strong);
}

.fit-col__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.fit-col__icon {
  display: flex;
  flex-shrink: 0;
}

.fit-col__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fit-col__list li {
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
}

.fit-col__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.fit-col--yes .fit-col__list li::before { background: var(--gold); }
.fit-col--no .fit-col__list li::before { background: var(--line-strong); }


/* ==============================================
   RESULTADO ESPERADO — TIMELINE
   ============================================== */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
  padding-left: 56px;
}

/* Vertical line (mobile-first, will be horizontal on desktop) */
.timeline__line {
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0.35;
}

.timeline__item {
  position: relative;
  padding: 0 0 40px;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__marker {
  position: absolute;
  left: -56px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.timeline__marker span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.timeline__badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline__text {
  color: var(--text-sec);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 10px;
}

.timeline__gain {
  background: var(--paper-warm);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-700);
  line-height: 1.55;
}

.timeline__gain strong {
  font-style: normal;
  font-weight: 600;
  color: var(--ink-900);
}

.disclaimer {
  margin-top: 40px;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 720px;
}

.resultado__image {
  margin-top: 64px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-image);
  aspect-ratio: 21 / 9;
}

.resultado__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ==============================================
   FAQ
   ============================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.faq-grid__image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-image);
  aspect-ratio: 4 / 5;
  max-height: 440px;
}

.faq-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq {
  margin-top: 8px;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item + .faq__item {
  margin-top: 0;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  line-height: 1.3;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 20px;
}

details[open] > .faq__question::after { content: '\2212'; }

.faq__answer {
  padding: 0 0 24px;
  color: var(--text-sec);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 720px;
}


/* ==============================================
   CTA FINAL — DARK
   ============================================== */
.cta-dark {
  background: var(--ink-900);
  padding: var(--section-py-m) 0;
  padding-bottom: calc(var(--section-py-m) + 20px);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.cta__content { max-width: 540px; }

.cta-dark__title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--paper);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.cta__text {
  color: rgba(248,246,241,0.68);
  margin-bottom: 32px;
  line-height: 1.72;
}

.cta__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta__bullets li {
  font-size: 0.95rem;
  color: rgba(248,246,241,0.6);
  padding-left: 18px;
  position: relative;
}

.cta__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Form card */
.form-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 44px 36px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 40px 100px rgba(0,0,0,0.2);
}

.form-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

.form__group { margin-bottom: 18px; }

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-800);
  margin-bottom: 6px;
}

.form__input,
.form__select {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink-800);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form__input:focus,
.form__select:focus {
  outline: none;
  border-color: var(--ink-700);
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A90A3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form .btn { margin-top: 8px; }

.form__disclaimer {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.form-badges {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}


/* ==============================================
   FOOTER — DARK (continues from CTA)
   ============================================== */
.footer {
  background: var(--ink-900);
  padding: 0 0 56px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__logo-svg {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(0.95);
}

.footer__tagline {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(248,246,241,0.5);
}

.footer__heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.5);
  margin-bottom: 16px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  font-size: 0.9rem;
  color: rgba(248,246,241,0.6);
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--paper); }

.footer__link {
  font-size: 0.9rem;
  color: rgba(248,246,241,0.6);
  display: block;
  margin-bottom: 6px;
  transition: color 0.2s;
}

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

.footer__small {
  font-size: 0.85rem;
  color: rgba(248,246,241,0.4);
  line-height: 1.5;
}

.footer__bottom {
  margin-top: 48px;
}

.footer__gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
  opacity: 0.6;
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(248,246,241,0.35);
}


/* ==============================================
   FADE-IN ANIMATION
   ============================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==============================================
   RESPONSIVE
   ============================================== */

/* 640px+ */
@media (min-width: 640px) {
  .tese-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
  }

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

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

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

/* 900px+ */
@media (min-width: 900px) {
  .section {
    padding: var(--section-py) 0;
  }

  .tese-bar { padding-bottom: var(--section-py); }

  .tese-dark {
    padding: 160px 0;
  }

  .cta-dark {
    padding: var(--section-py) 0;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--topbar-h) + 48px);
    padding-bottom: 80px;
    align-items: center;
  }

  .hero__grid {
    grid-template-columns: 55fr 45fr;
    gap: 48px;
    align-items: center;
  }

  .hero__image-wrapper {
    max-height: 520px;
  }

  .tese-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 40px;
  }

  .problema__grid {
    grid-template-columns: 5fr 7fr;
    gap: 64px;
  }

  .problema__image {
    position: sticky;
    top: 120px;
    max-height: 480px;
  }

  .entregas__grid {
    grid-template-columns: 7fr 5fr;
  }

  .cta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .cta__form-wrapper {
    transform: translateY(-20px);
  }

  .faq-grid {
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: start;
  }

  .faq-grid__image {
    position: sticky;
    top: 120px;
  }

  /* Timeline horizontal on desktop */
  .timeline {
    flex-direction: row;
    padding-left: 0;
    gap: 0;
    padding-top: 80px;
  }

  .timeline__line {
    left: 0;
    right: 0;
    top: 23px;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .timeline__item {
    flex: 1;
    padding: 0 20px 0 0;
  }

  .timeline__item:last-child { padding-right: 0; }

  .timeline__marker {
    position: absolute;
    left: 0;
    top: -80px;
    transform: translateX(0);
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .topbar__hamburger { display: none !important; }
}

/* Below 900px: mobile nav + topbar height */
@media (max-width: 899px) {
  :root { --topbar-h: 64px; }

  .topbar__nav { display: none; }
  .topbar__cta { display: none; }
  .topbar__hamburger { display: flex; }
}

/* ==============================================
   MOBILE — fixes (< 640px)
   ============================================== */
@media (max-width: 639px) {
  body { font-size: 1rem; }

  h2 { font-size: clamp(1.6rem, 6.5vw, 2.1rem); }

  .section { padding: 56px 0; }
  .section__lead { font-size: 1.05rem; margin-bottom: 32px; }

  /* Hero */
  .hero {
    padding-top: calc(var(--topbar-h) + 28px);
    padding-bottom: 48px;
  }
  .hero__grid { gap: 24px; }
  .hero__visual { padding: 8px 12px; }
  .hero__float { display: none; }

  /* Tese bar */
  .tese-bar { padding-bottom: 56px; }

  /* Tese dark */
  .tese-dark { padding: 64px 0; }
  .tese-dark__title { font-size: clamp(1.9rem, 7vw, 2.4rem); }
  .tese-dark__text { font-size: 1rem; }

  /* Problema */
  .problema__image {
    aspect-ratio: 16 / 9;
    max-height: 220px;
  }
  .problema__cards { margin-top: 24px; }
  .problema__card { gap: 16px; padding: 20px 0; }
  .problema__card-number { font-size: 2.2rem; min-width: 44px; }

  /* Método */
  .metodo__card { padding: 28px 20px 24px; }
  .metodo__card-title { margin-top: 24px; font-size: 1.15rem; }

  /* Para quem faz sentido */
  .fit-col { padding: 32px 20px; }

  /* Entregas — pricing */
  .pricing-card { padding: 32px 20px; }

  /* FAQ */
  .faq-grid__image { display: none; }
  .faq__question { font-size: 1rem; padding: 18px 0; }

  /* CTA dark */
  .cta-dark { padding: 56px 0; }
  .cta-dark__title { font-size: clamp(1.8rem, 7vw, 2.2rem); }
  .form-card { padding: 28px 20px 24px; }

  /* Footer */
  .footer { padding-bottom: 40px; }
  .footer__grid { padding-top: 32px; gap: 28px; }
}

/* 1200px+ */
@media (min-width: 1200px) {
  .container { padding: 0 40px; }

  .hero__content { max-width: 560px; }

  .hero__float--bottom { left: -24px; }
  .hero__float--top { right: -12px; }

  .hero__image-wrapper {
    max-height: 560px;
  }
}
