/* =============================================================================
   NEXUS — GUIA DE SERVIÇOS E VALORES · VERSÃO CLIENTE
   Design system oficial Nexus (Funnel Display/Sans · #FAFAF7 · #0E3A2C · #F26B1F)

   Personalidade: EDITORIAL, não planilha.
   Quem abre isto recebeu um link e está decidindo. Então cada pilar respira,
   o preço aparece com hierarquia (não em célula de tabela), e a leitura tem
   ritmo: capa → pilar → planos → o que inclui → próximo pilar.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300;400;500;600;700;800&family=Funnel+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --nx-orange: #F26B1F;
  --nx-orange-soft: #FFF1E6;
  --nx-orange-deep: #C84F0C;
  --nx-green: #0E3A2C;
  --nx-green-deep: #082018;
  --nx-green-soft: #E8EFEB;
  --nx-green-mid: #1B5C46;

  --nx-bg: #FAFAF7;
  --nx-paper: #FFFFFF;
  --nx-ink: #0A0A0A;
  --nx-ink-2: #1F1F1F;
  --nx-mute: #62625E;
  --nx-mute-2: #97968F;
  --nx-line: #E6E5E0;
  --nx-line-strong: #D4D2CB;

  --ff-sans: 'Funnel Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-display: 'Funnel Display', 'Funnel Sans', -apple-system, sans-serif;

  --wrap: 1080px;
  --pad-x: clamp(20px, 6vw, 60px);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }

body {
  font-family: var(--ff-sans);
  color: var(--nx-ink);
  background: var(--nx-bg);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad-x); }

/* =============================================================================
   BARRA SUPERIOR
   ========================================================================== */
.topo {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250,250,247,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nx-line);
}
.topo-in {
  max-width: var(--wrap); margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 62px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.topo img { height: 26px; width: auto; display: block; flex-shrink: 0; }
.topo-nav { display: flex; gap: 3px; overflow-x: auto; scrollbar-width: none; }
.topo-nav::-webkit-scrollbar { display: none; }
.topo-nav a {
  font-size: 13.5px; color: var(--nx-mute);
  text-decoration: none; white-space: nowrap;
  padding: 7px 12px; border-radius: 20px;
  transition: color .16s, background .16s;
}
.topo-nav a:hover { color: var(--nx-green); background: var(--nx-green-soft); }
.topo-nav a.active { color: var(--nx-green); background: var(--nx-green-soft); font-weight: 600; }

/* =============================================================================
   CAPA
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(64px, 11vw, 128px) 0 clamp(54px, 8vw, 96px);
  overflow: hidden;
}
/* Aura verde difusa atrás do título — dá profundidade sem imagem. */
.hero::before {
  content: '';
  position: absolute; top: -34%; right: -16%;
  width: 62vw; height: 62vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(14,58,44,.09) 0%, rgba(14,58,44,0) 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -22%; left: -14%;
  width: 46vw; height: 46vw; max-width: 540px; max-height: 540px;
  background: radial-gradient(circle, rgba(242,107,31,.075) 0%, rgba(242,107,31,0) 68%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }

/* Página focada: sem a grade de pilares, a capa não precisa do mesmo respiro
   embaixo — senão abre um vão morto antes do primeiro bloco. */
.hero-focada { padding-bottom: clamp(28px, 4vw, 44px); }
.hero-focada + .sec { padding-top: clamp(30px, 4vw, 48px); }
.hero .eyebrow {
  font-family: var(--ff-display);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--nx-orange); margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 7.4vw, 84px);
  font-weight: 700; line-height: .99;
  letter-spacing: -.035em;
  color: var(--nx-green);
  max-width: 15ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--nx-orange);
}
.hero .lead {
  margin-top: 26px;
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.52;
  color: var(--nx-mute);
  max-width: 52ch;
}
.hero-meta {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--nx-line);
  display: flex; flex-wrap: wrap; gap: 12px 34px;
  font-size: 13px; color: var(--nx-mute-2);
}
.hero-meta strong {
  font-family: var(--ff-display); font-weight: 600;
  color: var(--nx-green); margin-right: 6px;
}

