/* MounjaFit — preto + rosa. Fundo e brilho modelados dos prints do funil de referência (preto #0b0b0b, brilho nas bordas), trocando o vermelho por rosa. */
:root {
  --fundo: #0b0b0b;
  --brilho: #3a0a22;        /* o "vermelho escuro" das bordas da referência, em rosa */
  --rosa: #ff2e88;          /* botão e barra ativa */
  --rosa-texto: #ff6fae;    /* rótulos pequenos em caixa alta */
  --tinta: #f7f3f5;
  --suave: #a39ca0;
  --linha: #262124;
  --cartao: #151113;
  --verde-zap: #0f4a3c;
}

* { box-sizing: border-box; margin: 0; }

html {
  color-scheme: dark;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  background: var(--fundo);
}

body {
  min-height: 100svh;
  font-family: "Archivo", system-ui, sans-serif;
  color: var(--tinta);
  background: var(--fundo);
  line-height: 1.5;
  isolation: isolate;
}

/* brilho rosa nas bordas, preso na tela (background-attachment: fixed não funciona no iPhone) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60vw 70vh at 105% 35%, var(--brilho), transparent 70%),
    radial-gradient(45vw 55vh at -8% 100%, #2a0819, transparent 70%);
}

/* grão leve por cima do fundo, como a textura dos prints */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }

.miolo { width: min(100% - 32px, 620px); margin-inline: auto; position: relative; }

/* ---------- botões ---------- */
.botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  width: min(100%, 340px);
  padding: 14px 28px;
  border: 0;
  border-radius: 12px;
  background: #e0126f;
  color: #fff;
  font: 700 17px/1.2 "Archivo", sans-serif;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 34px -6px rgba(255, 46, 136, .55);
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  transition: transform 120ms ease-out, box-shadow 120ms ease-out;
}
.botao:active { transform: scale(.97); }
.botao:focus-visible, .link:focus-visible { outline: 2px solid var(--rosa-texto); outline-offset: 3px; }

.link {
  display: inline-block;
  margin-top: 22px;
  padding: 6px;
  border: 0;
  background: none;
  color: var(--suave);
  font: 500 15px "Archivo", sans-serif;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  touch-action: manipulation;
}

@media (hover: hover) and (pointer: fine) {
  .botao:hover { box-shadow: 0 12px 44px -4px rgba(255, 46, 136, .75); }
  .link:hover { color: var(--tinta); }
}

.rotulo {
  font: 700 12px/1 "Archivo", sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rosa-texto);
}

/* ---------- quiz ---------- */
.quiz { padding: 40px 0 64px; text-align: center; }

.duo { display: flex; justify-content: center; }
.duo img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rosa);
  box-shadow: 0 0 0 3px var(--fundo), 0 0 22px rgba(255, 46, 136, .35);
}
.duo img + img { margin-left: -14px; }

.progresso { display: flex; gap: 8px; justify-content: center; margin: 18px 0 24px; }
.progresso span { width: 74px; height: 4px; border-radius: 4px; background: var(--linha); transition: background 300ms ease-out; }
.progresso span.feito { background: var(--rosa); box-shadow: 0 0 10px rgba(255, 46, 136, .6); }

.selo {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 46, 136, .6);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 46, 136, .28), rgba(196, 22, 106, .14));
  box-shadow: 0 0 0 4px rgba(255, 46, 136, .08), 0 8px 28px -8px rgba(255, 46, 136, .55), inset 0 1px 0 rgba(255, 255, 255, .12);
  color: #fff;
  font: 800 12px "Archivo", sans-serif;
  letter-spacing: .24em;
}
.selo svg { width: 13px; height: 13px; color: var(--rosa); }

