/* ============================================================
   dispareJÁ — Landing Page
   Design system: Inter + alternância light/dark + gradiente verde WhatsApp
   ============================================================ */

:root {
  /* Light tokens REMAPEADOS para dark — a LP agora é 100% escura.
     Mantemos os nomes para que todas as referências existentes
     (cards "brancos", textos, bordas) virem dark automaticamente. */
  --bg-light: #0F172A;        /* fundo das seções (era claro) */
  --white: #1E293B;           /* superfícies/cards (era branco) */
  --text: #FFFFFF;
  --text-mute: #94A3B8;
  --border-light: rgba(255, 255, 255, 0.08);

  /* Dark */
  --bg-dark: #0F172A;
  --bg-dark-2: #0B1120;
  --card-dark: #1E293B;
  --text-dark: #FFFFFF;
  --text-dark-mute: #94A3B8;
  --border-dark: rgba(255, 255, 255, 0.08);

  /* Gradient */
  --g1: #075E54;
  --g2: #128C7E;
  --g3: #25D366;
  --gradient: linear-gradient(135deg, var(--g1) 0%, var(--g2) 55%, var(--g3) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(7,94,84,0.10), rgba(18,140,126,0.10), rgba(37,211,102,0.10));

  /* Radius */
  --r-sm: 8px;
  --r: 10px;
  --r-md: 16px;
  --r-lg: 24px;

  /* Shadow */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.30), 0 1px 2px rgba(0, 0, 0, 0.25);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.30);
  --glow-green: 0 0 0 1px rgba(18, 140, 126, 0.22), 0 8px 40px rgba(18, 140, 126, 0.22);

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;
}

/* ============== Base ============== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.container--narrow { max-width: 980px; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4ADE80;
  margin-bottom: 18px;
}
.eyebrow--dark { color: #4ADE80; }

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn--lg { padding: 14px 26px; font-size: 15px; }
.btn--xl { padding: 18px 32px; font-size: 16px; border-radius: 12px; }

.btn--primary {
  color: #fff;
  background: var(--gradient);
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.30), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn--primary:hover {
  background-position: 100% 50%;
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(18, 140, 126, 0.42), inset 0 1px 0 rgba(255,255,255,0.22);
}

.btn--ghost-light {
  color: var(--text);
  background: transparent;
  border-color: var(--border-light);
}
.btn--ghost-light:hover {
  background: var(--white);
  border-color: rgba(255,255,255,0.18);
}

.btn--ghost-dark {
  color: var(--text-dark);
  background: transparent;
  border-color: var(--border-dark);
}
.btn--ghost-dark:hover {
  background: rgba(255,255,255,0.06);
}

/* ============== NAVBAR ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-light);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
}
.nav__logo--dark { color: var(--text-dark); }
.nav__dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--g2);
  border-radius: 50%;
  margin-left: 4px;
  box-shadow: 0 0 12px rgba(18, 140, 126, 0.5);
}
.nav__links {
  display: flex;
  gap: 32px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mute);
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
  display: flex;
  gap: 10px;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 80px 0 120px;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(7,94,84,0.10), transparent 70%),
    radial-gradient(50% 40% at 10% 30%, rgba(37,211,102,0.08), transparent 70%),
    var(--bg-light);
  overflow: hidden;
}
.hero__bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.55;
}
.hero__bg-blob--a {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(18,140,126,0.35), transparent 70%);
  top: -120px; right: -80px;
}
.hero__bg-blob--b {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(7,94,84,0.30), transparent 70%);
  bottom: -100px; left: -80px;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 22px 0 24px;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero__social {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 8px;
}
.hero__social-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__social-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  opacity: 0.7;
}
.hero__social-body {
  font-size: 15px;
  color: var(--text);
  line-height: 1.4;
}
.hero__avatars {
  display: flex;
  align-items: center;
}
.hero__avatars > span {
  position: relative;
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--bg-light);
  background: var(--white);
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(15, 15, 20, 0.10), 0 0 0 1px rgba(15, 15, 20, 0.06);
  overflow: hidden;
}
.hero__avatars > span:first-child { margin-left: 0; }
.hero__avatars__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__avatars__plus {
  align-items: center;
  justify-content: center;
  background: var(--gradient) !important;
  color: #fff;
  overflow: visible !important;
}
.hero__avatars__plus svg {
  width: 14px;
  height: 14px;
}

/* Badge live */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  box-shadow: var(--shadow-card);
}
.badge__pulse {
  width: 8px; height: 8px;
  background: #10B981;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.badge__sep {
  width: 1px; height: 12px;
  background: var(--border-light);
}
.badge__count {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

/* Floating dashboard */
.hero__dash {
  position: relative;
  perspective: 1400px;
}

/* === Hero dashboard DESATIVADO + hero centralizado === */
/* Para reativar o dash: remova este bloco (o HTML/markup do dash continua intacto). */
.hero__dash { display: none; }
.hero__grid { grid-template-columns: 1fr; justify-items: center; }
.hero__copy { max-width: 760px; margin: 0 auto; text-align: center; }
.hero__sub { margin-left: auto; margin-right: auto; }
.hero__ctas { justify-content: center; }
.hero__social { justify-content: center; }

.dash {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  box-shadow:
    0 30px 80px -20px rgba(7, 94, 84, 0.30),
    0 18px 50px -20px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(15, 15, 20, 0.06);
  overflow: hidden;
  transform: rotate(-1.2deg);
  animation: floaty 8s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: rotate(-1.2deg) translateY(0); }
  50%      { transform: rotate(-1.2deg) translateY(-8px); }
}

.dash__top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #FAFAFB;
  border-bottom: 1px solid var(--border-light);
}
.dash__dots { display: flex; gap: 6px; }
.dash__dots i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #E2E2E6;
  display: block;
}
.dash__dots i:nth-child(1) { background: #FF5F57; }
.dash__dots i:nth-child(2) { background: #FFBD2E; }
.dash__dots i:nth-child(3) { background: #28C840; }
.dash__url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-mute);
  font-weight: 500;
}
.dash__live {
  font-size: 11px;
  font-weight: 600;
  color: #10B981;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dash__live span {
  width: 6px; height: 6px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.dash__body { padding: 20px; display: grid; gap: 16px; }

.dash__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.kpi {
  background: #FAFAFB;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
}
.kpi::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.kpi--a::before { opacity: 0.6; }
.kpi__label { font-size: 11px; color: var(--text-mute); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; position: relative; }
.kpi__num   { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; position: relative; }
.kpi__delta { font-size: 11px; font-weight: 700; position: relative; }
.delta--up  { color: #10B981; }

.dash__chart {
  background: #FAFAFB;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 12px;
}
.chart__head, .heat__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.chart__title { font-size: 12px; font-weight: 600; color: var(--text); }
.chart__tag   { font-size: 10px; color: var(--text-mute); padding: 2px 8px; background: #fff; border-radius: 999px; border: 1px solid var(--border-light); }
.chart__svg   { width: 100%; height: 80px; }

.dash__heatmap {
  background: #FAFAFB;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 12px;
}
.heat__grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 3px;
}
.heat__cell {
  aspect-ratio: 1;
  border-radius: 2px;
  background: #E5E7EB;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 18px 50px -10px rgba(15, 23, 42, 0.18), 0 0 0 1px var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: floaty 7s ease-in-out infinite;
}
.float-card--top {
  top: -22px;
  left: -32px;
  animation-delay: -2s;
}
.float-card--bottom {
  bottom: -28px;
  right: -28px;
  animation-delay: -4s;
}
.float-card__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--gradient);
  display: grid; place-items: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.35);
}
.float-card__num {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.float-card__label {
  font-size: 11px;
  color: var(--text-mute);
}
.float-card__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 38px; height: 38px;
}
.float-card__bars i {
  flex: 1;
  background: var(--gradient);
  border-radius: 2px 2px 0 0;
}

