/**
 * Sala de Dados — Live semanal (Tracking HighEnd)
 * Layout inspirado em funis de live educacional (estrutura clara, fundo claro),
 * com identidade THE: Osmium + Eletrum, Funnel Display, toques de painel de dados.
 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1796D4;
  --blue-dark: #1275A6;
  --blue-deep: #08344A;
  --blue-soft: #E8F4FB;
  --blue-glow: rgba(23, 150, 212, 0.14);

  --green: #58D417;
  --green-dark: #45A812;
  --green-soft: #EEF9E6;

  --red-accent: #C24412;

  --bg: #F5F7FA;
  --bg-white: #FFFFFF;
  --bg-muted: #EEF1F6;

  --ink: #0F172A;
  --ink-soft: #334155;
  --muted: #64748B;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.14);

  --font-display: 'Funnel Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
  --ease: cubic-bezier(0.22, 0.68, 0, 1);

  --countdown-h: 52px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge legado */
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {        /* Chrome/Safari/Edge */
  width: 0;
  height: 0;
  display: none;
}
body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  background-image:
    radial-gradient(ellipse 120% 70% at 50% -15%, rgba(255, 255, 255, 0.9) 0%, transparent 52%),
    radial-gradient(ellipse 55% 45% at 0% 40%, rgba(23, 150, 212, 0.03) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 75%, rgba(23, 150, 212, 0.025) 0%, transparent 50%);
  color: var(--ink-soft);
  line-height: 1.65;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
strong { color: var(--ink); font-weight: 600; }

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 32px);
}
.container-narrow { max-width: 720px; }

/* Evita blowout de grid/flex em painéis estreitos (ex.: browser do Cursor) */
.hero-grid,
.about-grid,
.pains-grid,
.cards-duo,
.quote-card,
.authority-grid {
  width: 100%;
  max-width: 100%;
}
.hero-grid > *,
.about-grid > *,
.pains-grid > *,
.cards-duo > *,
.quote-card > *,
.authority-grid > * {
  min-width: 0;
}
.about-copy h2,
.pains-head h2,
.hero-copy h1 {
  overflow-wrap: break-word;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
}
h1 { font-size: clamp(1.85rem, 4.2vw, 2.75rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); }
h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; }

.hl { color: var(--blue); }
.accent-red { color: var(--red-accent); }

.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;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green); color: #fff; padding: 10px 16px;
  border-radius: 0 0 8px 0; font-weight: 700; z-index: 300;
}
.skip-link:focus { left: 0; }

/* ── Countdown bar ── */
.countdown-bar {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 120;
}
.countdown-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.cb-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countdown { display: flex; gap: 6px; align-items: center; }
.countdown-inline .cd-cell {
  display: flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 4px 10px;
}
.countdown-inline .cd-num {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.countdown-inline .cd-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ── Nav ── */
.bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  position: sticky;
  top: 48px;
  z-index: 110;
}
.bar.scrolled { box-shadow: var(--shadow-sm); }
.bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark { color: var(--blue); flex-shrink: 0; }
.brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}
.brand-text strong { color: var(--blue); font-weight: 700; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  line-height: 1;
}
.btn-cta {
  background: linear-gradient(180deg, #6ee020 0%, var(--green) 55%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(88, 212, 23, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(88, 212, 23, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-cta:active { transform: translateY(0) scale(0.98); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-block { width: 100%; }
.arr { font-size: 1.1em; transition: transform 0.25s var(--ease); }
.btn:hover .arr { transform: translate(3px, -3px); }

.btn-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.reg-form.loading .btn-label { opacity: 0.7; }
.reg-form.loading .btn-spinner { display: inline-block; }

/* ── Hero ── */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 80px);
  background:
    radial-gradient(ellipse 100% 75% at 50% 0%, rgba(255, 255, 255, 0.5) 0%, transparent 58%),
    radial-gradient(ellipse 70% 55% at 100% 100%, rgba(23, 150, 212, 0.035) 0%, transparent 52%),
    #F3F4F7;
  overflow: hidden;
}
.hero-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 24px);
}
.hero-container.container {
  max-width: 1240px;
  padding: 0 clamp(16px, 3vw, 24px);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}