/* ---- Índice dos pilares -------------------------------------------------- */
.pilares {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  gap: 1px; background: var(--nx-line);
  border: 1px solid var(--nx-line);
  border-radius: 8px; overflow: hidden;
  margin-top: 44px;
}
.pilar {
  background: var(--nx-paper);
  padding: 19px 18px 17px;
  text-decoration: none; display: block;
  transition: background .18s;
}
.pilar:hover { background: var(--nx-green-soft); }
.pilar .ic { display: block; margin-bottom: 11px; color: var(--nx-orange); }
.pilar .ic svg { width: 25px; height: 25px; display: block; }
.pilar:hover .ic { color: var(--nx-green); }
.pilar .nm {
  font-family: var(--ff-display);
  font-size: 14.5px; font-weight: 600;
  color: var(--nx-green); line-height: 1.25;
}

/* =============================================================================
   SEÇÕES
   ========================================================================== */
.sec { padding: clamp(58px, 8vw, 96px) 0 0; scroll-margin-top: 78px; }
.sec-in { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad-x); }

.sec-head { max-width: 66ch; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-display);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--nx-orange);
  margin-bottom: 16px;
}
.sec-tag::after { content: ''; width: 34px; height: 1px; background: rgba(242,107,31,.4); }
.sec h2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -.028em;
  color: var(--nx-green);
}
/* Ícone do título: quadrado laranja-claro com traço na cor da marca. */
.sec h2 { display: flex; align-items: center; gap: 16px; }
.ic-sec {
  flex-shrink: 0;
  width: clamp(46px, 5.4vw, 60px);
  height: clamp(46px, 5.4vw, 60px);
  border-radius: 12px;
  background: var(--nx-orange-soft);
  color: var(--nx-orange-deep);
  display: grid; place-items: center;
}
.ic-sec svg { width: 54%; height: 54%; }
.sec-sub {
  font-family: var(--ff-display);
  font-size: 14px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--nx-mute-2); margin-top: 9px;
}
.sec-resumo {
  margin-top: 18px;
  font-size: clamp(16.5px, 1.9vw, 19px);
  line-height: 1.58; color: var(--nx-mute);
}

/* =============================================================================
   PRODUTO
   ========================================================================== */
.prod {
  margin-top: 40px;
  background: var(--nx-paper);
  border: 1px solid var(--nx-line);
  border-radius: 10px;
  overflow: hidden;
}
.prod-head {
  padding: clamp(22px, 3vw, 34px) clamp(22px, 3vw, 36px) clamp(18px, 2.4vw, 26px);
  border-bottom: 1px solid var(--nx-line);
}
.prod-head h3 {
  font-family: var(--ff-display);
  font-size: clamp(23px, 2.9vw, 30px);
  font-weight: 700; letter-spacing: -.02em;
  color: var(--nx-green);
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.prod-chamada {
  font-size: 15.5px; color: var(--nx-orange-deep);
  font-weight: 500; margin-top: 6px;
}
.prod-desc { font-size: 16px; color: var(--nx-mute); margin-top: 12px; line-height: 1.6; max-width: 68ch; }
.prod-body { padding: clamp(22px, 3vw, 34px) clamp(22px, 3vw, 36px) clamp(26px, 3.2vw, 38px); }
.prod-body > * + * { margin-top: clamp(24px, 3vw, 34px); }

.selo-parceria {
  font-family: var(--ff-display);
  font-size: 9.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--nx-green); color: #fff;
  padding: 5px 10px; border-radius: 3px;
}