@media (max-width: 980px) {
  .hero { padding: 56px 0 90px; }
  .hero__grid { grid-template-columns: 1fr; gap: 60px; }
  .float-card--top { left: 0; }
  .float-card--bottom { right: 0; }
}

/* ============== Sections base ============== */
.section {
  padding: 110px 0;
  position: relative;
}
.section--light { background: var(--bg-light); }
.dark { background: var(--bg-dark); color: var(--text-dark); }
.dark .section__sub,
.dark .pcard p { color: var(--text-dark-mute); }

.section__head {
  max-width: 740px;
  margin-bottom: 56px;
}
.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  font-weight: 700;
}
.section__title--center { text-align: center; }
.section__sub {
  font-size: 18px;
  color: var(--text-mute);
  margin-top: 18px;
  max-width: 640px;
}
.section__sub--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============== PROBLEMAS ============== */
.problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pcard {
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pcard::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -16px rgba(18, 140, 126, 0.25);
}
.pcard:hover::before { opacity: 0.7; }

.pcard__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.pcard__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  display: inline-block;
  position: relative;
}
.pcard__num::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gradient);
  border-radius: 999px;
  margin-top: 6px;
  opacity: 0.85;
}
.pcard h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.pcard p { font-size: 14px; line-height: 1.6; }

.problems--five {
  grid-template-columns: repeat(5, 1fr);
}

.problems__closing {
  margin: 56px auto 0;
  max-width: 880px;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: -0.005em;
}

@media (max-width: 1100px) {
  .problems--five { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .problems { grid-template-columns: 1fr 1fr; }
  .problems--five { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .problems { grid-template-columns: 1fr; }
  .problems--five { grid-template-columns: 1fr; }
  .problems__closing { font-size: 17px; }
}

/* ============== INSIGHT (pillars) ============== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
  position: relative;
}
.pillars::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--g2), transparent);
  opacity: 0.5;
  z-index: 0;
}
.pillar {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.pillar__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.pillar h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.pillar p  { font-size: 14px; color: var(--text-mute); }

.pillars--lean .pillar {
  padding: 32px 20px;
}
.pillars--lean .pillar__num {
  font-size: 22px;
  margin-bottom: 16px;
}
.pillars--lean .pillar h4 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.015em;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillars::before { display: none; }
}
@media (max-width: 520px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ============== SOLUÇÃO ============== */
.solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.scard {
  background: var(--card-dark);
  border-radius: var(--r-md);
  padding: 32px;
  border: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.scard::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18,140,126,0.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.scard:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-green);
}
.scard__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 18px;
  background: var(--gradient);
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.3);
}
.scard__icon svg { width: 26px; height: 26px; }
.scard__icon--a { background: linear-gradient(135deg, #075E54, #128C7E); box-shadow: 0 8px 24px rgba(7,94,84,0.35); }
.scard__icon--b { background: linear-gradient(135deg, #128C7E, #25D366); }
.scard__icon--c { background: linear-gradient(135deg, #25D366, #4ADE80); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.scard__icon--d { background: linear-gradient(135deg, #0F766E, #14B8A6); box-shadow: 0 8px 24px rgba(20,184,166,0.30); }

.scard__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  position: relative;
}
.scard h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; line-height: 1.35; position: relative; }
.scard p  { font-size: 15px; color: var(--text-dark-mute); margin-bottom: 18px; line-height: 1.6; }

.solution__closing {
  margin: 56px auto 0;
  max-width: 820px;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: -0.005em;
}
@media (max-width: 600px) {
  .solution__closing { font-size: 17px; }
}
.scard__list { display: grid; gap: 8px; }
.scard__list li {
  font-size: 14px;
  color: var(--text-dark);
  padding-left: 22px;
  position: relative;
}
.scard__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gradient);
}

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

/* ============== STEPPER ============== */
.stepper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
  margin-top: 60px;
}
.stepper::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--g1), var(--g2), var(--g3));
  border-radius: 999px;
  opacity: 0.6;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid transparent;
  background-image: linear-gradient(var(--white), var(--white)), var(--gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 16px;
  background: var(--white);
  background-clip: padding-box;
  border: 2px solid;
  border-image: var(--gradient) 1;
  color: #4ADE80;
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.15);
}
.step h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.step p  { font-size: 13.5px; color: var(--text-mute); padding: 0 6px; }

@media (max-width: 900px) {
  .stepper { grid-template-columns: 1fr 1fr; }
  .stepper::before { display: none; }
}
@media (max-width: 520px) {
  .stepper { grid-template-columns: 1fr; }
}

/* ============== ANTES / DEPOIS ============== */
.ba {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 18px;
  align-items: stretch;
}
.ba__col {
  background: var(--card-dark);
  border-radius: var(--r-md);
  padding: 32px;
  border: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}
.ba__col--before {
  background: linear-gradient(180deg, #1F1717, #2A1212);
  border-color: rgba(239, 68, 68, 0.18);
}
.ba__col--before::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(239,68,68,0.10), transparent 60%);
  pointer-events: none;
}
.ba__col--after {
  background: linear-gradient(180deg, #0E2A22, #082018);
  border-color: rgba(18, 140, 126, 0.25);
  box-shadow: 0 0 0 1px rgba(18,140,126,0.15), 0 20px 60px -20px rgba(18, 140, 126, 0.4);
}
.ba__col--after::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(18,140,126,0.18), transparent 60%);
  pointer-events: none;
}
.ba__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  position: relative;
}
.ba__tag--before { background: rgba(239, 68, 68, 0.15); color: #FCA5A5; }
.ba__tag--after  { background: rgba(18, 140, 126, 0.18); color: #86EFAC; }
.ba__col h3 { font-size: 22px; font-weight: 700; margin-bottom: 18px; position: relative; }
.ba__col ul { display: grid; gap: 10px; position: relative; }
.ba__col li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dark);
}
.ba__col--before li span {
  color: #EF4444;
  font-weight: 800;
  flex: 0 0 18px;
}
.ba__col--after li span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  flex: 0 0 18px;
}
.ba__divider {
  display: grid;
  place-items: center;
}
.ba__arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(18, 140, 126, 0.45);
}
@media (max-width: 820px) {
  .ba { grid-template-columns: 1fr; }
  .ba__divider { padding: 4px 0; }
  .ba__arrow { transform: rotate(90deg); }
}

/* ============== STATS / CASE ============== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.stat {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.stat__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.stat__num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  font-size: 14px;
  color: var(--text-mute);
  margin: 10px 0 18px;
}
.stat__caption {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-mute);
  flex: 1;
}
.stat__caption strong {
  color: var(--text);
  font-weight: 700;
}
.stat__bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 6px;
}
.stat__bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gradient);
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat__bar.in-view i { width: var(--w); }
.stat__bar--g i { background: linear-gradient(90deg, #10B981, #25D366); }

/* Featured + accent variants */
.stats--rich {
  grid-template-columns: repeat(3, 1fr);
}
.stat--featured {
  grid-column: span 2;
  grid-row: span 1;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(18, 140, 126, 0.10), transparent 70%),
    radial-gradient(60% 80% at 0% 100%, rgba(7, 94, 84, 0.10), transparent 70%),
    var(--white);
  padding: 36px;
  border-color: rgba(18, 140, 126, 0.18);
  box-shadow: 0 18px 50px -20px rgba(18, 140, 126, 0.30), 0 0 0 1px rgba(18, 140, 126, 0.08);
}
.stat--featured .stat__num {
  font-size: 64px;
}
.stat--featured .stat__caption {
  font-size: 15px;
}
.stat--accent {
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(37, 211, 102, 0.08), transparent 70%),
    var(--white);
  border-color: rgba(37, 211, 102, 0.18);
}

.stats__closing {
  margin: 56px auto 0;
  max-width: 920px;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.005em;
}

@media (max-width: 1100px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .stats, .stats--rich { grid-template-columns: 1fr 1fr; }
  .stat--featured { grid-column: span 2; }
  .stat--featured .stat__num { font-size: 48px; }
}
@media (max-width: 520px) {
  .stats, .stats--rich { grid-template-columns: 1fr; }
  .stat--featured { grid-column: span 1; padding: 28px; }
  .stat--featured .stat__num { font-size: 40px; }
  .stats__closing { font-size: 17px; }
}

