/* ==========================================================================
   HKI Air Suspension — Programa de Parcerias
   Implementação de "HKI Landing Page.dc.html"
   ========================================================================== */

:root {
  --bg-900: #050B14;
  --bg-800: #0B1826;
  --panel: #091C2C;
  --icon-well: #0d1f30;
  --accent: #3EC5F1;
  --accent-strong: #25B9E6;
  --grad-cta: linear-gradient(180deg, #7fdcf7, #3EC5F1 55%, #1fa8d4);
  --grad-text: linear-gradient(100deg, #276CA6, #348CCB 50%, #25B9E6 100%);
  --grad-text-deep: linear-gradient(100deg, #0B4F7C, #4F81C1 45%, #3EC5F1 100%);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-900);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--font-display); margin: 0; letter-spacing: -0.02em; text-transform: uppercase; }
p { margin: 0; }
button { font-family: var(--font-body); cursor: pointer; }
input { font-family: var(--font-body); }
a { color: var(--accent); }
a:hover { color: #7fdcf7; }

.container { max-width: 1200px; margin: 0 auto; position: relative; }
.container--narrow { max-width: 1000px; }
.container--faq { max-width: 860px; }

/* Texto com gradiente */
.gt {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.gt--deep { background-image: var(--grad-text-deep); }

/* Grade blueprint de fundo */
.blueprint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(to right, var(--accent) 1px, transparent 1px),
    linear-gradient(to bottom, var(--accent) 1px, transparent 1px);
  background-size: 60px 60px;
}
.blueprint--06 { opacity: 0.06; }
.blueprint--04 { opacity: 0.04; }
.blueprint--50 { background-size: 50px 50px; opacity: 0.07; }
.blueprint--virada {
  opacity: 0.09;
  background-image:
    linear-gradient(to right, #4F81C1 1px, transparent 1px),
    linear-gradient(to bottom, #4F81C1 1px, transparent 1px);
}
.blueprint--form {
  background-image:
    linear-gradient(to right, #284D6B 1px, transparent 1px),
    linear-gradient(to bottom, #284D6B 1px, transparent 1px);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border: 0;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.25s ease, transform 0.25s ease, background 0.25s ease,
    color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn--primary {
  color: #04121b;
  background: var(--grad-cta);
  box-shadow: 0 0 0 1px rgba(62,197,241,0.5), 0 12px 32px -8px rgba(62,197,241,0.55);
}
.btn--primary:hover { filter: brightness(1.06); transform: translateY(-2px); color: #04121b; }
.btn--lg { padding: 16px 32px; }
.btn--xl { padding: 18px 36px; font-size: 14.5px; }
.btn--wide { width: 100%; max-width: 340px; white-space: nowrap; padding: 16px 24px; font-size: 13px; }
.btn--on-light {
  color: #0B1826;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 12px -4px rgba(31,168,212,0.35);
  padding: 17px 40px;
  font-size: 15px;
}
.btn--on-light:hover {
  filter: brightness(1.04);
  box-shadow: 0 6px 16px -4px rgba(31,168,212,0.45);
  color: #0B1826;
}
.btn--ghost {
  padding: 14px 26px;
  font-size: 13px;
  color: #ffffff;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); color: #ffffff; }
.btn--pill-outline {
  padding: 9px 18px;
  font-size: 11.5px;
  color: var(--accent);
  background: rgba(62,197,241,0.08);
  border: 1.5px solid rgba(62,197,241,0.45);
}
.btn--pill-outline:hover { background: rgba(62,197,241,0.18); color: #ffffff; }
.btn--outline-accent {
  padding: 14px 26px;
  font-size: 13px;
  color: var(--accent);
  background: transparent;
  border: 1.5px solid rgba(62,197,241,0.55);
}
.btn--outline-accent:hover { background: rgba(62,197,241,0.12); color: #7fdcf7; }

/* Cabeçalhos de seção */
.section-head { text-align: center; }
.section-head__title {
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}
.section-head__title--faq { font-size: clamp(22px, 3vw, 34px); }
.section-head__sub {
  margin: 16px auto 0;
  max-width: 700px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
}

/* Selo/etiqueta sobre imagens */
.tag-pill {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(62,197,241,0.45);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(5,11,20,0.75);
}

/* Bloco de CTA reutilizado entre seções */
.cta-block { position: relative; text-align: center; margin-top: 52px; padding: 0 24px; }
.cta-block--tight { margin-top: 32px; }
.cta-block__lead { font-size: 16px; font-weight: 600; color: #ffffff; margin-bottom: 18px; }
.cta-block__lead--sm { font-size: 15px; margin-bottom: 16px; }
.cta-block__lead--muted { font-size: 14.5px; color: rgba(255,255,255,0.85); margin-bottom: 16px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 30; background: transparent; }
.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}
.site-header__logo { height: 34px; width: auto; display: block; }

/* ==========================================================================
   Seção 01 — Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-900);
  min-height: 96vh;
  display: flex;
  align-items: center;
  padding: 150px 24px 60px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #050B14 8%, rgba(5,11,20,0.75) 45%, rgba(5,11,20,0.55) 100%);
}
.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 22%, rgba(62,197,241,0.16), transparent 70%);
}
.hero__content { position: relative; z-index: 1; max-width: 885px; margin: 0 auto; text-align: center; }
.hero__title {
  font-size: clamp(32px, 5.6vw, 72px);
  font-weight: 700;
  line-height: 1.06;
  color: #ffffff;
}
.hero__lead {
  margin: 26px auto 0;
  max-width: 600px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  text-transform: none;
}
.hero__lead strong { color: #ffffff; font-weight: 700; }
.hero__ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero__note { margin-top: 22px; font-size: 11px; color: rgba(255,255,255,0.45); }

/* ==========================================================================
   Seção 01C — Indicadores
   ========================================================================== */
.indicadores { position: relative; overflow: hidden; background: var(--bg-900); padding: 12px 24px 96px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.stat-card {
  border-radius: 16px;
  border: 1px solid rgba(62,197,241,0.22);
  background: linear-gradient(180deg, rgba(18,52,83,0.5), rgba(11,24,38,0.9));
  padding: 24px 18px;
  text-align: center;
}
.stat-card__value { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--accent); }
.stat-card__label { margin-top: 8px; font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,0.65); }
.stats-footnote { text-align: center; margin-top: 16px; font-size: 11.5px; color: rgba(255,255,255,0.35); }

/* ==========================================================================
   Seção 02 — Problema
   ========================================================================== */
.problema { position: relative; overflow: hidden; background: var(--bg-900); padding: 96px 24px; }
.problema__grid {
  max-width: 1220px;
  display: grid;
  grid-template-columns: 1.28fr 1fr;
  gap: 48px;
  align-items: center;
}
.problema__title {
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  max-width: 600px;
}
.problema__sub { margin-top: 16px; max-width: 600px; font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.65); }
.problems-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 32px; }
.problem-card {
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(165deg, #12335299, #0a1929);
  border: 1px solid rgba(62,197,241,0.18);
  box-shadow: 0 8px 22px -16px rgba(0,0,0,0.6);
  transition: border-color 0.3s ease;
}
.problem-card:hover { border-color: rgba(62,197,241,0.45); }
.problem-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--icon-well);
  border: 1px solid rgba(255,255,255,0.07);
  color: #ff9863;
  flex: none;
}
.problem-card__bold { margin-top: 14px; font-size: 13px; font-weight: 700; color: #ffffff; letter-spacing: 0.03em; }
.problem-card__rest { margin-top: 6px; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.6); }
.problema__cta { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.problema__whats { display: flex; align-items: flex-start; gap: 8px; }
.problema__whats svg { margin-top: 2px; flex: none; }
.problema__whats span { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.95); }
.problema__figure {
  position: relative;
  aspect-ratio: 4 / 4.6;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(62,197,241,0.3);
  box-shadow: 0 20px 60px -20px rgba(62,197,241,0.35);
}
.problema__figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.problema__figure-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,11,20,0.6), transparent 45%, transparent 70%, rgba(5,11,20,0.4));
}
.problema__figure-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(62,197,241,0.18), transparent 55%);
}

/* ==========================================================================
   Seção 03 — Virada
   ========================================================================== */
.virada {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 65% 90% at 50% 50%, #E4E9EC, #DAE1E6 55%, #D0D8DD 100%);
  padding: 52px 24px;
}
.virada__fade { position: absolute; left: 0; right: 0; height: 110px; pointer-events: none; }
.virada__fade--top { top: 0; background: linear-gradient(180deg, rgba(11,24,38,0.18), transparent); }
.virada__fade--bottom { bottom: 0; background: linear-gradient(0deg, rgba(11,24,38,0.16), transparent); }
.virada__sketch { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.09; pointer-events: none; }
.virada__content { position: relative; max-width: 800px; margin: 0 auto; text-align: center; }
.virada__title {
  font-size: clamp(21px, 2.85vw, 33px);
  font-weight: 700;
  line-height: 1.4;
  color: #132437;
  letter-spacing: -0.01em;
}
.virada__sub {
  margin: 22px auto 0;
  max-width: 660px;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.6;
  color: #25313d;
}
.virada__cta { margin-top: 24px; }

/* ==========================================================================
   Seção 04 — Solução
   ========================================================================== */
.solucao { background: var(--bg-900); padding: 96px 24px; }
.solucao__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.solucao__title { font-size: clamp(26px, 3.6vw, 44px); font-weight: 700; line-height: 1.2; color: #ffffff; }
.solucao__lead { margin-top: 22px; font-size: 16.5px; line-height: 1.75; color: rgba(255,255,255,0.8); max-width: 520px; }
.solucao__claim {
  margin-top: 22px;
  font-size: 17.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  font-family: var(--font-display);
  line-height: 1.55;
  max-width: 540px;
}
.solucao__cta { margin-top: 32px; }
.solucao__showcase {
  position: relative;
  aspect-ratio: 4 / 3.2;
  border-radius: 24px;
  border: 1px solid rgba(62,197,241,0.25);
  background: linear-gradient(180deg, rgba(18,52,83,0.4), rgba(11,24,38,0.9));
  overflow: hidden;
}
.solucao__showcase-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(62,197,241,0.4), transparent 62%);
}
.solucao__products {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 44px 44px;
}
.solucao__product--a {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 20px 36px rgba(0,0,0,0.6)) drop-shadow(0 0 3px rgba(120,200,255,0.5)) drop-shadow(0 0 46px rgba(62,197,241,0.4));
  animation: productCrossfadeA 9s ease-in-out infinite;
}
.solucao__product--b {
  position: absolute;
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 20px 36px rgba(0,0,0,0.6)) drop-shadow(0 0 46px rgba(62,197,241,0.4)) brightness(1.15);
  animation: productCrossfadeB 9s ease-in-out infinite;
}
.tag-pill--product { bottom: 18px; left: 18px; padding: 7px 16px; font-size: 11.5px; letter-spacing: 0.18em; background: rgba(5,11,20,0.8); border-color: rgba(62,197,241,0.5); }
.tag-pill__label { white-space: nowrap; }
.tag-pill__label--a { animation: productCrossfadeA 9s ease-in-out infinite; }
.tag-pill__label--b { position: absolute; animation: productCrossfadeB 9s ease-in-out infinite; opacity: 0; }

@keyframes productCrossfadeA { 0%, 40% { opacity: 1; } 50%, 90% { opacity: 0; } 100% { opacity: 1; } }
@keyframes productCrossfadeB { 0%, 40% { opacity: 0; } 50%, 90% { opacity: 1; } 100% { opacity: 0; } }

/* ==========================================================================
   Seção 05 — Benefícios
   ========================================================================== */
.beneficios { background: var(--bg-800); padding: 88px 24px 64px; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 44px; }
.benefit-card {
  position: relative;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18,52,83,0.5), rgba(11,24,38,0.9));
  border: 1px solid rgba(62,197,241,0.18);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover { border-color: rgba(62,197,241,0.5); box-shadow: 0 8px 22px -14px rgba(62,197,241,0.4); }
.benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--icon-well);
  color: var(--accent);
  flex: none;
}
.benefit-card__bold { margin-top: 14px; font-size: 14.5px; font-weight: 700; color: #ffffff; letter-spacing: 0.02em; }
.benefit-card__rest { margin-top: 6px; font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.62); }