/* ---- Preço em destaque --------------------------------------------------- */
.preco {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  padding: 22px 26px;
  background: var(--nx-green-soft);
  border-radius: 8px;
}
.preco-val {
  font-family: var(--ff-display);
  font-size: clamp(38px, 5.2vw, 54px);
  font-weight: 700; letter-spacing: -.035em;
  color: var(--nx-green); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.preco-val .cifra {
  font-size: .42em; font-weight: 600;
  color: var(--nx-green-mid); margin-right: 5px; vertical-align: .42em;
}
.preco-un { font-size: 15px; color: var(--nx-green-mid); font-weight: 500; }
/* Parcelamento: quebra para a linha inteira, abaixo do valor. */
.preco-parc {
  flex-basis: 100%;
  margin-top: 4px;
  font-size: 14.5px;
  color: var(--nx-green-mid);
}

.variantes { border-top: 1px solid var(--nx-line); padding-top: 22px; }
.variante {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 11px 0;
}
.variante + .variante { border-top: 1px dashed var(--nx-line); }
.variante .vn { font-weight: 600; font-size: 16px; color: var(--nx-ink-2); }
.variante .vv {
  font-family: var(--ff-display); font-weight: 700; font-size: 22px;
  color: var(--nx-green); font-variant-numeric: tabular-nums;
}
.variante .vu { font-size: 13.5px; color: var(--nx-mute-2); }

/* ---- Rótulos e listas ---------------------------------------------------- */
.bloco-rot {
  font-family: var(--ff-display);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--nx-mute-2); margin-bottom: 14px;
}
.lista-check {
  list-style: none;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 11px 28px;
}
.lista-check li {
  position: relative; padding-left: 27px;
  font-size: 16px; line-height: 1.5; color: var(--nx-ink-2);
}
.lista-check li::before {
  content: ''; position: absolute; left: 4px; top: .42em;
  width: 11px; height: 6px;
  border-left: 2px solid var(--nx-orange);
  border-bottom: 2px solid var(--nx-orange);
  transform: rotate(-45deg);
}
.lista-regras { list-style: none; display: grid; gap: 10px; }
.lista-regras li {
  position: relative; padding-left: 22px;
  font-size: 15px; line-height: 1.55; color: var(--nx-mute);
}
.lista-regras li::before {
  content: ''; position: absolute; left: 3px; top: .66em;
  width: 10px; height: 1.5px; background: var(--nx-line-strong);
}

/* ---- Tabela de planos ---------------------------------------------------- */
.tab-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 8px; }
.tab-titulo {
  font-family: var(--ff-display);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--nx-mute-2); margin-bottom: 14px;
}
table { width: 100%; border-collapse: collapse; font-size: 16px; min-width: 480px; }
thead th {
  font-family: var(--ff-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--nx-green);
  text-align: right; padding: 12px 16px;
  border-bottom: 2px solid var(--nx-green);
  white-space: nowrap;
}
thead th:first-child { text-align: left; }
tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--nx-line);
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--nx-ink-2);
}
tbody td:first-child { text-align: left; font-weight: 500; font-variant-numeric: normal; }
tbody tr:last-child td { border-bottom: none; }
/* Coluna de melhor preço — no guia do cliente ela é argumento de venda */
th.destaque, td.destaque { background: var(--nx-green-soft); }
th.destaque { color: var(--nx-green-deep); position: relative; }
td.destaque { font-weight: 700; color: var(--nx-green-deep); }
tbody tr:last-child td.destaque { border-radius: 0 0 8px 8px; }
.tab-nota { font-size: 14px; color: var(--nx-mute-2); margin-top: 14px; line-height: 1.55; }

/* ---- Horários / turmas --------------------------------------------------- */
.horarios { display: flex; flex-wrap: wrap; gap: 11px; }
.horario-chip {
  border: 1px solid var(--nx-line-strong);
  border-radius: 24px; padding: 9px 17px;
  font-size: 15px; color: var(--nx-ink-2); background: #fff;
}
.horario-chip strong {
  font-family: var(--ff-display); font-weight: 600;
  color: var(--nx-green); margin-right: 8px;
}

/* ---- Silver / Gold ------------------------------------------------------- */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }
.tier {
  border: 1px solid var(--nx-line); border-radius: 9px;
  padding: 24px 26px; background: #FCFCFA;
}
.tier.gold {
  border-color: rgba(242,107,31,.32);
  background: var(--nx-orange-soft);
  box-shadow: 0 2px 20px rgba(242,107,31,.07);
}
.tier-nome {
  font-family: var(--ff-display);
  font-size: 21px; font-weight: 700; color: var(--nx-green);
  display: flex; align-items: baseline; gap: 11px; flex-wrap: wrap;
}
.tier-selo {
  font-family: var(--ff-sans);
  font-size: 10px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--nx-mute-2);
}
.tier.gold .tier-selo { color: var(--nx-orange-deep); }
.tier-heranca { font-size: 14px; color: var(--nx-mute); font-style: italic; margin: 12px 0 0; }
.tier ul { list-style: none; display: grid; gap: 9px; margin-top: 16px; }
.tier li {
  position: relative; padding-left: 23px;
  font-size: 15px; line-height: 1.5; color: var(--nx-ink-2);
}
.tier li::before {
  content: ''; position: absolute; left: 3px; top: .38em;
  width: 10px; height: 5px;
  border-left: 2px solid var(--nx-line-strong);
  border-bottom: 2px solid var(--nx-line-strong);
  transform: rotate(-45deg);
}
.tier.gold li::before { border-color: var(--nx-orange); }