.hero-copy {
  max-width: 500px;
  width: 100%;
  margin-inline: auto;
  padding: clamp(12px, 2vw, 24px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-width: 0;
}
.hero-brand {
  display: block;
  width: min(100%, 340px);
  height: auto;
  margin: 0 0 clamp(14px, 2vw, 20px);
  object-fit: contain;
  object-position: left center;
}
.hero-copy h1 {
  font-size: clamp(1.65rem, 3.6vw, 2.45rem);
}
.hero-sub {
  margin-top: 14px;
  font-size: clamp(0.92rem, 1.35vw, 1.05rem);
  color: var(--muted);
  line-height: 1.55;
}

/* Registration card */
.reg-card {
  margin-top: clamp(18px, 2.5vw, 24px);
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.5vw, 24px);
  box-shadow: var(--shadow-md);
  max-width: 420px;
}
.reg-card-title {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.reg-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.reg-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.reg-benefits svg { color: var(--blue); flex-shrink: 0; margin-top: 1px; }

.reg-form { display: flex; flex-direction: column; gap: 10px; }
.field { display: flex; flex-direction: column; gap: 4px; }
.reg-form input[type="text"],
.reg-form input[type="tel"],
.reg-form input[type="email"] {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #FAFBFC;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.reg-form input::placeholder { color: #94A3B8; }
.reg-form input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.reg-form input[aria-invalid="true"] {
  border-color: var(--red-accent);
  box-shadow: 0 0 0 2px rgba(194, 68, 18, 0.15);
}
.err-msg { font-size: 0.74rem; color: var(--red-accent); display: none; }
.field input[aria-invalid="true"] ~ .err-msg { display: block; }
.reg-footnote {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.reg-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 16px 0;
}
.reg-form.done { display: none; }
.reg-success.show { display: flex; }
.rs-ic {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green-soft);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}
.rs-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--ink); }
.rs-sub { font-size: 0.88rem; color: var(--muted); max-width: 280px; line-height: 1.5; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  line-height: 0;
  align-self: center;
}
.hero-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 560px;
  height: 18%;
  pointer-events: none;
  background: linear-gradient(
    to top,
    #F3F4F7 0%,
    rgba(243, 244, 247, 0.65) 45%,
    transparent 100%
  );
}
.hero-photo {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

@media (max-width: 1100px) {
  .hero {
    height: auto;
    max-height: none;
    overflow: visible;
    padding-top: 0;
  }
  .hero-container {
    width: 100%;
    height: auto;
    display: block;
    padding: 0 clamp(18px, 4vw, 32px);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
  }
  .hero-copy {
    margin-inline: auto;
    max-width: 100%;
    overflow: visible;
    padding: clamp(4px, 1.5vw, 10px) 0 clamp(28px, 6vw, 40px);
  }
  .hero-brand {
    width: min(100%, 280px);
    margin: 0 auto clamp(8px, 2vw, 14px);
    object-position: center center;
  }
  .hero-copy h1 {
    font-size: clamp(1.55rem, 6vw, 2rem);
    text-align: center;
  }
  .hero-copy .hero-sub {
    text-align: center;
  }
  .hero-visual {
    order: -1;
    width: 100%;
    margin-left: 0;
    overflow: visible;
    justify-content: center;
  }
  .hero-visual::after {
    max-width: 440px;
    height: 10%;
  }
  .hero-photo {
    width: min(100%, 440px);
    height: auto;
    max-height: none;
    aspect-ratio: 1122 / 1262;
    object-fit: contain;
    object-position: center center;
  }
  .reg-card { max-width: 100%; }
}

/* Painel estreito real (ex.: browser embutido do Cursor com viewport errado) */
html[data-layout="narrow"] .hero {
  height: auto;
  max-height: none;
  overflow: visible;
  padding-top: 0;
}
html[data-layout="narrow"] .hero-container {
  height: auto;
  display: block;
}
html[data-layout="narrow"] .hero-grid {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  height: auto;
  container-type: normal;
}
html[data-layout="narrow"] .hero-visual {
  order: -1;
  height: auto;
}
html[data-layout="narrow"] .hero-photo {
  width: min(100%, 440px);
  height: auto;
  max-height: none;
  margin-inline: auto;
  aspect-ratio: 1122 / 1262;
  object-fit: contain;
}
html[data-layout="narrow"] .hero-copy {
  overflow: visible;
  max-width: 100%;
}

/* ── Prova social: clientes (banda escura) ── */
.section-clients {
  padding: clamp(40px, 6vw, 68px) clamp(18px, 4vw, 32px);
  background:
    radial-gradient(ellipse 80% 55% at 100% 0%, rgba(255, 255, 255, 0.28) 0%, transparent 50%),
    #F3F4F7;
}
.clients-panel {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(36px, 5vw, 60px) 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(23, 150, 212, 0.20) 0%, transparent 60%),
    linear-gradient(180deg, #0A2A3C 0%, #08344A 48%, #061E2C 100%);
  overflow: hidden;
  box-shadow: 0 30px 70px -34px rgba(8, 52, 74, 0.6);
}
.clients-head {
  max-width: 720px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  padding: 0 clamp(20px, 4vw, 40px);
  text-align: center;
}
.clients-head h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.025em;
}
.clients-head .hl { color: #4FC3F0; }
.clients-sub {
  margin-top: clamp(12px, 2vw, 18px);
  font-size: clamp(0.92rem, 1.35vw, 1.05rem);
  line-height: 1.6;
  color: #9DB4C4;
}

/* Marquee */
.cl-mq-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.cl-mq-fade { display: none; }
.cl-mq-row {
  overflow: hidden;
  padding: 6px 0;
}
.cl-mq-row:hover .cl-mq-track { animation-play-state: paused; }
.cl-mq-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: clMqLeft 52s linear infinite;
}
.cl-mq-track.cl-mq-right { animation: clMqRight 60s linear infinite; }
@keyframes clMqLeft {
  from { transform: translateX(0); } to { transform: translateX(-50%); }
}
@keyframes clMqRight {
  from { transform: translateX(-50%); } to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .cl-mq-track { animation: none; }
}