/* ==========================================================================
   Seção 05B — SEMA Show (carrossel coverflow)
   ========================================================================== */
.sema { position: relative; overflow: hidden; background: var(--bg-900); padding: 80px 0; }
.sema__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(62,197,241,0.14), transparent 65%);
  pointer-events: none;
}
.sema__head { max-width: 1240px; padding: 0 24px; text-align: center; }
.sema__title { font-size: clamp(24px, 3.4vw, 40px); font-weight: 700; line-height: 1.2; color: #ffffff; }
.sema__sub { margin: 14px auto 0; max-width: 640px; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.6); }
.sema__carousel-wrap { max-width: 1240px; margin-top: 44px; padding: 0 24px; }
.sema__stage {
  position: relative;
  height: clamp(240px, 60vw, 440px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}
.sema__slide {
  position: absolute;
  width: 640px;
  max-width: 82vw;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(62,197,241,0.35);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease, filter 0.6s ease;
}
.sema__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sema__slide-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,11,20,0.75), transparent 45%); }
.sema__caption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.sema__nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid rgba(62,197,241,0.4);
  background: rgba(62,197,241,0.08);
  color: var(--accent);
  transition: background 0.25s ease;
}
.nav-btn:hover { background: rgba(62,197,241,0.2); }

/* ==========================================================================
   Seção 06 — Prova social
   ========================================================================== */
