/* ============================================================
   PLATAFORMA — Página pilar comercial
   Seções específicas que não existem em sections.css
   ============================================================ */

/* ============================================================
   SECTION HEADER — padronizado com base.css do home
   (sem traço hairline, sem custom font-size, sem custom color)
   Mantemos APENAS os overrides para seções dark.
   ============================================================ */

/* === HERO COMERCIAL (novo) === */
.platform-hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 130px 0 90px;
  overflow: hidden;
  text-align: center;
}
.platform-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(21,88,214,.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 100%, rgba(91,158,247,.15) 0%, transparent 50%);
  pointer-events: none;
}
.platform-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.08) 50%, transparent 100%);
}
.platform-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.platform-hero .tag {
  margin-bottom: 28px;
}
.platform-hero__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: #fff;
  margin: 0 0 20px;
  text-wrap: balance;
}
.platform-hero__title em {
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(135deg, #5B9EF7 0%, #A5C8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.platform-hero__lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.65);
  max-width: 640px;
  margin: 0 auto 32px;
  text-wrap: pretty;
}
.platform-hero__lede strong { color: rgba(255,255,255,.9); font-weight: 600; }
.platform-hero__actions {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 56px;
}
.platform-hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.platform-hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  flex: 1;
  min-width: 140px;
}
.platform-hero__trust-num {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1;
}
.platform-hero__trust-num em {
  font-style: normal;
  color: #7BB0FF;
  font-weight: 600;
}
.platform-hero__trust-label {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
  text-align: center;
  line-height: 1.35;
}
.platform-hero__trust-divider {
  width: 1px;
  background: rgba(255,255,255,.08);
  align-self: stretch;
}

/* ============================================================
   PLATFORM HERO SHOWCASE v3 — Browser frame com scroll automático
   ============================================================
   Mockup que mostra uma página REAL criada na plataforma rolando
   automaticamente dentro de um browser chrome convincente.
   Imagem: images/scroll-template-cafe.{webp|png} (1440×7799)
   Animação: pause topo → scroll → pause base → snap → loop
   ============================================================ */
.platform-hero__showcase {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto 72px;
  padding: 0 24px;
}
.platform-hero__showcase-frame.ph-frame {
  position: relative;
  max-width: 1000px;  /* reduzido ~15% (1180→1000) pra ficar mais respirável */
  margin: 0 auto;
}

/* ============== LIVE INDICATOR (acima do browser) ============== */
.ph-live {
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 14px;
  background: rgba(15, 23, 41, .85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(91,158,247,.35);
  border-radius: 100px;
  box-shadow:
    0 12px 30px -8px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 0 28px rgba(91,158,247,.25);
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: -.005em;
  white-space: nowrap;
}
.ph-live strong { color: #fff; font-weight: 700; }
.ph-live__dot {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 12px #4ADE80;
}
.ph-live__dot::before, .ph-live__dot::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #4ADE80;
  opacity: .55;
  animation: phPulse 2s ease-out infinite;
}
.ph-live__dot::after { animation-delay: 1s; }
@keyframes phPulse {
  0%   { transform: scale(1); opacity: .55; }
  100% { transform: scale(3.5); opacity: 0; }
}

/* ============== BROWSER FRAME ============== */
.ph-browser {
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 40px 100px -20px rgba(0,0,0,.7),
    0 80px 180px -40px rgba(91,158,247,.32),
    0 0 0 1px rgba(255,255,255,.08);
  /* Aspect ratio fixa o tamanho do viewport (16:9 + bar ~36px) */
  aspect-ratio: 16 / 10;
}
.ph-browser::before {
  /* Glow azul no topo do browser, sutil */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(91,158,247,.22), transparent 18%);
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: overlay;
  opacity: .8;
}

