:root {
  --bg: #0c0508;
  --bg-2: #14080c;
  --pink: #ea044f;
  --pink-2: #c70341;
  --pink-3: #ff2d6a;
  --pink-soft: #ff7aa3;
  --text: #fff;
  --muted: #c4a8b2;
  --line: rgba(234, 4, 79, 0.28);
  --card: #16090e;
  --font: "Poppins", sans-serif;
  --wrap: 1120px;
  --grad: linear-gradient(135deg, #ff2d6a, #ea044f 50%, #c70341);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }

.wrap { width: min(100% - 2rem, var(--wrap)); margin-inline: auto; }

.age-bar {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px;
  background: var(--grad);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 5, 8, 0.96);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}
.brand strong { color: var(--pink-3); font-weight: 800; }
.nav {
  display: none;
  gap: 1.25rem;
  font-size: 14px;
  color: var(--muted);
}
.nav a:hover { color: #fff; }
@media (min-width: 860px) { .nav { display: flex; } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn-solid { background: var(--grad); color: #fff; box-shadow: 0 10px 28px rgba(234,4,79,.35); }
.btn-line { background: transparent; border: 1px solid var(--pink); color: var(--pink-3); }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-block { width: 100%; }

/* HERO */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  place-items: end center;
  overflow: hidden;
  text-align: center;
}
.hero-media { position: absolute; inset: 0; background: #12060a; }
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  object-position: center top;
}
.hero-video--desk { display: none; }
.hero-video--mob { display: block; }
@media (min-width: 768px) {
  .hero-video--desk { display: block; }
  .hero-video--mob { display: none; }
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,5,8,.25) 0%, rgba(12,5,8,.15) 35%, rgba(12,5,8,.55) 65%, #0c0508 100%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 720px);
  margin: 0 auto;
  padding: 1.5rem 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: rise .7s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.hero-logo {
  width: clamp(72px, 16vw, 96px);
  height: clamp(72px, 16vw, 96px);
  border-radius: clamp(18px, 4vw, 24px);
  margin-bottom: 1.1rem;
  box-shadow: 0 16px 36px rgba(234,4,79,.4);
}
.hero h1 {
  font-size: clamp(1.75rem, 5.5vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .8rem;
  max-width: 16ch;
}
.hero h1 span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy > p {
  color: var(--muted);
  max-width: 34rem;
  margin: 0 auto .55rem;
  font-size: clamp(.92rem, 2.4vw, 1.05rem);
  padding: 0 .25rem;
}
.hero-copy > p:first-of-type {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  letter-spacing: .02em;
}
.hero-desc {
  color: rgba(255, 255, 255, 0.72) !important;
  max-width: 36rem !important;
  margin: 0 auto 1.35rem !important;
  font-size: clamp(.88rem, 2.3vw, 1.02rem) !important;
  font-weight: 400 !important;
  line-height: 1.45;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  width: 100%;
}
.hero-cta .btn {
  min-width: min(100%, 240px);
}
@media (max-width: 767px) {
  .hero {
    min-height: 72vh;
    place-items: end center;
  }
  .hero-copy {
    padding: 1rem 0 1.5rem;
  }
  .hero-logo {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    margin-bottom: .85rem;
  }
  .hero h1 {
    margin-bottom: .55rem;
  }
  .hero-copy > p {
    margin-bottom: 1rem;
  }
  .hero-cta .btn-lg {
    width: 100%;
    padding: 14px 18px;
  }
  .section {
    padding-top: 2.25rem;
  }
}
@media (min-width: 768px) {
  .hero-copy {
    padding: 2rem 0 4rem;
  }
}

.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg-2); }
.section-head { text-align: center; margin-bottom: 2rem; }
.eyebrow {
  color: var(--pink-3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .45rem;
}
.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: .4rem;
}
.section-head p { color: var(--muted); }

.ph {
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: 16px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  min-height: 180px;
  padding: 1rem;
  width: 100%;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}
.ph:hover {
  border-color: var(--pink);
  transform: translateY(-3px);
}
.ph strong {
  display: block;
  color: #fff;
  margin-bottom: .25rem;
}
.ph small { color: var(--pink-3); font-weight: 700; font-size: 12px; }

.center-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.cta-band {
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(234,4,79,.22), transparent 60%),
    var(--bg);
}
.cta-band-inner {
  display: grid;
  justify-items: center;
  gap: .85rem;
}
.cta-band img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
}
.cta-band h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
}
.cta-band p { color: var(--muted); max-width: 28rem; }