.cl-mq-card {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, rgba(18, 40, 58, 0.78), rgba(8, 24, 36, 0.72));
  border: 1px solid rgba(79, 195, 240, 0.16);
  border-radius: 18px;
  padding: 14px 22px 14px 14px;
  white-space: nowrap;
  flex-shrink: 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: border-color 0.45s var(--ease), box-shadow 0.45s var(--ease), transform 0.35s var(--ease);
}
.cl-mq-card:hover {
  border-color: rgba(79, 195, 240, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(79, 195, 240, 0.14) inset;
  transform: translateY(-4px);
}
.cl-mq-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(79, 195, 240, 0.12);
  border: 1px solid rgba(79, 195, 240, 0.28);
  padding: 2px;
}
.cl-mq-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.cl-mq-info { display: flex; flex-direction: column; gap: 4px; }
.cl-mq-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.cl-mq-niche {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(157, 180, 196, 0.85);
}

@media (max-width: 640px) {
  .section-clients { padding-left: 0; padding-right: 0; }
  .clients-panel { border-radius: 0; }
  .cl-mq-card { padding: 12px 18px 12px 12px; }
  .cl-mq-avatar-wrap { width: 42px; height: 42px; }
  .cl-mq-name { font-size: 0.92rem; }
}

/* ── Dobra de dores ── */
.section-pains {
  position: relative;
  padding: clamp(56px, 8vw, 88px) 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(255, 255, 255, 0.35) 0%, transparent 55%),
    #F3F4F7;
  overflow: hidden;
}
.pains-head {
  max-width: 780px;
  margin: 0 auto clamp(32px, 5vw, 48px);
  text-align: center;
}
.pains-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.pains-lead {
  margin-top: clamp(14px, 2.5vw, 20px);
  font-size: clamp(1.02rem, 1.65vw, 1.2rem);
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 500;
}
.pains-dek {
  margin-top: clamp(10px, 1.8vw, 14px);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  line-height: 1.6;
  color: var(--muted);
}