.prova { position: relative; overflow: hidden; background: var(--bg-900); padding: 96px 24px; }
.prova__title { font-size: clamp(20px, 2.6vw, 30px); font-weight: 700; color: #ffffff; }
.prova .section-head__sub { margin-top: 12px; max-width: 640px; font-size: 14.5px; }
.prova__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 14px; margin-top: 36px; height: 460px; min-height: 0; }
.prova__main {
  position: relative;
  min-height: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(62,197,241,0.4);
  box-shadow: 0 0 60px -10px rgba(62,197,241,0.3);
}
.prova__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prova__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,11,20,0.75), transparent 40%); }
.prova__caption {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}
.prova__caption--sm { bottom: 12px; left: 14px; right: 14px; font-size: 12.5px; }
.prova__side { display: flex; flex-direction: column; gap: 14px; min-height: 0; }
.prova__thumb {
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(62,197,241,0.2);
  opacity: 0.85;
  padding: 0;
  background: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.prova__thumb:hover { opacity: 1; transform: scale(1.02); }
.prova__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ==========================================================================
   Seção 07 — FAQ objeções
   ========================================================================== */
.objecoes { position: relative; overflow: hidden; background: var(--bg-800); padding: 88px 24px; }
.objections-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 44px; }
.objection-card {
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(18,52,83,0.5), rgba(11,24,38,0.9));
  border: 1px solid rgba(62,197,241,0.2);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.objection-card:hover { border-color: rgba(62,197,241,0.5); box-shadow: 0 10px 26px -14px rgba(62,197,241,0.4); }