/* Browser bar (chrome) */
.ph-browser__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 0 14px;
  height: 38px;
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  border-bottom: 1px solid #E2E8F0;
  flex-shrink: 0;
  position: relative; z-index: 2;
}
.ph-browser__nav {
  display: inline-flex; align-items: center; gap: 2px;
  color: #94A3B8;
}
.ph-browser__arrow {
  width: 22px; height: 22px;
  border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  line-height: 1;
  user-select: none;
}
.ph-browser__arrow--back, .ph-browser__arrow--fwd {
  color: #64748B;
}
.ph-browser__arrow--reload {
  color: #94A3B8;
  font-size: 13px;
}
.ph-browser__dots {
  display: inline-flex; gap: 6px; margin-left: 6px;
}
.ph-browser__dot {
  width: 11px; height: 11px; border-radius: 50%;
}
.ph-browser__dot:nth-child(1) { background: #F87171; }
.ph-browser__dot:nth-child(2) { background: #FBBF24; }
.ph-browser__dot:nth-child(3) { background: #4ADE80; }
.ph-browser__url {
  flex: 1; margin: 0 6px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 7px;
  padding: 5px 12px;
  font-size: 12px;
  color: #475569;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  display: flex; align-items: center; gap: 7px;
  max-width: 440px;
  letter-spacing: -.005em;
}
.ph-browser__url svg { color: #16A34A; flex-shrink: 0; }
.ph-browser__tab-actions {
  display: inline-flex; gap: 4px;
  color: #94A3B8;
}
.ph-browser__icon {
  width: 22px; height: 22px;
  border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: #64748B;
}

/* Viewport (onde a página rola) */
.ph-browser__viewport {
  position: relative;
  flex: 1;
  height: calc(100% - 38px);  /* total minus bar */
  overflow: hidden;
  background: #F3EEE0; /* matching template-cafe bg pra não flash */
}
.ph-browser__page {
  display: block;
  width: 100%;
  height: auto;
  /* Animação de scroll: pausa topo → scroll suave → pausa base → snap → repeat */
  animation: phScroll 32s cubic-bezier(.45,.05,.55,.95) infinite;
  will-change: transform;
}
/* O translate negativo é = (altura_da_imagem / largura_da_imagem * largura_real) - altura_do_viewport
   Como a imagem é 1440×7799 e o viewport é 16:10, a imagem renderiza com altura proporcional.
   Usamos calc dinâmico: -100% + 100% do parent height = scroll completo. */
@keyframes phScroll {
  0%, 6%     { transform: translateY(0); }                    /* pausa topo 1.9s */
  46%, 54%   { transform: translateY(calc(-100% + 100cqh)); } /* pausa base ~2.5s */
  94%, 100%  { transform: translateY(0); }                    /* volta ao topo */
}

/* Fallback pra browsers sem container queries (cqh) — usa vh aproximado */
@supports not (height: 100cqh) {
  @keyframes phScroll {
    0%, 6%    { transform: translateY(0); }
    46%, 54%  { transform: translateY(calc(-100% + 460px)); }
    94%, 100% { transform: translateY(0); }
  }
}

/* Container query enabled no viewport */
.ph-browser__viewport { container-type: size; }

/* Pausa scroll quando hover (cortesia UX) */
.ph-browser:hover .ph-browser__page { animation-play-state: paused; }

/* Respeita reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ph-browser__page { animation: none; }
}

/* ============================================================
   SIDE MOCK — dashboard floating bottom-left do browser frame
   Reusa as classes .hero__card + .mk-* do mesmo padrão da home.
   Narrativa: browser grande = site público (assinante vê),
              mockup pequeno = painel AssineStore (dono vê)
   ============================================================ */
.ph-side-mock {
  position: absolute;
  left: -90px;      /* mais pra esquerda — overlap maior fora do browser */
  bottom: 40px;
  width: 414px;     /* 15% mais largo (360→414) */
  z-index: 7;
  /* Float animation suave (sincronizado com .ph-toast pattern) */
  animation: phFloat 6s ease-in-out infinite;
  /* Pointer events off pra não bloquear hover do browser frame */
  pointer-events: none;
}
.ph-side-mock .hero__card {
  /* Override pra ficar menor e mais punchy que a versão home */
  box-shadow:
    0 30px 70px -15px rgba(0,0,0,.75),
    0 50px 120px -30px rgba(91,158,247,.3),
    0 0 0 1px rgba(255,255,255,.08),
    0 0 0 1px rgba(91,158,247,.12);
}
/* Ajuste fino pra escala menor do mockup quando floating */
.ph-side-mock .mk-body { min-height: 320px; grid-template-columns: 96px 1fr; }
.ph-side-mock .mk-side { padding: 12px 8px; }
.ph-side-mock .mk-club { padding: 5px 6px; margin-bottom: 10px; gap: 6px; }
.ph-side-mock .mk-club__mark { width: 20px; height: 20px; font-size: 9px; }
.ph-side-mock .mk-club__name { font-size: 11px; }
.ph-side-mock .mk-club__sub { font-size: 8.5px; }
.ph-side-mock .mk-nav a { font-size: 10.5px; padding: 5px 6px; gap: 6px; }
.ph-side-mock .mk-nav__ic { width: 11px; height: 11px; }
.ph-side-mock .mk-main { padding: 14px; gap: 10px; }
.ph-side-mock .mk-head__t { font-size: 12px; }
.ph-side-mock .mk-head__s { font-size: 9.5px; }
.ph-side-mock .mk-head__btn { font-size: 9.5px; padding: 4px 8px; }
.ph-side-mock .mk-kpi { padding: 8px 9px; }
.ph-side-mock .mk-kpi__l { font-size: 8.5px; }
.ph-side-mock .mk-kpi__v { font-size: 13px; }
.ph-side-mock .mk-kpi__d { font-size: 8.5px; }
.ph-side-mock .mk-chart { padding: 10px; }
.ph-side-mock .mk-chart__t { font-size: 9.5px; }
.ph-side-mock .mk-chart__v { font-size: 12px; }
.ph-side-mock .mk-chart__svg { height: 44px; }
.ph-side-mock .mk-feed { padding: 9px 10px; }
.ph-side-mock .mk-feed__t { font-size: 9.5px; }
.ph-side-mock .mk-row { padding: 5px 0; gap: 8px; }
.ph-side-mock .mk-row__av { width: 20px; height: 20px; font-size: 8.5px; }
.ph-side-mock .mk-row__name { font-size: 10px; }
.ph-side-mock .mk-row__act { font-size: 9px; }
.ph-side-mock .mk-row__amt { font-size: 10.5px; }
@keyframes phFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ============== CAPTION EDITORIAL ============== */
.ph-caption {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  margin: 39px auto 0;  /* +15px de respiro (era 24px) — separa do browser frame */
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-align: center;
  flex-wrap: wrap;
}
.ph-caption__pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: rgba(74,222,128,.12);
  border: 1px solid rgba(74,222,128,.32);
  border-radius: 100px;
  font-size: 11px; font-weight: 700;
  color: #4ADE80;
  letter-spacing: .06em; text-transform: uppercase;
}
.ph-caption__pill svg { stroke: currentColor; fill: none; stroke-width: 2.5; }
.ph-caption__text { letter-spacing: -.005em; }
.ph-caption__text strong { color: rgba(255,255,255,.88); font-weight: 600; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .platform-hero__showcase { padding: 0 20px; }
  .ph-browser { aspect-ratio: 16 / 10.5; }
  .ph-browser__bar { padding: 0 10px; gap: 8px; }
  .ph-browser__nav { display: none; }
  .ph-browser__tab-actions { display: none; }
  .ph-browser__url { font-size: 11px; max-width: 320px; }
  @keyframes phScroll {
    0%, 6%    { transform: translateY(0); }
    46%, 54%  { transform: translateY(calc(-100% + 400px)); }
    94%, 100% { transform: translateY(0); }
  }
  .ph-live { top: -18px; font-size: 11px; padding: 7px 14px 7px 12px; }
  .ph-caption { font-size: 12px; margin-top: 18px; }
  /* Side mock no tablet — escala proporcional */
  .ph-side-mock { width: 345px; left: -56px; bottom: 28px; }
  .ph-side-mock .mk-body { min-height: 280px; }
}

@media (max-width: 768px) {
  /* No mobile, esconde TODO o showcase */
  .platform-hero__showcase { display: none; }
  .platform-hero__actions { margin-bottom: 48px; }
}

/* === PROBLEMA SECTION === */
.problem {
  background: var(--navy);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(21,88,214,.18) 0%, transparent 60%);
  pointer-events: none;
}
.problem .container { position: relative; z-index: 1; }
.problem .section-label { color: #5B9EF7; }
.problem .section-title { color: #fff; }
.problem .section-desc { color: rgba(255,255,255,.5); }

/* === Comparativo Antes vs Depois === */
.problem__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
  position: relative;
}
.problem__compare::before {
  content: "VS";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  z-index: 2;
}
.problem__col {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.problem__col--bad {
  background: linear-gradient(180deg, rgba(248,113,113,.06) 0%, rgba(248,113,113,.02) 100%);
  border-color: rgba(248,113,113,.15);
}
.problem__col--good {
  background: linear-gradient(180deg, rgba(21,88,214,.10) 0%, rgba(21,88,214,.03) 100%);
  border-color: rgba(91,158,247,.25);
}
.problem__col-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.problem__col--bad .problem__col-eyebrow { color: #F87171; }
.problem__col--good .problem__col-eyebrow { color: #7BB0FF; }
.problem__col-eyebrow-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.problem__col--bad .problem__col-eyebrow-icon {
  background: rgba(248,113,113,.15);
  color: #F87171;
}
.problem__col--good .problem__col-eyebrow-icon {
  background: rgba(91,158,247,.18);
  color: #7BB0FF;
}
.problem__col-title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -.015em;
  color: #fff;
  margin: 0 0 28px;
}
.problem__col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem__col-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.problem__col-row:first-child { border-top: none; padding-top: 0; }
.problem__col-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.problem__col-icon svg { width: 12px; height: 12px; stroke-width: 3; }
.problem__col--bad .problem__col-icon {
  background: rgba(248,113,113,.12);
  color: #F87171;
}
.problem__col--good .problem__col-icon {
  background: rgba(34,197,94,.15);
  color: #4ADE80;
}
.problem__col-text {
  flex: 1;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
}
.problem__col-text strong {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
}
.problem__col--bad .problem__col-text strong { color: #FCA5A5; }
.problem__col--good .problem__col-text strong { color: #fff; }

.problem__closing {
  margin-top: 48px;
  padding: 28px 36px;
  background: rgba(91,158,247,.06);
  border: 1px solid rgba(91,158,247,.15);
  border-radius: 14px;
  text-align: center;
}
.problem__closing p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  margin: 0;
}
.problem__closing strong { color: #fff; font-weight: 600; }

@media (max-width: 900px) {
  .problem__compare { grid-template-columns: 1fr; gap: 16px; }
  /* No mobile, o ::before (VS) vira grid item — usar `order` pra
     posicionar ENTRE as 2 colunas, não no início. */
  .problem__col--bad { order: 1; }
  .problem__compare::before {
    order: 2;
    position: relative;
    top: auto; left: auto;
    transform: none;
    margin: 4px auto;
    background: var(--navy);
  }
  .problem__col--good { order: 3; }
  .problem__col { padding: 28px 24px; }
  .problem__col-title { font-size: 20px; margin-bottom: 22px; }
}

/* === FEATURES legado .platform-features removido — agora a seção usa .features (sections.css) === */

/* === ACCOUNT — Conta do assinante (área self-service) ===
   Estrutura espelha .checkout-section: tema dark, mockup branco na direita,
   features list na esquerda. Section dedicada pra quebrar o ritmo visual
   após .features (light) e antes de .testimonials. */
.account-section {
  background: var(--navy);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.account-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 80% 50%, rgba(21,88,214,.18) 0%, transparent 60%);
  pointer-events: none;
}
.account-section .container { position: relative; z-index: 1; }
.account-section .section-label { color: #5B9EF7; }
.account-section .section-title { color: #fff; }
.account-section .section-desc { color: rgba(255,255,255,.5); }

.account__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;  /* mockup à esquerda (1fr), features à direita (1.05fr) */
  gap: 64px;
  align-items: center;
}
/* Inverte ordem visual sem mexer no HTML — mockup vai pra esquerda */
.account__mockup-wrap { order: -1; }
.account__features {
  display: flex;
  flex-direction: column;
}
.account__feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.account__feature:first-child { border-top: none; padding-top: 8px; }
.account__feature-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(91,158,247,.12);
  border: 1px solid rgba(91,158,247,.22);
  display: flex; align-items: center; justify-content: center;
}
.account__feature-icon svg { width: 18px; height: 18px; stroke: #7BB0FF; fill: none; stroke-width: 2; }
.account__feature-content { flex: 1; }
.account__feature-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -.01em;
}
.account__feature-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.account__feature-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #4ADE80;
  background: rgba(74,222,128,.1);
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 8px;
}

/* === Mockup da Conta do Assinante === */
.account__mockup-wrap {
  position: relative;
  perspective: 1200px;
}
.account__mockup-wrap::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(91,158,247,.18) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.account__mockup {
  position: relative;
  background: #fff;
  color: var(--navy);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.06);
  font-family: var(--font-sans);
}
.account__mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
}
.account__mockup-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.account__mockup-dot:nth-child(1) { background: #F87171; }
.account__mockup-dot:nth-child(2) { background: #FBBF24; }
.account__mockup-dot:nth-child(3) { background: #4ADE80; }
.account__mockup-url {
  flex: 1;
  margin-left: 12px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11.5px;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 6px;
}
.account__mockup-url::before {
  content: "🔒";
  font-size: 10px;
}
.account__mockup-body {
  padding: 24px 26px 26px;
}

/* Cabeçalho do assinante */
.account__mock-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid #E2E8F0;
  margin-bottom: 18px;
}
.account__mock-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, #5B9EF7 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: -.01em;
}
.account__mock-head-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.account__mock-head-info strong {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
}
.account__mock-head-info span {
  font-size: 11.5px;
  color: #64748B;
}
.account__mock-head-info em {
  font-style: normal;
  color: var(--blue);
  font-weight: 600;
}
.account__mock-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #15803D;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 100px;
  padding: 4px 10px;
  flex-shrink: 0;
}

/* Cards próxima cobrança + entrega */
.account__mock-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.account__mock-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.account__mock-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748B;
}
.account__mock-card-value {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.015em;
  line-height: 1.1;
}
.account__mock-card-meta {
  font-size: 11px;
  color: #64748B;
}

/* Botões de ações */
.account__mock-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.account__mock-action {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: default;
  text-align: left;
}
.account__mock-action svg {
  width: 14px; height: 14px;
  color: var(--blue);
  flex-shrink: 0;
}

/* Histórico mini */
.account__mock-history {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 14px 14px 10px;
}
.account__mock-history-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748B;
  margin-bottom: 10px;
}
.account__mock-history-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  font-size: 12px;
}
.account__mock-history-row + .account__mock-history-row {
  border-top: 1px dashed #E2E8F0;
}
.account__mock-history-date {
  color: #64748B;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px;
}
.account__mock-history-val {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}
.account__mock-history-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 3px 9px;
}
.account__mock-history-status--paid {
  color: #15803D;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.22);
}