.quote {
  margin-top: 64px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.quote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 90px;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.quote blockquote {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 22px;
  padding-left: 14px;
}
.quote blockquote strong { font-weight: 700; }
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-mute);
}
.quote__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}

/* ============== ABOUT ============== */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__lead {
  font-size: 17px;
  color: var(--text-dark);
  margin: 18px 0 14px;
  line-height: 1.65;
}
.about__lead--mute { color: var(--text-dark-mute); }

/* Checklist do bloco Sobre (sobre fundo dark) */
.about__list {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}
.about__list li {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--text-dark);
  font-weight: 500;
}
.about__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(18, 140, 126, 0.3);
}

.about--rich {
  align-items: start;
  margin-bottom: 0;
}
.about__head {
  max-width: 640px;
}
.about__featured {
  background:
    radial-gradient(70% 80% at 0% 0%, rgba(7, 94, 84, 0.22), transparent 70%),
    radial-gradient(70% 80% at 100% 100%, rgba(18, 140, 126, 0.20), transparent 70%),
    var(--card-dark);
  border: 1px solid rgba(18, 140, 126, 0.25);
  border-radius: var(--r-md);
  padding: 36px;
  box-shadow: 0 24px 60px -20px rgba(18, 140, 126, 0.30), 0 0 0 1px rgba(18,140,126,0.10);
  position: relative;
  overflow: hidden;
}
.about__featured::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
}
.about__featured-num {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.about__featured-caption {
  font-size: 15px;
  color: var(--text-dark-mute);
  line-height: 1.55;
  max-width: 320px;
}
.about__featured-caption strong {
  color: var(--text-dark);
  font-weight: 700;
}

.diffs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.dcard {
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.dcard::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 94, 84, 0.16), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  opacity: 0.7;
}
.dcard:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 140, 126, 0.25);
  box-shadow: 0 18px 50px -16px rgba(18, 140, 126, 0.20);
}
.dcard__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 8px 22px rgba(18, 140, 126, 0.30);
  margin-bottom: 18px;
  position: relative;
}
.dcard__icon svg { width: 22px; height: 22px; }
.dcard h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--text-dark);
  position: relative;
}
.dcard p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-dark-mute);
  position: relative;
}

@media (max-width: 1000px) {
  .about--rich { grid-template-columns: 1fr; gap: 36px; }
  .diffs-grid { grid-template-columns: 1fr 1fr; }
  .about__featured-num { font-size: 72px; }
}
@media (max-width: 820px) {
  .about { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .diffs-grid { grid-template-columns: 1fr; }
  .about__featured-num { font-size: 64px; }
}

/* ============== CTA FINAL ============== */
.cta {
  position: relative;
  padding: 120px 0;
  background: var(--bg-light);
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 20% 30%, rgba(7,94,84,0.20), transparent 70%),
    radial-gradient(40% 60% at 80% 70%, rgba(37,211,102,0.18), transparent 70%),
    radial-gradient(40% 60% at 60% 20%, rgba(18,140,126,0.20), transparent 70%);
  pointer-events: none;
}
.cta__card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 72px 56px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(15,15,20,0.04);
}
.cta__card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  padding: 2px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.4;
  pointer-events: none;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 18px 0 18px;
}
.cta__sub {
  font-size: 18px;
  color: var(--text-mute);
  max-width: 640px;
  margin: 0 auto 24px;
}
.cta__deliverables {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  max-width: 560px;
  display: grid;
  gap: 12px;
  text-align: left;
}
.cta__deliverables li {
  font-size: 16px;
  color: var(--text);
  line-height: 1.45;
  padding-left: 4px;
}
.cta__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta__meta {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  color: var(--text-mute);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .cta { padding: 80px 0; }
  .cta__card { padding: 48px 24px; }
}

/* ============== FOOTER ============== */
.footer {
  background: var(--bg-dark-2);
  color: var(--text-dark-mute);
  padding: 64px 0 28px;
  border-top: 1px solid var(--border-dark);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer__brand p {
  margin-top: 14px;
  font-size: 14px;
  max-width: 320px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.footer__cols h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.footer__cols a {
  display: block;
  font-size: 14px;
  color: var(--text-dark-mute);
  margin-bottom: 8px;
  transition: color 0.15s ease;
}
.footer__cols a:hover { color: var(--text-dark); }
.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* ============== DEPOIMENTO EM VÍDEO ============== */
.vquote {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 36px;
  align-items: center;
}
.vquote__video {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  background: #000;
  aspect-ratio: 16 / 9;
}
.vquote__video video { width: 100%; height: 100%; object-fit: cover; }

/* Variante retrato (vídeo vertical 9:16, estilo Reels) */
.vquote--portrait {
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: start;
  gap: 48px;
}
.vquote--portrait .vquote__video {
  aspect-ratio: 9 / 16;
  width: 320px;
  max-width: 100%;
  margin: 0 auto;
}
.vquote__cta { margin-top: 28px; display: inline-flex; }

/* Mural de mensagens (estilo WhatsApp) */
.msgs__title {
  margin: 64px auto 24px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mute);
}
.msgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.msg__bubble {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  border-top-left-radius: 4px;
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
  height: 100%;
}
.msg__bubble p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 12px;
}
.msg__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mute);
}
.msg__check { margin-left: auto; color: #34B7F1; font-style: normal; font-size: 13px; letter-spacing: -2px; }
.vquote__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.vquote__text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.vquote__author strong { display: block; font-size: 16px; }
.vquote__author span { font-size: 14px; color: var(--text-mute); }

/* ============== CALCULADORA ============== */
.calc {
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 36px;
  max-width: 760px;
  margin: 0 auto;
}
.calc__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.calc__field { display: grid; gap: 8px; }
.calc__field span { font-size: 13px; color: var(--text-dark-mute); font-weight: 600; }
.calc__field input {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--r);
  padding: 14px 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.calc__field input:focus { border-color: var(--g3); box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15); }
.calc__field input::placeholder { color: var(--text-dark-mute); opacity: 0.55; font-weight: 400; }
.calc__result {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--r-md);
  background: var(--gradient-soft);
  border: 1px solid var(--border-dark);
  opacity: 0.55;
  transition: opacity 0.3s ease;
}
.calc__result.is-active { opacity: 1; }
.calc__result-label { display: block; font-size: 13px; color: var(--text-dark-mute); font-weight: 600; letter-spacing: 0.04em; }
.calc__result-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin: 8px 0 2px;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.calc__result-unit { font-size: 14px; color: var(--text-dark-mute); }
.calc__result-year { margin-top: 10px; font-size: 16px; color: var(--text-dark); font-weight: 600; }
.calc__result-year span { color: var(--g3); }
.calc__disclaimer {
  margin: 16px auto 0;
  max-width: 520px;
  font-size: 12.5px;
  color: var(--text-dark-mute);
  line-height: 1.55;
}
.calc__cta { margin: 24px auto 0; display: flex; width: -moz-fit-content; width: fit-content; }

/* ============== FECHO ANTES/DEPOIS ============== */
.ba__closing {
  margin: 48px auto 0;
  max-width: 820px;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: -0.005em;
}
@media (max-width: 600px) {
  .ba__closing { font-size: 17px; }
}

/* ============== OFERTA DO RAIO-X (rebuild — mobile-first) ============== */
.ro { max-width: 680px; margin: 0 auto; }
.ro .section__sub strong { color: var(--text); font-weight: 700; }