.grid-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 800px) {
  .grid-cards { grid-template-columns: repeat(3, 1fr); }
}
.grid-cards .ph { aspect-ratio: 3/4; min-height: 0; }
.ph-media {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-style: solid;
}
.ph-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.ph-media:hover img {
  transform: scale(1.04);
}

/* Prévias: escurecidas + blur + texto assinantes */
.ph-locked img {
  filter: brightness(0.38) blur(7px);
  transform: scale(1.08);
  transition: filter .35s ease, transform .35s ease;
}
.ph-locked:hover img {
  filter: brightness(0.42) blur(6px);
  transform: scale(1.12);
}
.ph-lock {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1em;
  padding: 1rem .75rem;
  background: rgba(0, 0, 0, 0.22);
  text-align: center;
  pointer-events: none;
}
.ph-lock-label {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(11px, 2.6vw, 15px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}
.ph-lock-title {
  color: #fff;
  font-size: clamp(18px, 4.2vw, 28px);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
}
.ph-lock-cta {
  margin-top: .7rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem .4rem .85rem;
  border: 1px solid rgba(234, 4, 79, 0.45);
  border-radius: 999px;
  color: #fff;
  font-size: clamp(9px, 2vw, 11px);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(234, 4, 79, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: background .25s ease, border-color .25s ease;
}
.ph-lock-icon {
  flex-shrink: 0;
  color: #ff8ab0;
  filter: drop-shadow(0 0 4px rgba(234, 4, 79, 0.55));
}
.ph-locked:hover .ph-lock-cta {
  background: rgba(234, 4, 79, 0.48);
  border-color: rgba(234, 4, 79, 0.7);
}
.ph-locked:hover .ph-lock-icon {
  color: #fff;
}

.benefit-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .benefit-row { grid-template-columns: repeat(4, 1fr); }
}
.benefit-row article {
  border-top: 2px solid var(--pink);
  padding-top: 1rem;
}
.benefit-row h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.benefit-row p { color: var(--muted); font-size: .92rem; }

.grid-models {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 700px) {
  .grid-models { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1100px) {
  .grid-models { grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
}
.grid-models .ph { aspect-ratio: 3/4; min-height: 0; }

/* Carrosséis em faixa */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #10060a;
  padding: 10px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: marquee-left 45s linear infinite;
}
.marquee-track--reverse {
  animation-name: marquee-right;
  animation-duration: 55s;
}
.marquee-item {
  flex: 0 0 auto;
  width: 92px;
  height: 122px;
  padding: 0;
  border: 1px solid rgba(234,4,79,.25);
  border-radius: 10px;
  overflow: hidden;
  background: #0c0508;
  cursor: pointer;
}
.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) blur(3px);
  transform: scale(1.1);
  display: block;
}
.marquee-item:hover img { filter: brightness(0.48) blur(2.5px); }
@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (min-width: 768px) {
  .marquee-item {
    width: 110px;
    height: 146px;
  }
}

.steps {
  list-style: none;
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
.steps li {
  display: grid;
  gap: .6rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
}
.steps span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--pink-3);
}
.steps p { color: var(--muted); font-size: .9rem; }

.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
}
.footer-inner {
  display: grid;
  justify-items: center;
  gap: .75rem;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.footer img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .85rem 1.1rem; }
.footer-links a:hover { color: var(--pink-3); }

/* modal legal */
#legalModal { z-index: 120; }
.legal-card {
  position: relative;
  width: min(100%, 560px);
  max-height: 88vh;
  overflow: auto;
  background: #12060a;
  border: 1px solid rgba(234, 4, 79, 0.4);
  border-radius: 16px;
  padding: 1.5rem 1.25rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.65);
  animation: rise .25s ease both;
}
.legal-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 2rem .9rem 0;
  color: #fff;
}
.legal-body {
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  line-height: 1.55;
}
.legal-body h3 {
  color: #fff;
  font-size: .98rem;
  font-weight: 700;
  margin: 1.15rem 0 .4rem;
}
.legal-body p { margin: 0 0 .65rem; }
.legal-body ul {
  margin: 0 0 .75rem;
  padding-left: 1.15rem;
}
.legal-body li { margin-bottom: .35rem; }
.legal-body strong { color: #ff8ab0; }
.checkout-legal {
  margin: .95rem 0 0;
  text-align: center;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255,255,255,.55);
}
.checkout-legal strong { color: #ff8ab0; font-weight: 700; }
.checkout-legal a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.checkout-legal a:hover { color: var(--pink-3); }
.processor-note {
  display: block;
  margin-top: .55rem;
  font-size: 10px;
  line-height: 1.4;
  color: rgba(255,255,255,.38);
}

/* modal ASSINE JÁ — sem blur */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.8);
}
.subscribe-card {
  position: relative;
  width: min(100%, 400px);
  max-height: 92vh;
  overflow: auto;
  background: #12060a;
  border: 1px solid rgba(234, 4, 79, 0.45);
  border-radius: 16px;
  padding: 1.5rem 1.25rem 1.35rem;
  box-shadow: 0 0 0 1px rgba(199, 3, 65, 0.2), 0 24px 60px rgba(0,0,0,.6);
  animation: rise .25s ease both;
}
.modal-x {
  position: absolute;
  top: 6px;
  right: 12px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}