/* === COMPARISON TABLE === */
.platform-compare {
  padding: 120px 0;
  background: #fff;
}
.platform-compare__wrap {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  overflow-x: auto;
}
.platform-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  min-width: 700px;
}
.platform-compare__table thead {
  background: var(--off-white);
}
.platform-compare__table th {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  padding: 18px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  letter-spacing: -.005em;
}
.platform-compare__table th:first-child {
  text-align: left;
  color: #64748B;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.platform-compare__table th.is-us {
  background: var(--blue);
  color: #fff;
  position: relative;
}
.platform-compare__table th.is-us::before {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
}
.platform-compare__table td {
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: #334155;
  border-bottom: 1px solid var(--border);
}
.platform-compare__table td:first-child {
  text-align: left;
  color: var(--navy);
  font-weight: 500;
}
.platform-compare__table tbody tr:last-child td { border-bottom: none; }
.platform-compare__table tbody tr.is-us-col td:nth-child(2) {
  background: rgba(21,88,214,.04);
}
.platform-compare__check {
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
}
.platform-compare__cross {
  color: #CBD5E1;
  font-weight: 600;
  font-size: 16px;
}
.platform-compare__cell-note {
  display: block;
  font-size: 11.5px;
  color: #94A3B8;
  margin-top: 2px;
  font-weight: 400;
}