/* --- Entregáveis do diagnóstico --- */
.ro-cards { list-style: none; display: grid; gap: 14px; margin: 0 0 28px; padding: 0; }
.ro-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-md);
  padding: 20px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.ro-card:hover { border-color: rgba(37, 211, 102, 0.35); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.ro-card__check {
  flex: none; width: 26px; height: 26px; margin-top: 2px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--gradient); color: #fff;
}
.ro-card__check svg { width: 14px; height: 14px; }
.ro-card__body { min-width: 0; }
.ro-card__title {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  line-height: 1.3; color: var(--text);
}
.ro-card__price { display: block; margin: 7px 0 10px; }
.ro-card__price s {
  font-size: 14px; font-weight: 700; color: var(--text-mute);
  text-decoration: line-through;
  text-decoration-color: var(--text-mute);
  text-decoration-thickness: 2px;
  text-underline-offset: 1px;
}
.ro-card__body p { font-size: 15px; line-height: 1.6; color: var(--text-mute); }
.ro-card__body strong { color: var(--text); font-weight: 700; }

/* --- Plano de Ação --- */
.ro-plan {
  background: var(--gradient-soft);
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  margin: 0 0 28px;
}
.ro-plan__topline {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; margin-bottom: 16px;
}
.ro-plan__tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--g3);
}
.ro-plan__price s {
  font-size: 15px; font-weight: 700; color: var(--text-mute);
  text-decoration: line-through; text-decoration-color: var(--text-mute);
  text-decoration-thickness: 2px; text-underline-offset: 1px;
}
.ro-plan__lead { font-size: 16px; line-height: 1.6; color: var(--text); margin-bottom: 12px; }
.ro-plan__heading {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-mute);
  margin: 24px 0 16px;
}
.ro-plan__list { list-style: none; display: grid; gap: 18px; margin: 0; padding: 0; }
.ro-plan__item { display: flex; gap: 12px; align-items: flex-start; }
.ro-plan__check {
  flex: none; width: 22px; height: 22px; margin-top: 2px;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(37, 211, 102, 0.16); color: var(--g3);
}
.ro-plan__check svg { width: 12px; height: 12px; }
.ro-plan__item strong { display: block; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.ro-plan__item p { font-size: 14.5px; line-height: 1.55; color: var(--text-mute); }

/* --- Valor vs. investimento --- */
.ro-value {
  display: grid; gap: 16px; justify-items: center; text-align: center;
  background: var(--card-dark); border: 1px solid var(--border-dark);
  border-radius: var(--r-lg); padding: 26px 22px; margin: 0 0 26px;
}
.ro-value__side { display: grid; gap: 8px; }
.ro-value__label { font-size: 13px; font-weight: 600; color: var(--text-mute); }
.ro-value__total {
  font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--text-mute);
}
.ro-value__total s {
  text-decoration: line-through; text-decoration-color: var(--text-mute);
  text-decoration-thickness: 2px; text-underline-offset: 2px;
}
.ro-value__invest { font-family: var(--font-display); font-size: clamp(32px, 8vw, 40px); font-weight: 800; line-height: 1.05; }
.ro-value__arrow { color: var(--g3); display: grid; place-items: center; transform: rotate(90deg); }
.ro-value__arrow svg { width: 22px; height: 22px; }
.ro-value__note {
  text-align: center; max-width: 520px; margin: 0 auto 26px;
  font-size: 15px; line-height: 1.6; color: var(--text-mute);
}
.ro-value__note strong { color: var(--text); font-weight: 700; }

/* --- Escassez / vagas do mês --- */
.ro-scarcity {
  max-width: 480px; margin: 0 auto 22px; padding: 18px 20px;
  background: var(--card-dark); border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: var(--r-md);
}
.ro-scarcity__row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px;
}
.ro-scarcity__label { font-size: 13px; font-weight: 600; color: var(--text-mute); }
.ro-scarcity__count { font-size: 14px; font-weight: 700; color: var(--text); }
.ro-scarcity__count b { color: var(--g3); }
.ro-scarcity__bar {
  height: 8px; border-radius: 99px; background: rgba(255, 255, 255, 0.08); overflow: hidden;
}
.ro-scarcity__bar i { display: block; height: 100%; width: 80%; border-radius: 99px; background: var(--gradient); }
.ro-scarcity__left {
  display: block; margin-top: 10px; text-align: center;
  font-size: 13px; font-weight: 600; color: var(--text-mute);
}
.ro-scarcity__left strong { color: var(--g3); }

/* --- Por que é gratuito --- */
.ro-why { text-align: center; max-width: 560px; margin: 0 auto 26px; }
.ro-why__q { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.ro-why p { font-size: 15px; line-height: 1.65; color: var(--text-mute); }
.ro-why strong { color: var(--g3); }

/* --- CTA --- */
.ro-cta { margin: 0 auto 14px; display: flex; width: -moz-fit-content; width: fit-content; }
.ro-guarantee { text-align: center; font-size: 13px; color: var(--text-mute); line-height: 1.7; }

/* --- Acima de 600px: cards e caixa de valor ganham respiro / layout lado a lado --- */
@media (min-width: 600px) {
  .ro-card { padding: 24px 26px; gap: 16px; }
  .ro-plan { padding: 32px 30px; }
  .ro-value {
    grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; padding: 30px 36px;
  }
  .ro-value__arrow { transform: none; }
  .ro-value__total { font-size: 26px; }
}

/* ============== O QUE VOCÊ VAI DESCOBRIR ============== */
.disc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.disc-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.disc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.disc-card__mark {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.3);
}
.disc-card p { font-size: 16px; line-height: 1.5; color: var(--text); font-weight: 500; }
.disc-card--cta {
  background: var(--gradient-soft);
  border-color: rgba(18, 140, 126, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.disc-card--cta p { font-size: 17px; }

/* Lista com checks (bloco 10) */
.disc-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.disc-list li {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 18px 22px 18px 58px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
  box-shadow: var(--shadow-card);
}
.disc-list li strong { font-weight: 700; }
.disc-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(18, 140, 126, 0.3);
}

.disc-close {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  background: var(--gradient-soft);
  border: 1px solid rgba(18, 140, 126, 0.25);
  border-radius: var(--r-md);
  padding: 32px 28px;
}
.disc-close p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 20px;
}
.disc-close strong { font-weight: 700; }

@media (max-width: 520px) {
  .disc-list li { font-size: 15px; padding: 16px 18px 16px 52px; }
  .disc-close { padding: 24px 20px; }
  .disc-close p { font-size: 16px; }
}