.pains-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 16px);
  max-width: 1140px;
  margin: 0 auto;
}
.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(18px, 2.5vw, 22px) clamp(18px, 2.2vw, 24px);
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  min-height: 100%;
}
.pain-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-muted);
  color: var(--muted);
  display: grid;
  place-items: center;
}
.pain-card p {
  font-size: clamp(0.88rem, 1.25vw, 0.96rem);
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
  padding-top: 2px;
}
.pain-card strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 900px) {
  .pains-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .pains-grid {
    grid-template-columns: 1fr;
  }
  .pain-icon {
    width: 40px;
    height: 40px;
  }
  .pain-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ── Não é sua culpa (pattern interrupt escuro) ── */
.section-fault {
  padding: clamp(40px, 6vw, 72px) 0;
  background:
    radial-gradient(ellipse 80% 55% at 0% 50%, rgba(255, 255, 255, 0.28) 0%, transparent 50%),
    #F3F4F7;
}
.fault-panel {
  position: relative;
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 4vw, 64px);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(23, 150, 212, 0.20) 0%, transparent 60%),
    linear-gradient(180deg, #0A2A3C 0%, #08344A 48%, #061E2C 100%);
  color: #CBD9E4;
  overflow: hidden;
  box-shadow: 0 30px 70px -34px rgba(8, 52, 74, 0.6);
}
.fault-head {
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 52px);
  text-align: center;
}
.fault-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4FC3F0;
  margin-bottom: 16px;
}
.fault-head h2 {
  color: #fff;
  font-size: clamp(1.55rem, 3.6vw, 2.4rem);
  line-height: 1.16;
}
.fault-head .hl { color: #4FC3F0; }
.fault-lead {
  margin-top: clamp(16px, 2.5vw, 22px);
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  line-height: 1.6;
  color: #A9BECD;
}

.fault-list {
  list-style: none;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.fault-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(20px, 3vw, 28px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.fault-row:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.10); }
.fault-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.fault-myth {
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  font-style: italic;
  color: #8FA3B3;
  line-height: 1.4;
}
.fault-myth .fault-tag { color: #6A7F90; font-style: normal; }
.fault-truth {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: #EAF2F8;
  line-height: 1.55;
  font-weight: 500;
}
.fault-truth .fault-tag { color: #4FC3F0; }
.fault-arrow {
  color: #4FC3F0;
  display: grid;
  place-items: center;
  opacity: 0.85;
}
.fault-close {
  max-width: 640px;
  margin: clamp(32px, 5vw, 48px) auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .fault-row {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    justify-items: center;
  }
  .fault-arrow { transform: rotate(90deg); justify-self: center; }
}

/* ── A solução: a live (acento verde, motivo de dados) ── */
.section-live {
  padding: clamp(56px, 8vw, 96px) 0;
  background:
    radial-gradient(ellipse 85% 65% at 50% 0%, rgba(255, 255, 255, 0.38) 0%, transparent 56%),
    #F3F4F7;
}
.live-panel {
  position: relative;
}
.live-head {
  max-width: 860px;
  margin: 0 auto clamp(36px, 5vw, 52px);
  text-align: center;
}
.live-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.live-head h2 {
  color: var(--ink);
  font-size: clamp(1.55rem, 3.6vw, 2.4rem);
  line-height: 1.16;
}
.section-live .hl { color: var(--green-dark); }
.live-lead {
  margin-top: clamp(16px, 2.5vw, 22px);
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  line-height: 1.6;
  color: var(--ink-soft);
}

.live-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  max-width: 1180px;
  margin: 0 auto;
}
.live-card {
  position: relative;
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.live-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
/* acento verde inferior (eco do card iluminado por baixo, versão clara) */
.live-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green) 50%, transparent);
}
.live-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, #6ee020 0%, var(--green) 55%, var(--green-dark) 100%);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(88, 212, 23, 0.32);
}
.live-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.live-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .live-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .live-grid { grid-template-columns: 1fr; }
  .live-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .live-num { margin-inline: auto; }
}

/* ── About section ── */
.section-about {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.about-copy p {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.about-copy p + p { margin-top: 14px; }

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

/* ── Info cards ── */
.section-cards {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--bg);
  border-top: 1px dotted var(--line-strong);
}
.cards-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.info-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.info-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.info-card h3 {
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.35;
}
.info-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 680px) {
  .cards-duo { grid-template-columns: 1fr; }
}