.sub-title {
  text-align: center;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.sub-lead {
  text-align: center;
  color: var(--pink-soft);
  font-size: .92rem;
  margin: .25rem 0 1.1rem;
  font-weight: 600;
}

.plan-list {
  display: grid;
  gap: 8px;
}
.plan-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0c0508;
  cursor: pointer;
}
.plan-item input { display: none; }
.plan-item.is-extra { display: none; }
.plan-list.show-all .plan-item.is-extra { display: grid; }
.plan-item.is-active {
  border-color: var(--pink-soft);
  background: linear-gradient(180deg, #ea044f 0%, #9a0232 100%);
  box-shadow: 0 0 0 1px rgba(255,122,163,.25);
}
.plan-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--pink-soft);
  display: grid;
  place-items: center;
}
.plan-item.is-active .plan-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
.plan-name { font-weight: 700; font-size: .95rem; }
.plan-name em {
  font-style: normal;
  font-size: 11px;
  color: #ffd0de;
  margin-left: 4px;
}
.plan-price { font-weight: 800; font-size: 1.05rem; }

.plans-toggle {
  display: block;
  width: 100%;
  margin: 10px 0 14px;
  border: 0;
  background: none;
  color: var(--pink-soft);
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 1rem;
  font-size: 13px;
  color: #b9a0aa;
}
.field input {
  border: 1px solid rgba(255,255,255,.14);
  background: #0c0508;
  border-radius: 10px;
  padding: 12px;
  outline: none;
  color: #fff;
}
.field input:focus { border-color: var(--pink); }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pay-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.pay-or { color: #888; font-size: .85rem; }
.pay-btn {
  flex: 1;
  border-radius: 8px;
  padding: 14px 12px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  border: 0;
}
.pay-btn-pix {
  background: linear-gradient(180deg, #ff2d6a 0%, #c70341 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(234, 4, 79, 0.45);
}
.pay-btn-card {
  background: #0c0508;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}

.seals {
  list-style: none;
  display: grid;
  gap: 6px;
  color: #cfc0c6;
  font-size: .88rem;
}
.seals li::before {
  content: "✓ ";
  color: var(--pink-soft);
  font-weight: 800;
}

.muted { color: var(--muted); font-size: .92rem; margin-bottom: .75rem; }
.price-big {
  font-size: 2rem;
  font-weight: 800;
  color: var(--pink-3);
  text-align: center;
}
.pix-box {
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 1rem;
  margin: 1rem 0;
  font-size: .88rem;
  color: var(--muted);
  word-break: break-all;
  display: grid;
  gap: .75rem;
  justify-items: center;
  text-align: center;
}
.pix-qr {
  width: min(220px, 70vw);
  height: auto;
  border-radius: 10px;
  background: #fff;
  padding: 8px;
}
.pix-code {
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255,255,255,.65);
  max-width: 100%;
  margin: 0;
}
#btnOpenBot, #btnCheckStatus { margin-top: .55rem; }
.card-success {
  display: grid;
  gap: .85rem;
  justify-items: stretch;
  text-align: center;
  padding: .35rem 0 .25rem;
}
.card-success[hidden] { display: none !important; }
.card-success-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}
.card-success-text {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: .92rem;
  line-height: 1.45;
}
.card-success .btn-line {
  margin-top: .15rem;
}
#cardFormFields {
  display: grid;
  gap: 0;
}
#cardFormFields .btn-block {
  margin-top: .35rem;
}
.status-line {
  margin-top: .85rem;
  text-align: center;
  font-size: .88rem;
  color: var(--pink-soft);
  min-height: 1.2em;
}
.secure {
  margin: 10px 0;
  text-align: center;
  font-size: 12px;
  color: #888;
}
.back-link {
  display: block;
  margin: 10px auto 0;
  border: 0;
  background: none;
  color: var(--pink-soft);
  cursor: pointer;
  text-decoration: underline;
}
body.modal-open { overflow: hidden; }

@media (max-width: 700px) {
  .topbar .btn-solid { padding: 8px 12px; font-size: 12px; }
}