.objection-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--icon-well);
  color: var(--accent);
  flex: none;
}
.objection-card__q { margin-top: 16px; font-size: 15.5px; font-weight: 700; color: #ffffff; letter-spacing: 0.02em; }
.objection-card__a { margin-top: 10px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.68); }
.objection-card__highlight {
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ==========================================================================
   Seção 09 — FAQ operacional (acordeão)
   ========================================================================== */
.faq { position: relative; overflow: hidden; background: var(--bg-900); padding: 88px 24px; }
.faq .section-head__sub { margin-top: 18px; max-width: 660px; font-size: 14.5px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 44px; }
.faq-item {
  border-radius: 12px;
  overflow: hidden;
  background: #0d1826;
  border: 1px solid rgba(79,129,193,0.18);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.open {
  border-color: rgba(62,197,241,0.55);
  background: linear-gradient(165deg, rgba(24,64,100,0.55), rgba(11,24,38,0.9));
  box-shadow: 0 0 0 1px rgba(62,197,241,0.15), 0 8px 20px -12px rgba(62,197,241,0.35);
}
.faq-item__toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: background 0.25s ease;
}
.faq-item__toggle:hover { background: rgba(255,255,255,0.02); }
.faq-item__q { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: #ffffff; text-transform: uppercase; }
.faq-item__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 9999px;
  background: rgba(62,197,241,0.1);
  color: var(--accent);
  flex: none;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-item__chevron { transform: rotate(180deg); }
.faq-item__body { padding: 2px 20px 18px; }
.faq-item__a { color: rgba(255,255,255,0.68); font-size: 13.5px; line-height: 1.6; }
.faq-item__highlight {
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ==========================================================================
   Seção 11 — Formulário
   ========================================================================== */
.formulario {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #EDF2F5 0%, #DFE8ED 45%, #CFDCE3 75%, #BFCFD8 100%);
  padding: 88px 24px;
}
.formulario__grid {
  max-width: 1220px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
}
.formulario__info { padding-top: 8px; }
.formulario__title { margin-top: 20px; font-size: clamp(26px, 3.2vw, 38px); font-weight: 700; line-height: 1.2; color: #0d2438; }
.formulario__note { margin-top: 10px; font-size: 13px; color: #4a6579; }
.formulario__lead { margin-top: 24px; max-width: 520px; font-size: 15px; line-height: 1.7; color: #33495a; }
.how-it-works { margin-top: 40px; }
.how-it-works__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d2438;
}
.how-it-works__steps { display: flex; flex-direction: column; gap: 22px; margin-top: 20px; }
.how-step { display: flex; gap: 16px; align-items: flex-start; }
.how-step__n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  border: 1.5px solid rgba(37,185,230,0.5);
  color: #1f7fa8;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  flex: none;
}
.how-step__title { font-size: 13.5px; font-weight: 700; color: #0d2438; letter-spacing: 0.02em; }
.how-step__desc { margin-top: 4px; font-size: 13.5px; line-height: 1.55; color: #4a6579; }
.formulario__perks { margin-top: 32px; font-size: 12px; color: #385065; letter-spacing: 0.01em; }
.formulario__perks span { color: var(--accent-strong); }

.partner-form {
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(62,197,241,0.25);
  background: var(--panel);
  padding: 36px;
  box-shadow: 0 30px 70px -24px rgba(9,28,44,0.55);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.partner-form__head { margin-bottom: 4px; }
.partner-form__head h3 { font-size: 17px; font-weight: 700; color: #ffffff; }
.partner-form__head p { margin-top: 6px; font-size: 13px; color: rgba(255,255,255,0.55); }
.field__label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
}
.field__input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  font-size: 14px;
  color: #ffffff;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field__input::placeholder { color: rgba(255,255,255,0.35); }
.field__input:focus { border-color: rgba(62,197,241,0.6); box-shadow: 0 0 0 3px rgba(62,197,241,0.15); }
.field__input--error,
.field__input--error:focus { border-color: rgba(255,138,99,0.85); box-shadow: 0 0 0 3px rgba(255,138,99,0.18); }
.field__error { margin-top: 6px; font-size: 12px; line-height: 1.4; color: #ff9d78; }
.field__error:empty { display: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.partner-form__catalog {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: 16px;
  border: 1px dashed rgba(62,197,241,0.4);
  background: rgba(62,197,241,0.05);
  padding: 16px;
}
.partner-form__catalog-icon { color: var(--accent); flex: none; margin-top: 1px; }
.partner-form__catalog > span:last-child { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.85); }
.partner-form__catalog strong { color: #ffffff; }
.partner-form__submit {
  margin-top: 6px;
  width: 100%;
  padding: 17px;
  font-size: 15px;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.4) inset, 0 10px 28px -6px rgba(62,197,241,0.75), 0 0 40px -6px rgba(62,197,241,0.6);
}
.partner-form__submit:disabled { cursor: not-allowed; transform: none; filter: none; }
.partner-form__hint { text-align: center; font-size: 12px; color: rgba(255,255,255,0.5); }
.partner-form__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, #050B14, #0B1826);
  padding: 56px 24px 32px;
}
.site-footer__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 60% at 85% 40%, rgba(62,197,241,0.14), transparent 70%);
}
.site-footer__grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
.site-footer__logo { height: 30px; width: auto; display: block; }
.site-footer__desc { margin-top: 10px; font-size: 13px; color: rgba(255,255,255,0.5); max-width: 360px; }
.site-footer__copy { margin-top: 18px; font-size: 12px; color: rgba(255,255,255,0.35); }
.site-footer__social { display: flex; gap: 12px; }
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid rgba(62,197,241,0.3);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.social-btn:hover { border-color: rgba(62,197,241,0.7); color: var(--accent); }

/* ==========================================================================
   Página de obrigado
   ========================================================================== */
.thanks { position: relative; overflow: hidden; min-height: 100vh; background: var(--bg-900); color: #ffffff; }
.thanks__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 30%, rgba(62,197,241,0.22), transparent 65%);
}
.thanks__header {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}
.thanks__logo { height: 32px; width: auto; display: block; }
.thanks__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}
.thanks__back:hover { color: #ffffff; }
.thanks__grid {
  display: grid;
  grid-template-columns: minmax(0, 640px);
  justify-content: start;
  gap: 56px;
  align-items: center;
  padding: 64px 24px 96px;
}
.thanks__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(62,197,241,0.45);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(62,197,241,0.1);
}
.thanks__title { margin-top: 24px; font-size: clamp(30px, 5vw, 58px); font-weight: 700; line-height: 1.05; color: #ffffff; }
.thanks__lead { margin-top: 22px; max-width: 520px; font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.8); }
.thanks__lead strong { color: #ffffff; }
.thanks__sub { margin-top: 14px; font-size: 14px; color: rgba(255,255,255,0.55); }
.thanks__ctas { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .problema__grid, .solucao__grid { grid-template-columns: 1fr; gap: 40px; }
  .problema__figure { max-width: 520px; }
  .formulario__grid { grid-template-columns: 1fr; gap: 48px; }
  .thanks__grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 64px; }
}

@media (max-width: 800px) {
  .hero { min-height: 88vh; padding: 130px 20px 52px; }
  .benefits-grid, .objections-grid { grid-template-columns: 1fr; }
  .prova__grid { grid-template-columns: 1fr; height: auto; }
  .prova__main { aspect-ratio: 16 / 10; }
  .prova__side { flex-direction: row; }
  .prova__thumb { aspect-ratio: 16 / 10; }
  .site-footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .problems-cards { grid-template-columns: 1fr; }
  .stats-grid { gap: 12px; }
  .field-row { grid-template-columns: 1fr; }
  .partner-form { padding: 28px 20px; }
  .btn--wide { max-width: 100%; }
  .hero__ctas .btn { width: 100%; }
  .thanks__ctas .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .solucao__product--a, .solucao__product--b,
  .tag-pill__label--a, .tag-pill__label--b { animation: none; }
  .solucao__product--b, .tag-pill__label--b { opacity: 0; }
  .sema__slide { transition: none; }
}