/* ============== FAQ ============== */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item {
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 26px;
  line-height: 1;
  color: var(--g3);
  font-weight: 400;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 24px 22px;
  color: var(--text-dark-mute);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 920px) {
  .vquote { grid-template-columns: 1fr; }
  .vquote--portrait { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .vquote--portrait .vquote__side { display: flex; flex-direction: column; align-items: center; }
  .disc { grid-template-columns: repeat(2, 1fr); }
  .msgs { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  .calc { padding: 24px; }
  .calc__inputs { grid-template-columns: 1fr; }
  .disc { grid-template-columns: 1fr; }
}

/* ============== MODAL ============== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.40), 0 0 0 1px rgba(15,15,20,0.04);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
}
.modal__dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.4;
  pointer-events: none;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--text-mute);
  transition: color 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
  z-index: 1;
}
.modal__close svg { width: 16px; height: 16px; }
.modal__close:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.20);
  transform: rotate(90deg);
}

.modal__head { margin-bottom: 24px; }
.modal__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: 10px;
}
.modal__head h3 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.modal__head p {
  font-size: 14.5px;
  color: var(--text-mute);
  line-height: 1.5;
}

.modal__form {
  display: grid;
  gap: 16px;
}
.field { display: grid; gap: 6px; }
.field__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.field input {
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: var(--r);
  border: 1px solid var(--border-light);
  background: var(--bg-dark-2);
  color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.field input::placeholder { color: #64748B; }
.field input:focus {
  outline: none;
  border-color: var(--g2);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(18, 140, 126, 0.15);
}
.field input.is-invalid {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.12);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}
.field__error {
  display: none;
  font-size: 12px;
  color: #DC2626;
  font-weight: 500;
}
.field__error.is-visible { display: block; }

.modal__submit {
  margin-top: 6px;
  justify-content: center;
  position: relative;
}
.modal__submit-loading {
  display: none;
  align-items: center;
  gap: 8px;
}
.modal__submit.is-loading .modal__submit-label { display: none; }
.modal__submit.is-loading .modal__submit-loading { display: inline-flex; }
.modal__submit.is-loading {
  pointer-events: none;
  opacity: 0.85;
}
.spinner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.modal__meta {
  text-align: center;
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 4px;
}

.modal__success {
  display: none;
  text-align: center;
  padding: 12px 0 4px;
}
.modal__success.is-visible { display: block; }
.modal__success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid;
  place-items: center;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 14px 36px rgba(18, 140, 126, 0.35);
}
.modal__success-icon svg { width: 28px; height: 28px; }
.modal__success h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.modal__success p {
  font-size: 14.5px;
  color: var(--text-mute);
  margin-bottom: 22px;
  line-height: 1.55;
}
.modal__success-actions {
  display: grid;
  gap: 10px;
}
.btn--whats {
  color: #fff;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32), inset 0 1px 0 rgba(255,255,255,0.18);
  justify-content: center;
}
.btn--whats:hover {
  background: linear-gradient(135deg, #2EE16F 0%, #149887 100%);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.42), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn--whats svg {
  width: 20px;
  height: 20px;
  margin-right: 2px;
}

.modal__form.is-hidden { display: none; }
.modal__head.is-hidden { display: none; }

body.modal-open { overflow: hidden; }

@media (max-width: 520px) {
  .modal { padding: 16px; }
  .modal__dialog { padding: 28px 22px; border-radius: 16px; }
  .modal__head h3 { font-size: 22px; }
}

/* ============== Reveal-on-scroll ============== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* Failsafe: usuários com "reduzir movimento" não dependem do JS de reveal —
   o conteúdo crítico (título da oferta etc.) aparece sempre. */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   04b — DEMO ANIMADA (disparo → atendimento)
   Namespaced sob .dj-* / .s1-* / .s2-* p/ não colidir com a LP.
   Reusa os tokens já definidos no :root acima.
   ============================================================ */
.section--demo { overflow: hidden; }
.dj-demo-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}
.dj-demo-blob--a {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(18,140,126,0.22), transparent 70%);
  top: -140px; right: -100px;
}
.dj-demo-blob--b {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,211,102,0.18), transparent 70%);
  bottom: -120px; left: -100px;
}

.dj-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: clamp(28px, 5vw, 72px);
}
.dj-screen { flex: 1 1 0; min-width: 0; display: flex; }