/* ── Best section ── */
.section-best {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--bg-white);
}
.best-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.best-head h2 { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 16px; }
.best-head p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.6;
}
.quote-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  max-width: 920px;
  margin: 0 auto;
}
.quote-body {
  padding: clamp(28px, 4vw, 44px);
  position: relative;
}
.quote-mark {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--blue);
  opacity: 0.25;
}
.quote-body p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  position: relative;
  z-index: 1;
}
.quote-author {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: normal;
}
.quote-author::before { content: '— '; }
.quote-photo {
  min-height: 280px;
  border-radius: 0;
  border: none;
  border-left: 1px solid var(--line);
}

@media (max-width: 720px) {
  .quote-card { grid-template-columns: 1fr; }
  .quote-photo { min-height: 220px; border-left: none; border-top: 1px solid var(--line); }
}

/* ── Authority ── */
.section-authority {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--bg);
}
.authority-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.authority-photo-wrap {
  position: relative;
  overflow: hidden;
}
.authority-watermark {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  color: rgba(23, 150, 212, 0.08);
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.ratio-authority { aspect-ratio: 3 / 4; position: relative; z-index: 1; border-radius: var(--radius-lg); }
.auth-lead {
  margin: 16px 0 24px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.auth-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.auth-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.auth-checks svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 860px) {
  .authority-grid { grid-template-columns: 1fr; }
  .authority-watermark { display: none; }
  .ratio-authority { max-width: 320px; margin: 0 auto; }
}

/* ── Final CTA ── */
.section-final {
  padding: clamp(56px, 8vw, 88px) 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(255, 255, 255, 0.55) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-white) 0%, var(--blue-soft) 100%);
}
.final-head {
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 48px);
  text-align: center;
}
.final-head h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.25;
}
.final-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  text-align: center;
}
.final-date {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}
.final-date span { color: var(--blue); }
.final-time {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 4px;
  margin-bottom: 20px;
}
.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  background: var(--bg-muted);
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--blue-deep);
}

.countdown-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.countdown-card .cd-cell {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 6px;
}
.countdown-card .cd-num {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.countdown-card .cd-lbl {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.section-final .reg-form { text-align: left; }

/* Bloco final: vídeo + card lado a lado, mesma altura */
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: clamp(20px, 3.5vw, 40px);
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.final-grid .final-card {
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.final-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  background: #000;
  min-height: 340px;
}
.final-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  aspect-ratio: 16 / 9;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}

@media (max-width: 860px) {
  .final-grid { grid-template-columns: 1fr; }
  .final-video { aspect-ratio: 16 / 9; min-height: 0; }
}

/* ── FAQ ── */
.section-faq {
  padding: clamp(48px, 7vw, 72px) 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 100%, rgba(23, 150, 212, 0.025) 0%, transparent 52%),
    var(--bg-white);
  border-top: 1px solid var(--line);
}
.faq-title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 1.5rem;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--blue);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Footer ── */
.site-footer {
  background: #1A1D26;
  color: #94A3B8;
  padding: 28px 0 36px;
  font-size: 0.78rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-links a {
  color: #CBD5E1;
  text-decoration: none;
}
.footer-links a:hover { color: #fff; }
.footer-disclaimer {
  max-width: 720px;
  margin: 16px auto 0;
  padding: 0 clamp(18px, 4vw, 32px);
  line-height: 1.55;
  font-size: 0.72rem;
  opacity: 0.75;
  text-align: center;
}

/* ── Wireframes ── */
.wf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px dashed var(--line-strong);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(23, 150, 212, 0.03) 0 10px, transparent 10px 20px),
    var(--bg-muted);
  color: var(--muted);
  text-align: center;
  padding: 24px;
  overflow: hidden;
}
.wf svg { opacity: 0.35; }
.wf-cap {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.wf-dim {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: #94A3B8;
}
.ratio-video { aspect-ratio: 16 / 9; width: 100%; border-radius: var(--radius-lg); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn-spinner { animation: none; }
}

@media (max-width: 600px) {
  .bar { top: 44px; }
  .countdown-bar { padding: 10px 0; }
  .cb-label { font-size: 0.68rem; }
  .countdown-inline .cd-num { font-size: 1rem; }
}