/* ---- Diferenciais -------------------------------------------------------- */
.difs {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px; background: var(--nx-line);
  border: 1px solid var(--nx-line); border-radius: 9px; overflow: hidden;
  margin-top: 38px;
}
.dif { background: var(--nx-paper); padding: 24px 24px 26px; }
.dif h4 {
  font-family: var(--ff-display);
  font-size: 16.5px; font-weight: 700; color: var(--nx-green); margin-bottom: 7px;
}
.dif p { font-size: 15px; color: var(--nx-mute); line-height: 1.55; }

/* ---- Níveis de fisioterapia ---------------------------------------------- */
.nivel {
  margin-top: 34px;
  background: var(--nx-paper);
  border: 1px solid var(--nx-line);
  border-radius: 10px; overflow: hidden;
}
.nivel-head {
  padding: clamp(22px, 3vw, 32px) clamp(22px, 3vw, 34px) clamp(18px, 2.2vw, 24px);
  border-bottom: 1px solid var(--nx-line);
}
.nivel-head h3 {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.7vw, 28px); font-weight: 700;
  color: var(--nx-green); letter-spacing: -.02em;
  display: flex; align-items: baseline; gap: 13px; flex-wrap: wrap;
}
.nivel-publico {
  font-family: var(--ff-sans);
  font-size: 12.5px; font-weight: 500; color: var(--nx-mute-2);
  border: 1px solid var(--nx-line-strong);
  padding: 4px 12px; border-radius: 20px;
}
.nivel-perfil { font-size: 16px; color: var(--nx-mute); margin-top: 12px; line-height: 1.6; max-width: 68ch; }
.nivel-body { padding: clamp(22px, 3vw, 32px) clamp(22px, 3vw, 34px) clamp(24px, 3vw, 34px); }
.nivel-body > * + * { margin-top: 26px; }
.nivel-selo {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  background: var(--nx-orange-soft); color: var(--nx-orange-deep);
  border: 1px solid rgba(242,107,31,.25);
  padding: 7px 14px; border-radius: 4px;
}

/* ---- Caixa genérica ------------------------------------------------------ */
.caixa {
  margin-top: 30px;
  background: var(--nx-paper);
  border: 1px solid var(--nx-line);
  border-radius: 10px;
  padding: clamp(22px, 3vw, 30px) clamp(22px, 3vw, 34px);
}
.caixa h4 {
  font-family: var(--ff-display);
  font-size: 19px; font-weight: 700; color: var(--nx-green); margin-bottom: 11px;
}
.caixa p { font-size: 16px; color: var(--nx-ink-2); line-height: 1.6; max-width: 70ch; }
.caixa p + p { margin-top: 10px; }
.caixa .lista-regras, .caixa .lista-check { margin-top: 16px; }