/* Cromo de janela (compartilhado) */
.dj-win {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(7,94,84,.28),
    0 18px 50px -20px rgba(15,23,42,.16),
    0 0 0 1px rgba(15,15,20,.06);
}
.dj-win__top {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 15px; background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}
.dj-dots { display: flex; gap: 6px; }
.dj-dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.dj-dots i:nth-child(1) { background: #FF5F57; }
.dj-dots i:nth-child(2) { background: #FFBD2E; }
.dj-dots i:nth-child(3) { background: #28C840; }
.dj-win__url { flex: 1; text-align: center; font-size: 11.5px; color: var(--text-mute); font-weight: 500; }
.dj-win__live { font-size: 10.5px; font-weight: 600; color: #10B981; display: inline-flex; align-items: center; gap: 5px; }
.dj-win__live span { width: 6px; height: 6px; background: #10B981; border-radius: 50%; animation: pulse 1.8s infinite; }
.dj-win__body { position: relative; flex: 1; padding: 18px; display: flex; flex-direction: column; }

/* ===== TELA 1 — DISPARADOR ===== */
.s1-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.s1-head h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: -.01em; }
.s1-pill {
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em; padding: 4px 9px; border-radius: 999px;
  background: var(--gradient-soft); color: #86EFAC; border: 1px solid rgba(18,140,126,.30);
}
.s1-new {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-family: var(--font); font-size: 13px; font-weight: 600; color: #fff;
  padding: 10px 16px; border: none; border-radius: 10px; cursor: default;
  background: var(--gradient); background-size: 200% 200%; background-position: 0% 50%;
  box-shadow: 0 6px 18px rgba(18,140,126,.28), inset 0 1px 0 rgba(255,255,255,.18);
  margin-bottom: 16px;
}
.s1-new svg { width: 15px; height: 15px; }
.s1-form { display: flex; flex-direction: column; gap: 13px; flex: 1; }
.s1-field {
  opacity: 0; transform: translateY(8px);
  transition: opacity .45s ease, transform .45s cubic-bezier(.16,1,.3,1);
}
.s1-field.is-on { opacity: 1; transform: none; }
.s1-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-mute);
  margin-bottom: 7px;
}
.s1-label .n { width: 16px; height: 16px; border-radius: 5px; display: grid; place-items: center; font-size: 9px; font-weight: 800; color: #fff; background: var(--gradient); }
.s1-box {
  border: 1px solid var(--border-light); border-radius: 11px; background: rgba(255, 255, 255, 0.03);
  padding: 12px 13px; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.s1-box.is-active { border-color: var(--g2); background: rgba(255, 255, 255, 0.06); box-shadow: 0 0 0 3px rgba(18,140,126,.13); }
.s1-msg { font-size: 13px; line-height: 1.5; color: var(--text); min-height: 42px; }
.s1-msg .caret { display: inline-block; width: 2px; height: 14px; background: var(--g2); vertical-align: -2px; margin-left: 1px; animation: dj-blink 1s steps(1) infinite; }
@keyframes dj-blink { 50% { opacity: 0; } }

.s1-contacts { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.s1-count { display: flex; align-items: baseline; gap: 6px; }
.s1-count b { font-family: var(--font-display); font-size: 21px; font-weight: 800; letter-spacing: -.02em; }
.s1-count span { font-size: 12px; color: var(--text-mute); }
.s1-check { width: 22px; height: 22px; border-radius: 50%; background: var(--gradient); display: grid; place-items: center; color: #fff; transform: scale(0); transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
.s1-check.is-on { transform: scale(1); }
.s1-check svg { width: 12px; height: 12px; }
.s1-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.s1-chip {
  font-size: 11px; font-weight: 600; color: #86EFAC; padding: 3px 9px; border-radius: 999px;
  background: rgba(18,140,126,.12); border: 1px solid rgba(18,140,126,.24);
  opacity: 0; transform: translateY(4px); transition: opacity .3s ease, transform .3s ease;
}
.s1-chip.is-on { opacity: 1; transform: none; }
.s1-fire {
  margin-top: auto;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-size: 14px; font-weight: 700; color: #fff;
  padding: 13px 18px; border: none; border-radius: 12px; cursor: default; width: 100%;
  background: var(--gradient); background-size: 200% 200%; background-position: 0% 50%;
  box-shadow: 0 8px 22px rgba(18,140,126,.32), inset 0 1px 0 rgba(255,255,255,.2);
  transition: background-position .5s ease;
}
.s1-fire svg { width: 16px; height: 16px; }
.s1-progress { margin-top: 12px; height: 7px; border-radius: 999px; background: rgba(255, 255, 255, 0.10); overflow: hidden; opacity: 0; transition: opacity .3s ease; }
.s1-progress.is-on { opacity: 1; }
.s1-progress i { display: block; height: 100%; width: 0; background: var(--gradient); border-radius: 999px; }
.s1-progress-label { margin-top: 7px; font-size: 11px; color: var(--text-mute); text-align: center; opacity: 0; transition: opacity .3s ease; }
.s1-progress-label.is-on { opacity: 1; }

.s1-metrics {
  position: absolute; inset: 18px; display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transform: scale(.98);
  transition: opacity .5s ease, transform .5s cubic-bezier(.16,1,.3,1);
}
.s1-metrics.is-on { opacity: 1; transform: none; }
.s1-metrics .s1-head { margin-bottom: 16px; }
.s1-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 1; }
.s1-kpi {
  position: relative; overflow: hidden;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-light); border-radius: 13px; padding: 14px;
  display: flex; flex-direction: column; gap: 3px; justify-content: center;
}
.s1-kpi--lead::before { content: ""; position: absolute; inset: 0; background: var(--gradient-soft); opacity: .7; }
.s1-kpi span { position: relative; font-size: 10.5px; color: var(--text-mute); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.s1-kpi b { position: relative; font-family: var(--font-display); font-size: 25px; font-weight: 800; letter-spacing: -.02em; line-height: 1.05; }
.s1-kpi em { position: relative; font-size: 10.5px; font-weight: 700; font-style: normal; color: #10B981; }

/* ===== TELA 2 — ATENDIMENTO ===== */
.dj-win--chat .dj-win__top { background: linear-gradient(135deg,#0c5249,#0a3f38); border-bottom-color: rgba(255,255,255,.08); }
.dj-win--chat .dj-win__url { color: rgba(255,255,255,.65); }
.s2-head {
  display: flex; align-items: center; gap: 11px; padding: 13px 16px;
  background: linear-gradient(135deg, var(--g1), var(--g2)); color: #fff; flex-shrink: 0;
}
.s2-ava { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; flex-shrink: 0; }
.s2-ava svg { width: 20px; height: 20px; }
.s2-head__txt { flex: 1; min-width: 0; }
.s2-head__txt b { display: block; font-size: 14px; font-weight: 700; }
.s2-head__txt span { font-size: 11.5px; color: rgba(255,255,255,.8); display: inline-flex; align-items: center; gap: 5px; }
.s2-head__txt span i { width: 6px; height: 6px; border-radius: 50%; background: #86EFAC; }
.s2-badge {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  background: #fff; color: var(--g1); padding: 3px 11px; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.18); white-space: nowrap;
}
.s2-list { flex: 1; overflow: hidden; position: relative; background: var(--card-dark); display: flex; flex-direction: column; }
.s2-row {
  display: flex; align-items: center; gap: 11px; padding: 13px 16px;
  border-bottom: 1px solid var(--border-light);
  opacity: 0; transform: translateX(14px);
  transition: opacity .4s ease, transform .45s cubic-bezier(.16,1,.3,1), background .3s ease;
}
.s2-row.is-on { opacity: 1; transform: none; }
.s2-row.is-fresh { background: rgba(37,211,102,.07); }
.s2-row__ava {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 14px;
  font-family: var(--font-display);
}
.s2-row__body { flex: 1; min-width: 0; }
.s2-row__line1 { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.s2-row__name { font-size: 13.5px; font-weight: 700; color: var(--text); }
.s2-row__time { font-size: 10.5px; color: var(--text-mute); flex-shrink: 0; }
.s2-row__msg { font-size: 12.5px; color: var(--text-mute); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.s2-row.is-fresh .s2-row__msg { color: var(--text); font-weight: 500; }
.s2-row__unread {
  flex-shrink: 0; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 999px;
  background: var(--g3); color: #fff; font-size: 11px; font-weight: 800;
  display: grid; place-items: center;
  transform: scale(0); transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.s2-row__unread.is-on { transform: scale(1); }
.s2-typing { display: inline-flex; gap: 3px; align-items: center; height: 14px; }
.s2-typing i { width: 5px; height: 5px; border-radius: 50%; background: var(--text-mute); animation: dj-typing 1.2s infinite; }
.s2-typing i:nth-child(2) { animation-delay: .2s; }
.s2-typing i:nth-child(3) { animation-delay: .4s; }
@keyframes dj-typing { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-3px); opacity: 1; } }
.s2-empty {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 24px;
  color: var(--text-mute); transition: opacity .4s ease;
}
.s2-empty svg { width: 34px; height: 34px; opacity: .4; }
.s2-empty span { font-size: 13px; max-width: 200px; line-height: 1.5; }

/* ===== Bolhas voadoras (assinatura) ===== */
.dj-fly { position: absolute; inset: 0; pointer-events: none; overflow: visible; z-index: 30; }
.dj-bubble {
  position: absolute; top: 0; left: 0;
  width: 26px; height: 26px; border-radius: 13px 13px 13px 3px;
  background: var(--gradient);
  box-shadow: 0 6px 16px rgba(18,140,126,.4);
  display: grid; place-items: center; color: #fff;
  transform: translate(0,0) scale(.4); opacity: 0;
  will-change: transform, opacity;
}
.dj-bubble svg { width: 13px; height: 13px; }
.dj-bubble.go { animation: dj-fly var(--dur, 1100ms) cubic-bezier(.45,.05,.4,1) forwards; }
@keyframes dj-fly {
  0%   { transform: translate(0,0) scale(.4); opacity: 0; }
  12%  { opacity: 1; transform: translate(calc(var(--dx) * .1), calc(var(--dy) * .1 - 24px)) scale(1); }
  85%  { opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(.55); opacity: 0; }
}

/* ===== Cursor fantasma ===== */
.dj-cursor {
  position: absolute; top: 0; left: 0; z-index: 40; pointer-events: none;
  width: 24px; height: 24px; transform: translate(-50%,-50%) scale(1);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
  transition: left .7s cubic-bezier(.4,0,.2,1), top .7s cubic-bezier(.4,0,.2,1), transform .15s ease;
  opacity: 0;
}
.dj-cursor.is-on { opacity: 1; }
.dj-cursor.click { transform: translate(-50%,-50%) scale(.78); }
.dj-ripple {
  position: absolute; z-index: 39; pointer-events: none;
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--g2);
  transform: translate(-50%,-50%) scale(.3); opacity: 0;
}
.dj-ripple.go { animation: dj-ripple .55s ease-out forwards; }
@keyframes dj-ripple {
  0%   { opacity: .7; transform: translate(-50%,-50%) scale(.3); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(2.6); }
}

/* ===== Responsivo: empilha vertical no mobile ===== */
@media (max-width: 860px) {
  .dj-stage { flex-direction: column; gap: 38px; max-width: 440px; }
  .dj-screen { width: 100%; }
  .dj-win__body { min-height: 330px; }
  .s2-list { min-height: 300px; }
}

/* ===== Reduced motion: estado final estático ===== */
@media (prefers-reduced-motion: reduce) {
  .dj-cursor, .dj-fly, .s1-progress { display: none !important; }
  .s1-field { opacity: 1; transform: none; }
}

/* ============================================================
   MOBILE OPTIMIZATION PASS
   Escala responsiva global + ajustes de navbar, hero e CTAs.
   Apêndice de propósito: fica por último para vencer em ordem de
   origem, sem precisar reescrever os media queries espalhados acima.
   ============================================================ */

/* --- Escala vertical das seções (antes nunca reduzia no mobile) --- */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero    { padding: 48px 0 64px; }
  .cta     { padding: 64px 0; }
  .section__head { margin-bottom: 36px; }
  .problems__closing,
  .solution__closing,
  .stats__closing { margin-top: 36px; }
}
@media (max-width: 520px) {
  .section { padding: 48px 0; }
  .hero    { padding: 40px 0 52px; }
  .cta     { padding: 52px 0; }
}

/* --- Laterais do container (antes fixas em 28px) --- */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
}
@media (max-width: 380px) {
  .container { padding: 0 16px; }
}

/* --- Navbar mobile: mantém só o CTA primário (ghost some) --- */
@media (max-width: 900px) {
  .nav__cta .btn--ghost-light { display: none; }
}
@media (max-width: 520px) {
  .nav__inner { height: 62px; }
  .nav__cta .btn--primary { padding: 10px 15px; font-size: 13px; }
}

/* --- Títulos: remove quebras forçadas + escala melhor no mobile --- */
@media (max-width: 600px) {
  .hero__title { font-size: clamp(30px, 8.5vw, 44px); }
  .hero__title br,
  .section__title br,
  .cta__title br { display: none; }
  .hero__sub,
  .section__sub { font-size: 16px; }
  .hero__grid { gap: 40px; }
}

/* --- Hero: esconde float-cards no mobile (dados repetidos adiante)
       — elimina a sobreposição sobre os KPIs do dashboard --- */
@media (max-width: 600px) {
  .float-card { display: none; }
}

/* --- CTAs empilhados e full-width no mobile (tap + leitura) --- */
@media (max-width: 520px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .cta__buttons { flex-direction: column; }
  .cta__buttons .btn { width: 100%; justify-content: center; }
}

/* --- Tap targets mínimos de ~46px no mobile --- */
@media (max-width: 768px) {
  .btn { min-height: 46px; }
}

/* ============================================================
   LIVENESS PASS — vida no tema dark
   (1) bolhas no hero + drift dos blobs
   (2) profundidade + glow + spotlight nos cards
   (3) ritmo entre seções (tom alternado + divisor hairline)
   ============================================================ */

/* ---------- (3) Ritmo entre seções ---------- */
.dark { background: #0B1120; }              /* seções escuras com tom mais profundo */
.section::before {                           /* divisor hairline em gradiente no topo */
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 90%);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(18, 140, 126, .40), transparent);
  opacity: .6;
  pointer-events: none;
}

/* ---------- (2) Profundidade + glow nos cards ---------- */
/* luz superior sutil — "iluminado de cima" */
.pcard, .scard, .dcard, .pillar, .stat, .disc-card, .msg__bubble, .faq__item {
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, .05);
}
/* spotlight verde seguindo o mouse (cards de fundo sólido) */
.pcard, .scard, .dcard, .pillar, .msg__bubble, .faq__item {
  background-image: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, -240%),
    rgba(37, 211, 102, .10), transparent 60%);
}
/* glow no hover dos cards que ainda não tinham */
.pillar:hover, .stat:hover, .disc-card:hover, .msg__bubble:hover {
  border-color: rgba(18, 140, 126, .35);
  box-shadow: 0 18px 50px -16px rgba(18, 140, 126, .30), inset 0 1px 0 rgba(255, 255, 255, .07);
}
.msg__bubble { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.msg__bubble:hover { transform: translateY(-3px); }
.faq__item { transition: border-color .2s ease; }
.faq__item:hover { border-color: rgba(18, 140, 126, .30); }

/* ---------- (1) Hero: bolhas subindo + drift dos blobs ---------- */
.hero__bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bubble {
  position: absolute;
  bottom: -50px;
  width: var(--s, 28px);
  height: var(--s, 28px);
  border-radius: 14px 14px 14px 4px;
  background: var(--gradient);
  box-shadow: 0 8px 30px rgba(18, 140, 126, .35);
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  will-change: transform, opacity;
  animation: hero-rise var(--dur, 10s) linear forwards;
}
.hero-bubble svg { width: 50%; height: 50%; opacity: .9; }
@keyframes hero-rise {
  0%   { transform: translate(0, 0) scale(.5); opacity: 0; }
  12%  { opacity: var(--op, .35); }
  85%  { opacity: var(--op, .35); }
  100% { transform: translate(var(--drift, 0), calc(-1 * var(--rise, 85vh))) scale(1); opacity: 0; }
}
.hero__bg-blob--a { animation: blob-drift-a 19s ease-in-out infinite; }
.hero__bg-blob--b { animation: blob-drift-b 23s ease-in-out infinite; }
@keyframes blob-drift-a {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-34px, 28px); }
}
@keyframes blob-drift-b {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(30px, -26px); }
}

/* ---------- Reduced motion: desliga o que se move ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero__bubbles { display: none; }
  .hero__bg-blob--a, .hero__bg-blob--b { animation: none; }
  .hero-bubble { animation: none; display: none; }
}

/* ============================================================
   AURORA BACKGROUND — fundo vivo durante todo o scroll
   Layer fixo atrás de tudo; as seções ficam translúcidas para
   a aurora "vazar". Drift ambiente (keyframes) + parallax leve
   ligado ao scroll via --py (JS).
   ============================================================ */
html { background: #0a0e1c; }          /* base mais profunda (sempre atrás) */
body { background: transparent; }      /* deixa a aurora aparecer */

.bg-aurora {
  position: fixed;
  inset: -12vh -12vw;                  /* sangra além da viewport p/ o parallax */
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  transform: translate3d(0, var(--py, 0px), 0);
  will-change: transform;
}
.aurora-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .95;
}
.ribbon {
  fill: none;
  stroke-width: 9;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}
.r1 { animation: ribbon-1 30s ease-in-out infinite; }
.r2 { animation: ribbon-2 38s ease-in-out infinite; }
.r3 { animation: ribbon-3 34s ease-in-out infinite; }
.r4 { animation: ribbon-4 42s ease-in-out infinite; }
.r5 { animation: ribbon-5 36s ease-in-out infinite; }
@keyframes ribbon-1 {
  0%, 100% { transform: translate(0, 0) scaleY(1); }
  50%      { transform: translate(-40px, 34px) scaleY(1.25); }
}
@keyframes ribbon-2 {
  0%, 100% { transform: translate(0, 0) scaleY(1.1); }
  50%      { transform: translate(50px, -30px) scaleY(0.85); }
}
@keyframes ribbon-3 {
  0%, 100% { transform: translate(0, 0) scaleY(0.95); }
  50%      { transform: translate(-36px, -40px) scaleY(1.2); }
}
@keyframes ribbon-4 {
  0%, 100% { transform: translate(0, 0) scaleY(1); }
  50%      { transform: translate(44px, 38px) scaleY(1.15); }
}
@keyframes ribbon-5 {
  0%, 100% { transform: translate(0, 0) scaleY(1.05); }
  50%      { transform: translate(-30px, 30px) scaleY(0.9); }
}

/* Seções translúcidas: as fitas vazam na página inteira */
.hero {
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(7, 94, 84, 0.10), transparent 70%),
    radial-gradient(50% 40% at 10% 30%, rgba(37, 211, 102, 0.08), transparent 70%),
    transparent;
}
.section--light { background: rgba(15, 23, 42, 0.46); }
.dark           { background: rgba(9, 14, 30, 0.52); }
.cta            { background: transparent; }