.pergunta {
  margin: 22px auto 30px;
  max-width: 560px;
  font: 800 clamp(26px, 6.4vw, 34px)/1.18 "Archivo", sans-serif;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.pergunta em { font-style: normal; color: var(--rosa-texto); }

.contexto { max-width: 480px; margin: 18px auto -8px; color: var(--suave); font-size: 16px; }
.contexto strong { color: var(--tinta); }

.tela { display: none; }
.tela.ativa { display: block; animation: entra 360ms ease-out; }
@keyframes entra { from { opacity: 0; transform: translateY(8px); } }

/* comentários */
.comentarios { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--linha); text-align: left; }
.comentarios header { display: flex; gap: 8px; align-items: center; font-size: 14px; color: var(--suave); margin-bottom: 20px; }
.comentarios header strong { color: var(--tinta); }
.comentarios header svg { width: 18px; height: 18px; }
.coment { display: grid; grid-template-columns: 40px 1fr 22px; gap: 12px; padding: 10px 0; align-items: start; }
.coment .av {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  display: grid; place-items: center;
  font: 800 15px "Archivo", sans-serif; text-transform: uppercase;
  background: linear-gradient(140deg, #ff2e88, #7a1244);
}
/* anel de story, como no Instagram */
.coment .av.anel { padding: 2px; border: 2px solid transparent;
  background-image: linear-gradient(#111, #111), linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  background-origin: border-box; background-clip: padding-box, border-box; }
.coment p { font-size: 15px; line-height: 1.4; }
.coment p b { font-weight: 700; }
.coment .texto { white-space: pre-line; }
.selo-azul { width: 14px; height: 14px; margin-left: 4px; vertical-align: -2px; }
.coment small { display: block; margin-top: 4px; font-size: 12.5px; color: var(--suave); }
.curtir { display: grid; justify-items: center; gap: 2px; color: var(--suave); padding-top: 4px; }
.curtir svg { width: 18px; height: 18px; }
.curtir small { margin: 0; font-size: 12px; }
.mais {
  display: block; width: 100%; margin-top: 12px; padding: 12px;
  border: 1px solid var(--linha); border-radius: 10px; background: none;
  color: var(--suave); font: 600 14px "Archivo", sans-serif; cursor: pointer;
}

/* prova e bullets da última tela */
.prova { margin-top: 46px; }
.prova .rotulo { color: var(--suave); }
.espera {
  margin: 14px auto 0; max-width: 460px; padding: 22px;
  border: 1px dashed #3b3337; border-radius: 16px;
  background: var(--verde-zap); color: #d8efe7; font-size: 14px; text-align: left;
}
.descobrir { margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--linha); text-align: left; }
.descobrir .rotulo { display: block; text-align: center; margin-bottom: 22px; color: var(--rosa); }
.descobrir ul { list-style: none; padding: 0; display: grid; gap: 18px; }
.descobrir li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; font-size: 16px; color: #cfc8cc; }
.descobrir li b { color: var(--tinta); }
.check { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: #3a0a22; color: var(--rosa); }
.check svg { width: 14px; height: 14px; }

.aviso { margin-top: 56px; padding: 28px 0 40px; border-top: 1px solid var(--linha); text-align: center; font-size: 12.5px; color: #807a7d; }

/* ---------- VSL ---------- */
.vsl { padding: 44px 0 0; text-align: center; }
.manchete {
  font: 900 clamp(22px, 5.2vw, 30px)/1.22 "Archivo", sans-serif;
  text-transform: uppercase;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.manchete u { text-decoration-thickness: 3px; text-underline-offset: 5px; }
.manchete em { font-style: normal; color: var(--rosa); }
.apoio { margin: 16px auto 28px; max-width: 470px; color: #cfc8cc; font-size: 16px; }

.video {
  position: relative; width: min(100%, 400px); margin: 0 auto; aspect-ratio: 4 / 5;
  border-radius: 18px; overflow: hidden;
  border: 1px solid #2c2629;
  box-shadow: 0 30px 80px -20px rgba(255, 46, 136, .35);
}
.video img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,11,11,.7)); }
.play {
  position: absolute; z-index: 1; inset: 0; margin: auto;
  width: 84px; height: 84px; border-radius: 50%; border: 0;
  background: var(--rosa); color: #fff; display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 0 0 10px rgba(255, 46, 136, .25), 0 10px 40px rgba(255, 46, 136, .6);
}
.play svg { width: 30px; height: 30px; margin-left: 5px; }

.oferta { margin-top: 28px; }
.oferta[hidden] { display: none; }

.prazo {
  display: flex; gap: 12px; align-items: flex-start; text-align: left;
  margin: 40px 0 0; padding: 16px 18px;
  border: 1px solid #5a1535; border-radius: 12px;
  background: #1c0a13; font-size: 15px; color: #f1d9e4;
}
.prazo svg { flex: none; width: 20px; height: 20px; color: var(--rosa); margin-top: 1px; }
.prazo strong { color: var(--rosa-texto); text-decoration: underline; }

.bloco { margin-top: 56px; text-align: left; }
.bloco h2 {
  display: flex; align-items: center; gap: 12px;
  font: 800 23px "Archivo", sans-serif; letter-spacing: -.01em; margin-bottom: 18px;
}
.bloco h2::before { content: ""; width: 4px; height: 24px; border-radius: 2px; background: var(--rosa); }

.autoras {
  display: grid; gap: 22px;
  padding: 18px; border: 1px solid var(--linha); border-radius: 18px; background: var(--cartao);
}
.autora { display: grid; grid-template-columns: 72px 1fr; column-gap: 16px; align-items: center; }
.autora img { grid-row: span 2; width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid var(--rosa); }
.autora p { grid-column: 1 / -1; margin-top: 12px; }
.autora h3 { font: 800 20px "Archivo", sans-serif; }
.autora .rotulo { display: block; margin: 6px 0 0; line-height: 1.4; font-size: 11px; letter-spacing: .16em; color: var(--rosa); }
.autora p { color: #cfc8cc; font-size: 15px; }
.juntas { padding-top: 16px; border-top: 1px solid var(--linha); color: var(--suave); font-style: italic; font-size: 15px; }
.pendente { color: var(--rosa-texto); font-style: normal; }

.refs { display: grid; gap: 12px; }
.refs p { color: var(--suave); font-size: 14px; margin-bottom: 4px; }
.ref { padding: 18px; border: 1px solid var(--linha); border-radius: 14px; background: var(--cartao); font-size: 14px; color: #d9d2d6; }
.ref b {
  display: inline-grid; place-items: center; width: 28px; height: 28px; margin-bottom: 10px;
  border-radius: 6px; background: #3a0a22; color: var(--rosa); font-size: 14px;
}
.ref i { color: var(--suave); }

.rodape { margin-top: 64px; padding: 36px 0 48px; border-top: 1px solid var(--linha); font-size: 12.5px; color: #807a7d; text-align: left; }
.rodape .marca { font: 900 18px "Archivo", sans-serif; color: var(--rosa); margin-bottom: 14px; }
.rodape p + p { margin-top: 10px; }

@media (min-width: 720px) {
  .autoras { grid-template-columns: 1fr 1fr; column-gap: 28px; }
  .juntas { grid-column: 1 / -1; }
  .refs { grid-template-columns: 1fr 1fr; }
  .refs p { grid-column: 1 / -1; }
  .miolo.largo { width: min(100% - 32px, 860px); }
}

@media (prefers-reduced-motion: reduce) {
  .tela.ativa { animation: none; }
  .botao, .progresso span { transition: none; }
}
.pergunta small { display: block; margin-top: 10px; font: 500 .55em "Archivo", sans-serif; letter-spacing: 0; color: var(--suave); }
/* bolinhas com a letra inicial: alterna as cores da marca pra não parecer a mesma pessoa */
.coment:nth-child(3n+2) span.av { background: linear-gradient(140deg, #2f6b4f, #173a2a); }
.coment:nth-child(3n) span.av { background: linear-gradient(140deg, #b07a26, #5a3a0c); }