/* Destaque em verde — usado no Desconto Integrativo */
.caixa.forte {
  background: var(--nx-green); border-color: var(--nx-green);
  color: #fff;
}
.caixa.forte h4 { color: #fff; }
.caixa.forte p { color: rgba(255,255,255,.86); }
.caixa.forte .lista-regras li { color: rgba(255,255,255,.8); }
.caixa.forte .lista-regras li::before { background: rgba(255,255,255,.35); }
.caixa.forte thead th { color: #fff; border-bottom-color: rgba(255,255,255,.4); }
.caixa.forte tbody td { color: rgba(255,255,255,.92); border-bottom-color: rgba(255,255,255,.12); }
.caixa.forte .tab-titulo { color: rgba(255,255,255,.5); }
.caixa.forte .tab-nota { color: rgba(255,255,255,.55); }

/* ---- Selo de percentual (Desconto Integrativo) --------------------------- */
.pct {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.pct-num {
  font-family: var(--ff-display);
  font-size: clamp(56px, 9vw, 92px);
  font-weight: 800; line-height: .85;
  letter-spacing: -.05em;
  color: var(--nx-orange);
}
.pct-txt { font-size: 17px; color: rgba(255,255,255,.86); max-width: 34ch; line-height: 1.5; }

/* ---- Case corporativo ---------------------------------------------------- */
.case { margin-top: 30px; border: 1px solid var(--nx-line); border-radius: 10px; overflow: hidden; }
.case-head { background: var(--nx-green); color: #fff; padding: 20px 28px; }
.case-head .rot {
  font-family: var(--ff-display);
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--nx-orange); margin-bottom: 6px;
}
.case-head h4 { font-family: var(--ff-display); font-size: 21px; font-weight: 700; }
.case-body { padding: 24px 28px; background: var(--nx-paper); }
.case-body p { font-size: 16px; color: var(--nx-ink-2); line-height: 1.6; }

/* ---- Pagamento ----------------------------------------------------------- */
.pag-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(264px, 1fr)); gap: 18px; margin-top: 36px; }
.pag-item {
  border: 1px solid var(--nx-line); border-radius: 9px;
  padding: 24px 26px; background: var(--nx-paper);
}
.pag-item h4 {
  font-family: var(--ff-display);
  font-size: 16.5px; font-weight: 700; color: var(--nx-green); margin-bottom: 8px;
}
.pag-item p { font-size: 15px; color: var(--nx-mute); line-height: 1.55; }

/* =============================================================================
   FECHAMENTO
   ========================================================================== */
.fim {
  margin-top: clamp(70px, 10vw, 118px);
  background: var(--nx-green);
  color: #fff;
  padding: clamp(54px, 8vw, 92px) 0 clamp(40px, 5vw, 58px);
}
.fim .frase {
  font-family: var(--ff-display);
  font-size: clamp(26px, 4.2vw, 44px);
  font-weight: 600; line-height: 1.18;
  letter-spacing: -.028em;
  max-width: 20ch;
}
.fim .cta { margin-top: 40px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.16); }
.fim .cta h3 {
  font-family: var(--ff-display);
  font-size: clamp(21px, 2.7vw, 27px); font-weight: 700;
  color: var(--nx-orange); margin-bottom: 9px;
}
.fim .cta p { font-size: 17px; color: rgba(255,255,255,.76); max-width: 46ch; line-height: 1.55; }
.fim .assin {
  margin-top: 46px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 8px 26px;
  font-size: 13px; color: rgba(255,255,255,.46);
}
.fim .assin img { height: 22px; width: auto; opacity: .8; }

/* =============================================================================
   ENTRADA — uma orquestração de página, não micro-interação espalhada
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow, .hero h1, .hero .lead, .hero-meta, .pilares {
    animation: sobe .62s cubic-bezier(.22,.68,.36,1) backwards;
  }
  .hero h1     { animation-delay: .06s; }
  .hero .lead  { animation-delay: .13s; }
  .hero-meta   { animation-delay: .19s; }
  .pilares     { animation-delay: .25s; }

  @keyframes sobe {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: none; }
  }

  /* Seções aparecem ao entrar na viewport */
  .sec { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,.68,.36,1); }
  .sec.vis { opacity: 1; transform: none; }
}

/* =============================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .topo-in { height: 56px; gap: 14px; }
  .topo img { height: 22px; }
  .hero h1 { max-width: none; }
  .lista-check { grid-template-columns: 1fr; }
  .preco { padding: 20px 22px; }
  .variante { justify-content: flex-start; }
}

/* =============================================================================
   IMPRESSÃO
   ========================================================================== */
@media print {
  body { background: #fff; font-size: 10.5pt; }
  .topo { display: none !important; }
  .sec { opacity: 1 !important; transform: none !important; break-inside: avoid; padding-top: 20pt; }
  .hero { padding: 0 0 20pt; }
  .hero::before, .hero::after { display: none; }
  .prod, .nivel, .caixa, .case, .tier, .pag-item { break-inside: avoid; }
  .caixa.forte, .fim { background: #fff !important; color: #000 !important; border: 1.5pt solid #0E3A2C; }
  .caixa.forte h4, .caixa.forte p, .fim .frase, .fim .cta p { color: #000 !important; }
  .pct-txt { color: #000 !important; }
  .fim .assin { color: #444 !important; }
  a { text-decoration: none; color: inherit; }
}