/* Reduced motion: aurora estática (sem fluxo nem parallax) */
@media (prefers-reduced-motion: reduce) {
  .bg-aurora { transform: none !important; }
  .ribbon { animation: none; }
}

/* ============================================================
   EDITORIAL PATTERNS — substituem os grids de cards
   Problemas → lista numerada · Solução → faixas zig-zag
   Resultados → tira tipográfica · Descobrir → checklist
   ============================================================ */

/* ---------- Problemas: lista editorial numerada ---------- */
.prob-list { max-width: 1000px; margin: 0 auto; }
.prob-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 30px 4px;
  border-top: 1px solid var(--border-dark);
  transition: padding-left .25s ease;
}
.prob-row:last-child { border-bottom: 1px solid var(--border-dark); }
.prob-row__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.2vw, 60px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.prob-row h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.7vw, 31px);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.22;
  color: var(--text-dark);
}
.prob-row:hover { padding-left: 14px; }
@media (max-width: 600px) { .prob-row { gap: 18px; padding: 22px 2px; } }

/* ---------- Solução: faixas alternadas (zig-zag) ---------- */
.sol-rows { max-width: 1060px; margin: 0 auto; }
.sol-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
  padding: 46px 0;
  border-top: 1px solid var(--border-dark);
}
.sol-row:last-child { border-bottom: 1px solid var(--border-dark); }
.sol-row:nth-child(even) { grid-template-columns: 1fr 300px; }
.sol-row:nth-child(even) .sol-row__visual { order: 2; align-items: flex-end; text-align: right; }
.sol-row__visual { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.sol-row__icon {
  width: 74px; height: 74px; border-radius: 20px;
  display: grid; place-items: center; color: #fff;
  background: var(--gradient);
  box-shadow: 0 14px 34px rgba(18, 140, 126, .32);
}
.sol-row__icon svg { width: 34px; height: 34px; }
.sol-row__tag {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800; line-height: 1; letter-spacing: -.02em;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sol-row__body h3 {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.5vw, 29px);
  font-weight: 600; line-height: 1.25; letter-spacing: -.012em;
  color: var(--text-dark); margin-bottom: 12px;
}
.sol-row__body p { font-size: 16px; line-height: 1.62; color: var(--text-dark-mute); max-width: 58ch; }
.sol-row:nth-child(even) .sol-row__body { text-align: right; }
.sol-row:nth-child(even) .sol-row__body p { margin-left: auto; }
@media (max-width: 820px) {
  .sol-row, .sol-row:nth-child(even) { grid-template-columns: 1fr; gap: 22px; padding: 34px 0; }
  .sol-row:nth-child(even) .sol-row__visual { order: 0; align-items: flex-start; text-align: left; }
  .sol-row:nth-child(even) .sol-row__body,
  .sol-row:nth-child(even) .sol-row__body p { text-align: left; margin-left: 0; }
}

/* ---------- Resultados: tira tipográfica ---------- */
.statband { max-width: 1080px; margin: 0 auto; }
.statband__hero {
  text-align: center;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border-light);
}
.statband__eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-mute);
}
.statband__num {
  font-family: var(--font-display);
  font-size: clamp(66px, 13vw, 140px);
  font-weight: 800; line-height: .92; letter-spacing: -.045em;
  margin: 12px 0 16px;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.statband__cap { font-size: 16px; line-height: 1.55; color: var(--text-mute); max-width: 56ch; margin: 0 auto; }
.statband__cap strong { color: var(--text); font-weight: 700; }
.statband__row { display: grid; grid-template-columns: repeat(4, 1fr); }
.statline {
  padding: 36px 22px; text-align: center;
  border-right: 1px solid var(--border-light);
}
.statline:last-child { border-right: none; }
.statline__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 800; line-height: 1; letter-spacing: -.03em;
  margin-bottom: 12px;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.statline__label { font-size: 13.5px; line-height: 1.5; color: var(--text-mute); }
@media (max-width: 820px) {
  .statband__row { grid-template-columns: 1fr 1fr; }
  .statline { border-bottom: 1px solid var(--border-light); }
  .statline:nth-child(2n) { border-right: none; }
}
@media (max-width: 480px) {
  .statband__row { grid-template-columns: 1fr; }
  .statline { border-right: none; }
  /* evita o número de 9 dígitos estourar a largura em telas pequenas */
  .statband__num { font-size: clamp(44px, 13vw, 58px); letter-spacing: -.03em; }
  .statline__num { font-size: clamp(32px, 9vw, 42px); }
}

/* ---------- Descobrir: de-box do checklist ---------- */
.disc-list li {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border-light);
  border-radius: 0;
  box-shadow: none;
  padding: 22px 8px 22px 52px;
}
.disc-list li:last-child { border-bottom: 1px solid var(--border-light); }
.disc-list li::before { left: 6px; top: 22px; }

