/* Minha Plaquinha, Meu Negócio
   Mesma linguagem do minhaplaquinha.com.br: fundo claro, manchas nas quatro
   cores, nome colorido letra a letra, azul para navegar e verde para conversar. */

:root {
  --azul: #4285f4;
  --vermelho: #ea4335;
  --amarelo: #fbbc05;
  --amarelo-escuro: #e0a800;
  --verde: #34a853;

  --marca-600: #1f63d6;
  --marca-700: #184fb0;
  --zap: #1f9d55;
  --zap-escuro: #17834a;

  --tinta: #0f172a;
  --tinta-2: #334155;
  --tinta-3: #64748b;
  --linha: #e2e8f0;
  --papel: #ffffff;
  --papel-2: #f5f8fc;
  --noite: #0b1324;

  --raio: 18px;
  --sombra: 0 1px 2px rgb(15 23 42 / .05), 0 10px 30px -12px rgb(15 23 42 / .18);
  --fonte: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 76px; }
body {
  margin: 0;
  background: var(--papel);
  color: var(--tinta);
  font-family: var(--fonte);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
p { margin: 0; }
a { color: inherit; }
svg { display: block; }

.caixa { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 16px; }
.caixa-estreita { max-width: 820px; }
@media (min-width: 48rem) { .caixa { padding: 0 28px; } }

.pular {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--tinta); color: #fff; padding: 10px 14px; border-radius: 10px;
}
.pular:focus { top: 12px; }

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

/* Cores utilitárias */
.c-azul { color: var(--azul); }
.c-vermelho { color: var(--vermelho); }
.c-amarelo { color: var(--amarelo); }
.c-verde { color: var(--verde); }
.c-fundo-azul { background: var(--azul); }
.c-fundo-vermelho { background: var(--vermelho); }
.c-fundo-amarelo { background: var(--amarelo); }
.c-fundo-verde { background: var(--verde); }

/* Nome da marca (as letras são coloridas pelo app.js; sem script fica azul) */
.marca { font-weight: 800; letter-spacing: -0.01em; color: var(--marca-600); }
.marca .l0 { color: var(--azul); }
.marca .l1 { color: var(--vermelho); }
.marca .l2 { color: var(--amarelo-escuro); }
.marca .l3 { color: var(--verde); }