/* ============================================================
   CHECKOUT TRANSPARENTE — Split mockup + features (dark)
   ============================================================ */
.checkout-section {
  background: var(--navy);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.checkout-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 80% 50%, rgba(21,88,214,.18) 0%, transparent 60%);
  pointer-events: none;
}
.checkout-section .container { position: relative; z-index: 1; }
.checkout-section .section-label { color: #5B9EF7; }
.checkout-section .section-title { color: #fff; }
.checkout-section .section-desc { color: rgba(255,255,255,.5); }

.checkout__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.checkout__features {
  display: flex;
  flex-direction: column;
}
.checkout__feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.checkout__feature:first-child { border-top: none; padding-top: 8px; }
.checkout__feature-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(91,158,247,.12);
  border: 1px solid rgba(91,158,247,.22);
  display: flex; align-items: center; justify-content: center;
}
.checkout__feature-icon svg { width: 18px; height: 18px; stroke: #7BB0FF; fill: none; stroke-width: 2; }
.checkout__feature-content { flex: 1; }
.checkout__feature-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -.01em;
}
.checkout__feature-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.checkout__feature-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #4ADE80;
  background: rgba(74,222,128,.1);
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 8px;
}

/* === Mockup do Checkout === */
.checkout__mockup-wrap {
  position: relative;
  perspective: 1200px;
}
.checkout__mockup-wrap::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(91,158,247,.18) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.checkout__mockup {
  position: relative;
  background: #fff;
  color: var(--navy);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.06);
  font-family: var(--font-sans);
}
.checkout__mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
}
.checkout__mockup-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #CBD5E1;
}
.checkout__mockup-dot:nth-child(1) { background: #F87171; }
.checkout__mockup-dot:nth-child(2) { background: #FBBF24; }
.checkout__mockup-dot:nth-child(3) { background: #4ADE80; }
.checkout__mockup-url {
  flex: 1;
  margin-left: 12px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11.5px;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 6px;
}
.checkout__mockup-url::before {
  content: "🔒";
  font-size: 10px;
}
.checkout__mockup-body {
  padding: 26px 28px 28px;
}
.checkout__mock-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.checkout__mock-plan {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -.01em;
  margin-bottom: 22px;
}
.checkout__mock-tabs {
  display: flex;
  gap: 6px;
  padding: 4px;
  background: #F1F5F9;
  border-radius: 10px;
  margin-bottom: 18px;
}
.checkout__mock-tab {
  flex: 1;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 6px;
  border-radius: 7px;
  color: #64748B;
  letter-spacing: -.005em;
}
.checkout__mock-tab.is-active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.checkout__mock-field {
  margin-bottom: 12px;
}
.checkout__mock-label {
  font-size: 10.5px;
  font-weight: 600;
  color: #64748B;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.checkout__mock-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}
.checkout__mock-input--focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,88,214,.12); }
.checkout__mock-input-brand {
  margin-left: auto;
  display: flex;
  gap: 4px;
}
.checkout__mock-brand-chip {
  width: 26px; height: 16px;
  border-radius: 3px;
  background: #1A1F71;
}
.checkout__mock-brand-chip:nth-child(2) { background: linear-gradient(90deg, #EB001B 50%, #F79E1B 50%); }
.checkout__mock-brand-chip:nth-child(3) { background: #006FCF; }
.checkout__mock-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.checkout__mock-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  margin: 18px 0 14px;
  border-top: 1px dashed #E2E8F0;
}
.checkout__mock-total-label {
  font-size: 13px;
  color: #475569;
}
.checkout__mock-total-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
}
.checkout__mock-total-value span {
  font-size: 12px;
  font-weight: 500;
  color: #94A3B8;
  margin-left: 4px;
}
.checkout__mock-cta {
  width: 100%;
  background: var(--blue);
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -.005em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.checkout__mock-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  font-size: 10.5px;
  color: #94A3B8;
  font-weight: 500;
}
.checkout__mock-badges span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   TEMPLATES PRONTOS — Tabs com preview grande (light)
   ============================================================ */
.templates-section {
  background: #fff;
  padding: 120px 0;
}
.templates__tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.templates__tabs {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow-x: auto;
  max-width: 100%;
}
.templates__tab {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  color: #64748B;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s var(--ease-out), color .25s var(--ease-out);
}
.templates__tab:hover { color: var(--navy); }
.templates__tab.is-active {
  background: var(--navy);
  color: #fff;
}

.templates__panels { position: relative; min-height: 420px; }
.templates__panel {
  display: none;
  grid-template-columns: 1.45fr 1fr;
  gap: 48px;
  align-items: center;
}
.templates__panel.is-active { display: grid; animation: fadeIn .35s var(--ease-out); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.templates__preview {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(0,0,0,.3), 0 0 0 1px var(--border);
  background: #fff;
  font-family: var(--font-sans);
}
.templates__preview-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
}
.templates__preview-bar .checkout__mockup-dot { width: 10px; height: 10px; }
.templates__preview-url {
  flex: 1; margin-left: 12px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 11px;
  color: #64748B;
}
.templates__preview-body {
  position: relative;
  min-height: 360px;
  padding: 0;
}

/* Hero do template (variável por nicho) */
.templates__hero {
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
}
.templates__hero-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  font-size: 11px;
  font-weight: 600;
}
.templates__hero-logo {
  letter-spacing: .04em;
  text-transform: uppercase;
}
.templates__hero-links {
  display: flex;
  gap: 14px;
  opacity: .65;
  font-weight: 500;
}
.templates__hero-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.templates__hero-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 8px;
}
.templates__hero-sub {
  font-size: 12px;
  line-height: 1.45;
  opacity: .75;
  margin: 0 0 16px;
  max-width: 80%;
}
.templates__hero-cta {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
}
.templates__hero-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 28px 24px;
}
.templates__hero-product {
  aspect-ratio: 1 / 1.1;
  border-radius: 8px;
  position: relative;
}