/* ---------- Stagger nos reveals das novas listas ---------- */
.prob-row:nth-child(2), .sol-row:nth-child(2), .statline:nth-child(2) { transition-delay: .07s; }
.prob-row:nth-child(3), .sol-row:nth-child(3), .statline:nth-child(3) { transition-delay: .14s; }
.prob-row:nth-child(4), .sol-row:nth-child(4), .statline:nth-child(4) { transition-delay: .21s; }
.prob-row:nth-child(5) { transition-delay: .28s; }

/* ============================================================
   FAQ — accordion suave (animação de altura + um aberto por vez)
   Estrutura: .faq__item > .faq__q (botão) + .faq__panel > inner > p
   ============================================================ */
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 24px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font); text-align: left;
  font-size: 17px; font-weight: 600; color: var(--text-dark);
  transition: color .2s ease;
}
.faq__q:hover { color: #fff; }
.faq__icon { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--g3); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq__icon::after  { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq__item.is-open { border-color: rgba(18, 140, 126, .35); }
.faq__item.is-open .faq__icon::before { transform: translateY(-50%) rotate(180deg); }
.faq__item.is-open .faq__icon::after  { transform: translateX(-50%) scaleY(0); opacity: 0; }

/* animação de altura: grid-template-rows 0fr → 1fr */
.faq__panel { display: grid; grid-template-rows: 1fr; }          /* aberto por padrão (sem JS) */
.js .faq__panel { grid-template-rows: 0fr; transition: grid-template-rows .38s cubic-bezier(.4, 0, .2, 1); }
.js .faq__item.is-open .faq__panel { grid-template-rows: 1fr; }
.faq__panel-inner { overflow: hidden; }
.faq__panel p { padding: 2px 24px 22px; margin: 0; color: var(--text-dark-mute); font-size: 15px; line-height: 1.65; }

@media (prefers-reduced-motion: reduce) {
  .js .faq__panel { transition: none; }
}

/* ============================================================
   DEMO MOBILE — tela única com flip 3D (disparador → chat)
   Desktop: .dj-flip é transparente (display:contents) → telas lado a lado.
   Mobile: vira um cartão 3D que gira ao avesso revelando o atendimento.
   ============================================================ */
.dj-flip { display: contents; }

@media (max-width: 860px) {
  .dj-stage { display: block; perspective: 1600px; max-width: 440px; margin: 0 auto; }
  .dj-flip {
    display: block;
    position: relative;
    transform-style: preserve-3d;
    transition: transform .95s cubic-bezier(.7, 0, .3, 1);
  }
  .dj-flip.is-flipped { transform: rotateY(180deg); }
  .dj-flip .dj-screen {
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  .dj-screen--1 { position: relative; }
  .dj-screen--2 { position: absolute; inset: 0; transform: rotateY(180deg); }
  /* cursor-fantasma e bolhas voadoras não fazem sentido no flip de tela única */
  #djCursor, #djFly { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .dj-flip { transition: none; }
}

/* ============================================================
   MOBILE — centralizar todos os blocos no meio da tela
   ============================================================ */
@media (max-width: 768px) {
  /* Cabeçalhos de seção que eram alinhados à esquerda */
  .section__head { text-align: center; margin-left: auto; margin-right: auto; }
  .section__title, .section__sub { margin-left: auto; margin-right: auto; }
  .section__sub { text-align: center; }

  /* Problemas — número sobre o título, tudo centralizado */
  .prob-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 8px;
  }
  .prob-row:hover { padding-left: 0; }

  /* Solução — ícone, tag, título e texto centralizados */
  .sol-row, .sol-row:nth-child(even) { justify-items: center; }
  .sol-row__visual,
  .sol-row:nth-child(even) .sol-row__visual { align-items: center; text-align: center; }
  .sol-row__body,
  .sol-row:nth-child(even) .sol-row__body { text-align: center; }
  .sol-row__body p,
  .sol-row:nth-child(even) .sol-row__body p { margin-left: auto; margin-right: auto; }

  /* Antes & Depois — conteúdo centralizado */
  .ba__col { text-align: center; }
  .ba__col ul { display: inline-grid; text-align: left; }

  /* Sobre — cabeçalho, lead, checklist e card centralizados */
  .about { justify-items: center; }
  .about__head { text-align: center; }
  .about__lead { margin-left: auto; margin-right: auto; }
  .about__list li { padding-left: 0; text-align: center; }
  .about__list li::before {
    position: static; display: inline-grid; vertical-align: middle;
    top: auto; left: auto; margin-right: 8px;
  }
  .about__featured { text-align: center; margin-left: auto; margin-right: auto; }
  .about__featured-caption { margin-left: auto; margin-right: auto; }

  /* Descobrir — checklist com check inline, centralizado */
  .disc-list li { padding: 18px 8px; text-align: center; }
  .disc-list li::before {
    position: static; display: inline-grid; vertical-align: middle;
    top: auto; left: auto; margin-right: 8px;
  }

  /* FAQ — pergunta centralizada, ícone fixo à direita (mantém affordance) */
  .faq__q { position: relative; justify-content: center; text-align: center; padding: 22px 46px; }
  .faq__icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }

  /* CTA — entregáveis centralizados */
  .cta__deliverables { text-align: center; }
  .cta__deliverables li { padding-left: 0; }
}