/* ================================ Botões ================================ */
.botao {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-weight: 700; text-decoration: none; line-height: 1.2;
  border-radius: 14px; border: 2px solid transparent; cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.8,.3,1), box-shadow .18s ease, background-color .18s ease;
  -webkit-tap-highlight-color: transparent;
}
.botao::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(110deg, transparent 25%, rgb(255 255 255 / .28) 50%, transparent 75%);
  transform: translateX(-120%); transition: transform .65s ease;
}
.botao:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgb(0 0 0 / .45); }
.botao:hover::after { transform: translateX(120%); }
.botao:active { transform: translateY(0) scale(.985); }
.botao-p { padding: 9px 14px; font-size: 15px; border-radius: 12px; }
.botao-g { padding: 15px 22px; font-size: 17px; }
.botao-bloco { width: 100%; }
.botao-verde { background: var(--zap); color: #fff; }
.botao-verde:hover { background: var(--zap-escuro); }
.botao-azul { background: var(--marca-600); color: #fff; }
.botao-azul:hover { background: var(--marca-700); }
.botao-contorno { background: rgb(255 255 255 / .75); color: var(--tinta); border-color: var(--linha); }
.botao-contorno:hover { border-color: #cbd5e1; background: #fff; }
.ico-zap { width: 22px; height: 22px; flex: none; }
.botao-p .ico-zap { width: 18px; height: 18px; }

@keyframes pulso {
  0%, 100% { box-shadow: 0 0 0 0 rgb(31 157 85 / .45); }
  50% { box-shadow: 0 0 0 13px rgb(31 157 85 / 0); }
}
.pulso { animation: pulso 2.8s ease-out infinite; }

/* ================================ Topo ================================ */
.topo {
  position: sticky; top: 0; z-index: 50;
  background: rgb(255 255 255 / .86);
  backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid rgb(226 232 240 / .8);
}
.topo-linha { display: flex; align-items: center; gap: 16px; height: 64px; }
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; min-width: 0; }
.logo .marca { font-size: 18px; white-space: nowrap; }
.logo-selo {
  font-size: 12px; font-weight: 700; white-space: nowrap;
  padding: 3px 8px; border-radius: 999px; background: var(--tinta); color: #fff;
}
.menu { display: none; margin-left: auto; gap: 26px; }
.menu a { text-decoration: none; color: var(--tinta-2); font-size: 15px; font-weight: 600; }
.menu a:hover { color: var(--marca-600); }
.topo .botao { margin-left: auto; }
@media (min-width: 60rem) {
  .menu { display: flex; }
  .topo .botao { margin-left: 8px; }
}
@media (max-width: 26rem) {
  .topo .botao span { display: none; }
  .topo .botao { padding: 9px 11px; }
}

/* ================================ Manchas ================================ */
.manchas { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.mancha {
  position: absolute; border-radius: 999px; filter: blur(72px); opacity: .38;
  animation: flutua 21s ease-in-out infinite alternate;
}
.m1 { background: var(--azul); width: 380px; height: 380px; top: -120px; left: -110px; }
.m2 { background: var(--vermelho); width: 300px; height: 300px; top: -60px; right: -40px; animation-duration: 25s; opacity: .26; }
.m3 { background: var(--amarelo); width: 320px; height: 320px; bottom: -120px; left: 28%; animation-duration: 27s; }
.m4 { background: var(--verde); width: 360px; height: 360px; bottom: -80px; right: -120px; animation-duration: 23s; opacity: .3; }
.manchas-suaves .mancha { opacity: .16; }
/* As manchas somem aos poucos no fim da seção, sem linha reta. */
.hero .manchas {
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent);
  mask-image: linear-gradient(to bottom, #000 70%, transparent);
}
@keyframes flutua {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(6%, 7%, 0) scale(1.1); }
  100% { transform: translate3d(-5%, 3%, 0) scale(.95); }
}

/* ================================ Hero ================================ */
.hero { position: relative; padding: 44px 0 56px; }
.hero-grade { position: relative; z-index: 1; display: grid; gap: 40px; align-items: center; }
@media (min-width: 60rem) {
  .hero { padding: 72px 0 88px; }
  .hero-grade { grid-template-columns: 1.05fr .95fr; gap: 48px; }
}

.pilula {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 10px; border-radius: 999px;
  background: rgb(255 255 255 / .85); border: 1px solid var(--linha);
  font-size: 14px; font-weight: 700; color: var(--tinta-2);
  box-shadow: 0 1px 2px rgb(15 23 42 / .05);
}
.pontos { display: inline-flex; gap: 4px; }
.pontos i { width: 8px; height: 8px; border-radius: 99px; }
.pontos i:nth-child(1) { background: var(--azul); }
.pontos i:nth-child(2) { background: var(--vermelho); }
.pontos i:nth-child(3) { background: var(--amarelo); }
.pontos i:nth-child(4) { background: var(--verde); }

.hero h1 { margin-top: 18px; font-size: clamp(38px, 9.4vw, 64px); font-weight: 800; letter-spacing: -0.035em; }
.h1-destaque {
  display: block;
  background: linear-gradient(90deg, var(--marca-600), #0d8f52);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-bottom: .06em;
}
/* O ponto dessa fonte no peso 800 nasce afastado da letra. */
.ponto { margin-left: -0.1em; }
.hero-sub { margin-top: 18px; font-size: clamp(17px, 2.2vw, 20px); color: var(--tinta-2); max-width: 36em; }
.hero-botoes { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 30rem) { .hero-botoes .botao { width: 100%; } }
.hero-nota { margin-top: 14px; font-size: 14px; color: var(--tinta-3); }

/* O mapa do negócio */
.mapa {
  position: relative; width: 100%; max-width: 480px; margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.mapa-orbita { position: absolute; inset: 0; width: 100%; height: 100%; }
.mapa-orbita circle {
  fill: none; stroke: #94a3b8; stroke-width: 1.4; stroke-dasharray: 4 8; opacity: .7;
  transform-origin: 200px 200px; animation: gira 60s linear infinite;
}
.mapa-orbita .orbita-2 { stroke: var(--azul); opacity: .35; animation-direction: reverse; animation-duration: 45s; }
@keyframes gira { to { transform: rotate(360deg); } }

.placa {
  position: absolute; left: 50%; top: 50%;
  width: 40%; aspect-ratio: 3 / 3.6;
  transform: translate(-50%, -50%) rotate(-4deg);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-radius: 22px; border: 1px solid #e5e7eb;
  box-shadow: 0 2px 4px rgb(15 23 42 / .06), 0 30px 60px -20px rgb(15 23 42 / .35);
  padding: 9% 8%;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  animation: respira 6s ease-in-out infinite;
}
.placa::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 7px; border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, var(--azul) 0 25%, var(--vermelho) 25% 50%, var(--amarelo) 50% 75%, var(--verde) 75%);
}
@keyframes respira {
  0%, 100% { transform: translate(-50%, -50%) rotate(-4deg); }
  50% { transform: translate(-50%, -53%) rotate(-2deg); }
}
.placa-estrelas { display: flex; gap: 3%; width: 88%; justify-content: center; }
.placa-estrelas svg { width: 18%; height: auto; }
.placa-titulo { font-weight: 800; font-size: clamp(12px, 3.3vw, 17px); text-align: center; line-height: 1.15; color: var(--tinta); }
.placa-base { display: flex; align-items: center; justify-content: center; gap: 10%; width: 100%; }
.placa-nfc {
  position: relative;
  width: 38%; aspect-ratio: 1; border-radius: 30%;
  background: var(--tinta); color: #fff; display: grid; place-items: center;
}
.placa-nfc svg { width: 58%; height: 58%; }
.placa-qr {
  width: 38%; aspect-ratio: 1; border-radius: 12%;
  background:
    linear-gradient(var(--tinta), var(--tinta)) 8% 8% / 28% 28% no-repeat,
    linear-gradient(var(--tinta), var(--tinta)) 92% 8% / 28% 28% no-repeat,
    linear-gradient(var(--tinta), var(--tinta)) 8% 92% / 28% 28% no-repeat,
    repeating-conic-gradient(var(--tinta) 0 25%, #fff 0 50%) 50% 50% / 22% 22%;
  border: 3px solid #fff; outline: 1px solid #e2e8f0;
}
.placa-nfc svg { position: relative; }
.placa-ondas { position: absolute; left: 50%; top: 50%; width: 0; height: 0; }
.placa-ondas i {
  position: absolute; left: -36px; top: -36px; width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--azul); opacity: 0; animation: onda 2.6s ease-out infinite;
}
.placa-ondas i:nth-child(2) { animation-delay: 1.3s; }
@keyframes onda {
  0% { transform: scale(.3); opacity: 0; }
  20% { opacity: .7; }
  100% { transform: scale(1.8); opacity: 0; }
}

.mapa-itens { list-style: none; margin: 0; padding: 0; }
.no {
  position: absolute; display: flex; align-items: center; gap: 8px;
  padding: 7px 12px 7px 7px; border-radius: 999px;
  background: #fff; border: 1px solid var(--linha); box-shadow: var(--sombra);
  font-size: clamp(12px, 3.3vw, 15px); font-weight: 700; white-space: nowrap;
  transform: translate(-50%, -50%);
  animation: boia 7s ease-in-out infinite;
}
.no-ico { width: 30px; height: 30px; border-radius: 999px; display: grid; place-items: center; color: #fff; flex: none; }
.no-ico svg { width: 17px; height: 17px; }
.c-fundo-amarelo.no-ico { color: var(--tinta); }
/* Cinco pontos na órbita externa (r=150 de 400), começando no topo. */
.no-1 { left: 50%; top: 12.5%; }
.no-2 { left: 85.7%; top: 38.4%; animation-delay: -1.4s; }
.no-3 { left: 72%; top: 80.3%; animation-delay: -2.8s; }
.no-4 { left: 28%; top: 80.3%; animation-delay: -4.2s; }
.no-5 { left: 14.3%; top: 38.4%; animation-delay: -5.6s; }
@keyframes boia {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}
@media (max-width: 30rem) {
  .placa { width: 35%; }
  .no { padding: 5px 9px 5px 5px; gap: 6px; }
  .no-ico { width: 24px; height: 24px; }
  .no-ico svg { width: 14px; height: 14px; }
  .no-2 { left: 80%; top: 35%; }
  .no-5 { left: 20%; top: 35%; }
  .no-3 { left: 74%; }
  .no-4 { left: 26%; }
}

/* Entrada do hero, uma vez só */
@keyframes surge { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.surge { animation: surge .7s ease-out both; }
.surge-2 { animation-delay: .15s; }

/* ================================ Seções ================================ */
.secao { position: relative; padding: 68px 0; }
@media (min-width: 60rem) { .secao { padding: 104px 0; } }
.secao > .caixa { position: relative; z-index: 1; }
.secao-cinza { background: var(--papel-2); }
.secao-escura { background: var(--noite); color: #e2e8f0; }
.secao-escura h2, .secao-escura h3 { color: #fff; }

.cabeca { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.sobretitulo {
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em;
  color: var(--marca-600); margin-bottom: 12px;
}
.sobretitulo-claro { color: #8ab4ff; }
h2 { font-size: clamp(30px, 6.4vw, 46px); font-weight: 800; letter-spacing: -0.03em; }
.lead { margin-top: 16px; font-size: clamp(17px, 2vw, 19px); color: var(--tinta-2); }
.secao-escura .lead { color: #cbd5e1; }
h3 { font-size: 19px; font-weight: 800; }

/* Por que */
.porque-grade { display: grid; gap: 40px; align-items: center; }
@media (min-width: 60rem) { .porque-grade { grid-template-columns: .8fr 1.2fr; gap: 72px; } }
.porque-foto { margin: 0; position: relative; }
.porque-foto img {
  border-radius: 24px; box-shadow: var(--sombra); aspect-ratio: 4 / 4.4; object-fit: cover; width: 100%;
}
@media (max-width: 59.99rem) { .porque-foto img { aspect-ratio: 4 / 3; } }
.porque-foto figcaption {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: rgb(255 255 255 / .92); backdrop-filter: blur(6px);
  padding: 10px 14px; border-radius: 12px; font-size: 14px; font-weight: 700;
}
.motivos { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 20px; }
.motivos li { display: flex; gap: 16px; align-items: flex-start; }
.motivo-num {
  flex: none; width: 36px; height: 36px; border-radius: 12px; color: #fff;
  display: grid; place-items: center; font-weight: 800;
}
.motivos p { color: var(--tinta-2); margin-top: 4px; }

/* Frentes */
.frentes { display: grid; gap: 18px; }
@media (min-width: 42rem) { .frentes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .frentes { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.frente {
  position: relative; background: #fff; border: 1px solid var(--linha); border-radius: var(--raio);
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 1px 2px rgb(15 23 42 / .04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.frente::before {
  content: ""; position: absolute; left: 24px; top: 0; width: 44px; height: 4px;
  border-radius: 0 0 4px 4px; background: var(--cor);
}
.frente:hover { transform: translateY(-4px); box-shadow: var(--sombra); border-color: color-mix(in srgb, var(--cor) 35%, var(--linha)); }
.frente-topo { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.frente-ico {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--cor) 13%, #fff); color: var(--cor);
}
.frente-ico svg { width: 24px; height: 24px; }
.etiqueta {
  font-size: 12px; font-weight: 800; padding: 4px 10px; border-radius: 999px;
  background: #f1f5f9; color: var(--tinta-2); white-space: nowrap;
}
.etiqueta-mensal { background: #e7f6ec; color: #147a3f; }
.frente p { color: var(--tinta-2); font-size: 16px; }
.frente-lista { list-style: none; padding: 0; margin: 2px 0 6px; display: grid; gap: 7px; font-size: 15px; color: var(--tinta); }
.frente-lista li { position: relative; padding-left: 24px; }
.frente-lista li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 15px; height: 15px; border-radius: 99px;
  background: color-mix(in srgb, var(--cor) 16%, #fff);
  box-shadow: inset 0 0 0 5px color-mix(in srgb, var(--cor) 16%, #fff), inset 0 0 0 15px var(--cor);
}
.frente-link {
  margin-top: auto; font-weight: 800; text-decoration: none; color: var(--marca-600);
  display: inline-flex; gap: 6px; align-items: center; padding-top: 6px;
}
.frente-link span { transition: transform .2s ease; }
.frente-link:hover span { transform: translateX(4px); }

/* Escada */
.escada-grade { display: grid; gap: 48px; align-items: center; }
@media (min-width: 60rem) { .escada-grade { grid-template-columns: 1fr 1fr; gap: 72px; } }
.exemplo {
  margin-top: 28px; padding: 22px; border-radius: var(--raio);
  background: var(--papel-2); border: 1px solid var(--linha);
}
.exemplo-rotulo { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--tinta-3); }
.exemplo-nome { font-weight: 800; font-size: 18px; margin-top: 2px; }
.linha-tempo { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 14px; }
.linha-tempo li { position: relative; padding-left: 28px; color: var(--tinta-2); }
.linha-tempo li::before {
  content: ""; position: absolute; left: 3px; top: 7px; width: 12px; height: 12px; border-radius: 99px;
  background: #fff; border: 3px solid var(--azul);
}
.linha-tempo li:nth-child(2)::before { border-color: var(--amarelo); }
.linha-tempo li:nth-child(3)::before { border-color: var(--verde); }
.linha-tempo li:not(:last-child)::after {
  content: ""; position: absolute; left: 8px; top: 22px; bottom: -12px; width: 2px; background: var(--linha);
}
.linha-tempo strong { color: var(--tinta); }

.escada {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; align-items: end;
  min-height: 380px; padding: 0 4px;
}
.degrau {
  position: relative; border-radius: 18px 18px 8px 8px; padding: 16px 12px;
  color: #fff; display: flex; flex-direction: column; justify-content: flex-start;
  box-shadow: 0 20px 40px -20px rgb(15 23 42 / .45);
}
.degrau.d1 { height: 170px; background: linear-gradient(180deg, #5b97f7, var(--azul)); }
.degrau.d2 { height: 260px; background: linear-gradient(180deg, #ffcf3f, #f2b100); color: var(--tinta); }
.degrau.d3 { height: 360px; background: linear-gradient(180deg, #4cbf6c, var(--verde)); }
.degrau-num {
  width: 34px; height: 34px; border-radius: 99px; display: grid; place-items: center;
  background: rgb(255 255 255 / .25); font-weight: 800;
}
.d2 .degrau-num { background: rgb(15 23 42 / .1); }
.degrau-titulo { margin-top: 12px; font-weight: 800; font-size: clamp(15px, 3.6vw, 19px); line-height: 1.2; }
.degrau-texto { margin-top: 6px; font-size: clamp(13px, 3.2vw, 15px); opacity: .92; line-height: 1.35; }
.degrau-repete {
  position: absolute; right: 12px; bottom: 14px; width: 40px; height: 40px; border-radius: 99px;
  background: rgb(255 255 255 / .22); display: grid; place-items: center;
}
.degrau-repete svg { width: 22px; height: 22px; animation: gira 6s linear infinite; }

/* Para quem */
.perfis { display: grid; gap: 16px; }
@media (min-width: 42rem) { .perfis { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .perfis { grid-template-columns: repeat(4, 1fr); } }
.perfil {
  background: rgb(255 255 255 / .04); border: 1px solid rgb(255 255 255 / .1);
  border-radius: var(--raio); padding: 24px 22px;
}
.perfil-barra { display: block; width: 36px; height: 4px; border-radius: 4px; margin-bottom: 18px; }
.perfil p { margin-top: 8px; color: #cbd5e1; font-size: 16px; }

/* Montar */
.montar-secao { overflow: hidden; }
.montar-grade { display: grid; gap: 40px; align-items: start; }
@media (min-width: 60rem) { .montar-grade { grid-template-columns: .85fr 1.15fr; gap: 64px; } }
.passos { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.passos li { display: flex; gap: 12px; align-items: center; font-weight: 700; }
.passos span {
  flex: none; width: 32px; height: 32px; border-radius: 99px; display: grid; place-items: center;
  background: var(--tinta); color: #fff; font-size: 15px;
}

.montador {
  background: #fff; border: 1px solid var(--linha); border-radius: 24px;
  padding: 22px; box-shadow: var(--sombra); display: grid; gap: 22px;
}
@media (min-width: 48rem) { .montador { padding: 32px; } }
.montador fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.montador legend { font-weight: 800; font-size: 17px; margin-bottom: 12px; padding: 0; }
.opcoes { display: grid; gap: 10px; }
@media (min-width: 36rem) { .opcoes { grid-template-columns: 1fr 1fr; } }
.opcoes-momento { grid-template-columns: 1fr; }
@media (min-width: 48rem) { .opcoes-momento { grid-template-columns: repeat(3, 1fr); } }
.opcao { position: relative; display: block; cursor: pointer; }
.opcao input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.opcao span {
  display: flex; align-items: center; gap: 10px; min-height: 52px; height: 100%;
  padding: 11px 14px; border-radius: 14px; border: 1.5px solid var(--linha);
  font-size: 15px; font-weight: 600; line-height: 1.3; background: #fff;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.opcao span::before {
  content: ""; flex: none; width: 20px; height: 20px; border-radius: 6px;
  border: 2px solid #cbd5e1; background: #fff center / 14px no-repeat;
  transition: background-color .15s ease, border-color .15s ease;
}
.opcao-radio span::before { border-radius: 99px; }
.opcao:hover span { border-color: #94a3b8; }
.opcao input:checked + span { border-color: var(--zap); background: #effaf3; box-shadow: 0 0 0 3px rgb(31 157 85 / .12); }
.opcao input:checked + span::before {
  border-color: var(--zap); background-color: var(--zap);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E");
}
.opcao-radio input:checked + span::before { background-image: none; box-shadow: inset 0 0 0 4px #fff; }
.opcao input:focus-visible + span { outline: 3px solid var(--azul); outline-offset: 2px; }

.campos { display: grid; gap: 12px; }
@media (min-width: 36rem) { .campos { grid-template-columns: 1fr 1fr; } }
.campo span { display: block; font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.campo em { font-style: normal; font-weight: 500; color: var(--tinta-3); }
.campo input {
  width: 100%; font: inherit; font-size: 16px; padding: 12px 14px; border-radius: 12px;
  border: 1.5px solid var(--linha); background: #fff; color: var(--tinta);
}
.campo input:focus { outline: none; border-color: var(--azul); box-shadow: 0 0 0 3px rgb(66 133 244 / .18); }
.montador-nota { font-size: 13px; color: var(--tinta-3); text-align: center; margin-top: -8px; }

/* Comunidade */
.comunidade {
  display: grid; gap: 24px; align-items: center;
  background: #fff; border: 1px solid var(--linha); border-radius: 24px; padding: 28px 22px;
}
@media (min-width: 60rem) { .comunidade { grid-template-columns: 1fr auto; padding: 44px 48px; gap: 48px; } }
.comunidade h2 { font-size: clamp(26px, 4.6vw, 36px); }
.secao#comunidade { padding: 56px 0; }
@media (max-width: 30rem) { .comunidade .botao { width: 100%; } }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--linha); border-radius: 16px; background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: #cbd5e1; box-shadow: var(--sombra); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 54px 18px 20px; position: relative;
  font-weight: 700; font-size: 17px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 22px; height: 22px; margin-top: -11px;
  border-radius: 99px; background: var(--papel-2) center / 12px no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23334155' stroke-width='3' stroke-linecap='round' d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 20px 20px; color: var(--tinta-2); }

/* Final */
.final { position: relative; overflow: hidden; padding: 84px 0 96px; background: #fbfcfe; border-top: 1px solid var(--linha); }
.final-caixa { position: relative; z-index: 1; text-align: center; display: grid; justify-items: center; }
.final .botao { margin-top: 28px; }
@media (max-width: 30rem) { .final .botao { width: 100%; } }

/* Rodapé */
.rodape { background: var(--noite); color: #94a3b8; padding: 36px 0 110px; font-size: 15px; }
@media (min-width: 60rem) { .rodape { padding-bottom: 36px; } }
.rodape-linha { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: space-between; }
.rodape .marca { font-size: 18px; }
.rodape .marca .l0 { color: #7aa7f8; }
.rodape .marca .l1 { color: #f47b70; }
.rodape .marca .l2 { color: #fcd053; }
.rodape .marca .l3 { color: #6ccb86; }
.rodape-sub { color: #fff; font-weight: 700; }
.rodape nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.rodape nav a { color: #cbd5e1; text-decoration: none; }
.rodape nav a:hover { color: #fff; }
.rodape-legal { margin-top: 18px; font-size: 13px; color: #64748b; }

/* Barra fixa do celular */
.barra-zap {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgb(255 255 255 / .94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--linha);
  transform: translateY(110%); transition: transform .3s ease;
}
.barra-zap .botao { padding: 13px 18px; }
.barra-zap.visivel { transform: none; }
@media (min-width: 60rem) { .barra-zap { display: none; } }

/* ============================ Revelar ao rolar ============================ */
.mn-js [data-revela] {
  opacity: 0; transform: translateY(26px); filter: blur(4px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease;
  transition-delay: var(--atraso, 0s);
}
.mn-js [data-revela="titulo"] { transform: translateY(18px) scale(.98); }
.mn-js [data-revela="zoom"] { transform: scale(.92); }
@media (min-width: 48rem) {
  .mn-js [data-revela="esquerda"] { transform: translateX(-40px); }
}
.mn-js [data-revela][data-revelado] { opacity: 1; transform: none; filter: none; }
.mn-revela-falhou [data-revela] { opacity: 1 !important; transform: none !important; filter: none !important; }
/* Os cards de frente sobem com o hover depois de revelados */
.mn-js .frente[data-revelado]:hover { transform: translateY(-4px); }
.mn-js .degrau[data-revelado] { transform-origin: bottom; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .mn-js [data-revela] { opacity: 1; transform: none; filter: none; }
  html { scroll-behavior: auto; }
}