/* Paleta por nicho */
.tpl-vinho .templates__hero { background: linear-gradient(135deg, #2A0F14 0%, #4A1820 100%); color: #F5E6E8; }
.tpl-vinho .templates__hero-tag { background: rgba(245,230,232,.15); color: #F5E6E8; }
.tpl-vinho .templates__hero-cta { background: #C9A961; color: #2A0F14; }
.tpl-vinho .templates__hero-products { background: #1A0A0E; }
.tpl-vinho .templates__hero-product { background: linear-gradient(135deg, #722F37 0%, #4A1820 100%); }
.tpl-vinho .templates__hero-product:nth-child(2) { background: linear-gradient(135deg, #C9A961 0%, #8B7340 100%); }
.tpl-vinho .templates__hero-product:nth-child(3) { background: linear-gradient(135deg, #5C2026 0%, #2A0F14 100%); }

.tpl-cafe .templates__hero { background: linear-gradient(135deg, #2A1B12 0%, #3E2723 100%); color: #F5E6D3; }
.tpl-cafe .templates__hero-tag { background: rgba(245,230,211,.18); color: #F5E6D3; }
.tpl-cafe .templates__hero-cta { background: #D4A574; color: #2A1B12; }
.tpl-cafe .templates__hero-products { background: #1F1409; }
.tpl-cafe .templates__hero-product { background: linear-gradient(135deg, #6F4E37 0%, #3E2723 100%); }
.tpl-cafe .templates__hero-product:nth-child(2) { background: linear-gradient(135deg, #D4A574 0%, #8B6F47 100%); }
.tpl-cafe .templates__hero-product:nth-child(3) { background: linear-gradient(135deg, #5C3B22 0%, #2A1B12 100%); }

.tpl-livros .templates__hero { background: #F4EDE0; color: #1A1A1A; }
.tpl-livros .templates__hero-tag { background: #1A1A1A; color: #F4EDE0; }
.tpl-livros .templates__hero-cta { background: #1A1A1A; color: #F4EDE0; }
.tpl-livros .templates__hero-products { background: #EDE3D2; }
.tpl-livros .templates__hero-product { background: linear-gradient(135deg, #8B4513 0%, #5C2E0A 100%); }
.tpl-livros .templates__hero-product:nth-child(2) { background: linear-gradient(135deg, #2C5F2D 0%, #1A4D1B 100%); }
.tpl-livros .templates__hero-product:nth-child(3) { background: linear-gradient(135deg, #1A1A1A 0%, #000 100%); }

.tpl-pet .templates__hero { background: linear-gradient(135deg, #1E88E5 0%, #0D47A1 100%); color: #fff; }
.tpl-pet .templates__hero-tag { background: #FF6B35; color: #fff; }
.tpl-pet .templates__hero-cta { background: #FF6B35; color: #fff; }
.tpl-pet .templates__hero-products { background: #0A2E5C; }
.tpl-pet .templates__hero-product { background: linear-gradient(135deg, #FF6B35 0%, #C2410C 100%); }
.tpl-pet .templates__hero-product:nth-child(2) { background: linear-gradient(135deg, #FCD34D 0%, #D97706 100%); }
.tpl-pet .templates__hero-product:nth-child(3) { background: linear-gradient(135deg, #1E88E5 0%, #0D47A1 100%); }

.tpl-beleza .templates__hero { background: linear-gradient(135deg, #FFF0EB 0%, #FFE4D6 100%); color: #5C2A1A; }
.tpl-beleza .templates__hero-tag { background: #D4A574; color: #fff; }
.tpl-beleza .templates__hero-cta { background: #5C2A1A; color: #FFF0EB; }
.tpl-beleza .templates__hero-products { background: #FBE2D2; }
.tpl-beleza .templates__hero-product { background: linear-gradient(135deg, #F5C5A0 0%, #D4A574 100%); }
.tpl-beleza .templates__hero-product:nth-child(2) { background: linear-gradient(135deg, #E8A0A0 0%, #B87474 100%); }
.tpl-beleza .templates__hero-product:nth-child(3) { background: linear-gradient(135deg, #C9A961 0%, #8B7340 100%); }

.tpl-fitness .templates__hero { background: #0A0A0A; color: #C6FF00; }
.tpl-fitness .templates__hero-tag { background: #C6FF00; color: #0A0A0A; }
.tpl-fitness .templates__hero-cta { background: #C6FF00; color: #0A0A0A; }
.tpl-fitness .templates__hero-products { background: #050505; }
.tpl-fitness .templates__hero-product { background: linear-gradient(135deg, #C6FF00 0%, #8FBC00 100%); }
.tpl-fitness .templates__hero-product:nth-child(2) { background: linear-gradient(135deg, #1A1A1A 0%, #000 100%); }
.tpl-fitness .templates__hero-product:nth-child(3) { background: linear-gradient(135deg, #4D5D00 0%, #1A1A00 100%); }

.templates__info { padding: 8px 0; }
.templates__info-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 12px;
}
.templates__info-title {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--navy);
  margin: 0 0 14px;
}
.templates__info-desc {
  font-size: 15.5px;
  line-height: 1.55;
  color: #475569;
  margin: 0 0 26px;
}
.templates__info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.templates__info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}
.templates__info-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.templates__info-check svg { width: 11px; height: 11px; }
.templates__bottom {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.templates__bottom-text {
  font-size: 14.5px;
  color: #475569;
  margin: 0 0 12px;
}
.templates__bottom-text strong { color: var(--navy); }

/* === CASES legado removido — agora a seção usa .testimonials + .client-marquee (sections.css) === */

/* === INTEGRATIONS (legado .integrations-cat removido — agora usa .logo-cloud de sections.css) === */

/* === ONBOARDING TIMELINE === */
.onboarding {
  padding: 120px 0;
  background: var(--navy);
  color: #fff;
}
.onboarding .section-label { color: #5B9EF7; }
.onboarding .section-title { color: #fff; }
.onboarding .section-desc { color: rgba(255,255,255,.5); }

.onboarding__timeline {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  position: relative;
}
.onboarding__step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 24px 22px;
  position: relative;
}
.onboarding__step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}
.onboarding__step-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.onboarding__step-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
  margin: 0;
}

/* === FINAL CTA === */
.platform-final-cta {
  padding: 140px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0D1A33 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.platform-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(21,88,214,.2) 0%, transparent 60%);
  pointer-events: none;
}
.platform-final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.platform-final-cta__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #5B9EF7;
  margin: 0 0 18px;
}
.platform-final-cta__title {
  font-family: var(--font-sans);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: #fff;
  margin: 0 0 18px;
}
.platform-final-cta__title em {
  font-style: normal;
  background: linear-gradient(135deg, #5B9EF7 0%, #A5C8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.platform-final-cta__desc {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  margin: 0 0 36px;
}
.platform-final-cta__actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* === Pricing removido — agora vive em /planos/ (página dedicada) === */

/* === Responsive === */
@media (max-width: 1024px) {
  .platform-hero { padding: 130px 0 90px; }
  .platform-hero__trust-item { padding: 0 20px; min-width: 130px; }
}
@media (max-width: 900px) {
  .checkout__grid { grid-template-columns: 1fr; gap: 48px; }
  .account__grid { grid-template-columns: 1fr; gap: 48px; }
  .templates__panel { grid-template-columns: 1fr; gap: 32px; }
  .templates__info-title { font-size: 24px; }
}
@media (max-width: 767px) {
  .checkout-section, .templates-section, .account-section { padding: 80px 0; }
  .templates__tabs { padding: 4px; }
  .templates__tab { font-size: 12.5px; padding: 8px 14px; }
  .checkout__mockup-body { padding: 22px 20px 24px; }
  .account__mockup-body { padding: 20px 18px 22px; }
  .account__mock-cards { grid-template-columns: 1fr; gap: 8px; }
  .account__mock-actions { grid-template-columns: 1fr; }
  .templates__hero { padding: 24px 22px 22px; }
  .templates__hero-products { padding: 0 22px 20px; }
  .platform-hero { padding: 110px 0 70px; }
  .platform-hero__lede { margin-bottom: 32px; }
  .platform-hero__actions { margin-bottom: 48px; gap: 16px; }
  .platform-hero__trust { padding-top: 32px; gap: 24px 0; }
  .platform-hero__trust-item { flex: 1 1 45%; min-width: 130px; padding: 12px 8px; }
  .platform-hero__trust-num { font-size: 22px; }
  .platform-hero__trust-divider { display: none; }
  .problem, .onboarding { padding: 80px 0; }
  .platform-final-cta { padding: 90px 0; }
  .problem__closing { padding: 24px 22px; }
  .problem__closing p { font-size: 15px; }
}
