:root{
  --bg: #0a0f14;
  --bg-soft: #101820;
  --card: #121b24;
  --card-2: #16222d;
  --text: #f4f7fb;
  --muted: #b4c0cb;
  --line: rgba(255,255,255,0.09);
  --green: #20c65a;
  --green-2: #0ea54a;
  --yellow: #ffd54a;
  --red: #ff5858;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:
    radial-gradient(circle at top, rgba(44,88,133,.16), transparent 30%),
    linear-gradient(180deg, #091017 0%, #0d141c 100%);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

button{
  font-family:inherit;
}

.container{
  width:min(calc(100% - 32px), var(--container));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(7,12,17,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.topbar__inner{
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  padding:8px 0;
  text-align:center;
}

.topbar__live{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  color:#fff;
  letter-spacing:.3px;
}

.live-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#ff2d2d;
  box-shadow:0 0 0 0 rgba(255,45,45,.8);
  animation:pulseLive 1.6s infinite;
}

@keyframes pulseLive{
  0%{ box-shadow:0 0 0 0 rgba(255,45,45,.7); }
  70%{ box-shadow:0 0 0 12px rgba(255,45,45,0); }
  100%{ box-shadow:0 0 0 0 rgba(255,45,45,0); }
}

.topbar__text{
  color:var(--muted);
  font-size:14px;
}

.topbar__text strong{
  color:#fff;
}

.hero{
  padding:64px 0 34px;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:40px;
  align-items:center;
}

.badge,
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.05);
  color:#d8e3ed;
  border-radius:999px;
  padding:10px 16px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.4px;
}

.badge{
  margin-bottom:18px;
}

.hero h1{
  font-size: clamp(2rem, 4vw, 4rem);
  line-height:1.06;
  font-weight:800;
  margin-bottom:18px;
  max-width:780px;
}

.hero h1 span{
  color:var(--yellow);
}

.hero__subtitle{
  font-size:18px;
  color:var(--muted);
  max-width:720px;
  margin-bottom:22px;
}

.hero__highlights{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin:22px 0 28px;
}

.highlight{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:13px 14px;
  font-size:15px;
  color:#e8eef5;
}

.hero__cta-group{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.btn{
  border:none;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:58px;
  padding:0 28px;
  border-radius:16px;
  font-weight:800;
  transition:.25s ease;
}

.btn--hero{
  min-width:280px;
}

.btn--primary{
  background:linear-gradient(180deg, #28da68 0%, #12b64f 100%);
  color:#fff;
  box-shadow:0 14px 30px rgba(18,182,79,.28);
}

.btn--primary:hover{
  transform:translateY(-2px);
  filter:brightness(1.03);
}

.btn--ghost{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
}

.btn--ghost:hover{
  background:rgba(255,255,255,.08);
}

.hero__mini-proof{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  color:#c8d3de;
  font-size:14px;
}

.hero__visual{
  position:relative;
}

.hero__glow{
  position:absolute;
  inset:10% 8% auto 8%;
  height:70%;
  background:radial-gradient(circle, rgba(255,213,74,.18), transparent 60%);
  filter:blur(20px);
}

.hero__image{
  position:relative;
  z-index:2;
  width:100%;
  max-width:560px;
  margin-inline:auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.45));
}

.emotion-strip{
  padding:18px 0 26px;
}

.emotion-strip .container{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius:20px;
  padding:20px 22px;
  text-align:center;
  color:#dde8f2;
  font-size:18px;
}

.showcase,
.benefits,
.receive-section,
.bonus,
.reviews,
.pricing,
.proof-prints,
.guarantee,
.faq,
.final-cta{
  padding:72px 0;
}

.section-head{
  text-align:center;
  max-width:850px;
  margin:0 auto 34px;
}

.section-head .section-kicker{
  margin-bottom:14px;
}

.section-head h2{
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height:1.12;
  margin-bottom:12px;
  font-weight:800;
}

.section-head p{
  color:var(--muted);
  font-size:17px;
}

.marquee{
  position:relative;
  overflow:hidden;
  margin:18px 0;
}

.marquee::before,
.marquee::after{
  content:"";
  position:absolute;
  top:0;
  width:120px;
  height:100%;
  z-index:3;
  pointer-events:none;
}

.marquee::before{
  left:0;
  background:linear-gradient(90deg, #0d141c 0%, rgba(13,20,28,0) 100%);
}

.marquee::after{
  right:0;
  background:linear-gradient(270deg, #0d141c 0%, rgba(13,20,28,0) 100%);
}

.marquee__track{
  display:flex;
  gap:18px;
  width:max-content;
}

.marquee__track img{
  width:220px;
  height:300px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  flex-shrink:0;
}

.marquee--left .marquee__track{
  animation:scrollLeft 42s linear infinite;
}

.marquee--right .marquee__track{
  animation:scrollRight 42s linear infinite;
}

@keyframes scrollLeft{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

@keyframes scrollRight{
  from{ transform:translateX(-50%); }
  to{ transform:translateX(0); }
}

.benefits__grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.benefit-card{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
}

.benefit-card__icon{
  font-size:28px;
  margin-bottom:14px;
}

.benefit-card h3{
  font-size:20px;
  margin-bottom:10px;
}

.benefit-card p{
  color:var(--muted);
}

.receive-title-wrap{
  display:flex;
  justify-content:center;
  margin-bottom:22px;
}

.receive-title-wrap h2{
  background:rgba(255,255,255,.08);
  color:#fff;
  padding:10px 18px;
  border-radius:12px;
  font-size:clamp(1.3rem, 2.5vw, 2.1rem);
  font-weight:800;
  text-align:center;
}

.receive-card{
  max-width:980px;
  margin:0 auto;
  background:#f8fafc;
  color:#121212;
  border:1px solid #dff0e4;
  border-radius:22px;
  box-shadow:0 20px 50px rgba(0,0,0,.15);
  padding:28px 22px 34px;
}

.receive-card__image{
  max-width:620px;
  margin:0 auto 22px;
}

.receive-card__image img{
  width:100%;
  object-fit:contain;
}

.receive-card__tag{
  width:max-content;
  margin:0 auto 18px;
  border:1px solid #20b455;
  color:#20b455;
  border-radius:999px;
  padding:8px 16px;
  font-weight:800;
  font-size:14px;
}

.receive-card__headline{
  text-align:center;
  font-size:clamp(1.5rem, 3vw, 2.4rem);
  line-height:1.15;
  font-weight:800;
  margin-bottom:8px;
}

.receive-card__headline span{
  color:#ff4b4b;
}

.receive-card__sub{
  text-align:center;
  color:#5b6672;
  font-size:18px;
}

.receive-card__divider{
  width:min(100%, 520px);
  height:1px;
  background:#dde4eb;
  margin:28px auto 22px;
}

.receive-card__list{
  max-width:640px;
  margin:0 auto;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.receive-card__list li{
  position:relative;
  padding-left:32px;
  font-size:18px;
  line-height:1.5;
}

.receive-card__list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#1bb24d;
  font-weight:800;
}

.receive-card__more{
  text-align:center;
  margin-top:24px;
  font-weight:800;
  font-size:22px;
}

.bonus__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.bonus-card{
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.bonus-card__image-wrap{
  aspect-ratio:1 / 1;
  background:#0c141b;
  overflow:hidden;
}

.bonus-card__image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.bonus-card__content{
  padding:18px 18px 22px;
}

.bonus-card__content h3{
  margin-bottom:8px;
  font-size:20px;
}

.bonus-card__content p{
  color:var(--muted);
}

.reviews__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.review-card{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow);
}

.review-card__top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
}

.review-card__top img{
  width:56px;
  height:56px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(255,255,255,.1);
}

.review-card h3{
  font-size:18px;
  margin-bottom:2px;
}

.stars{
  color:var(--yellow);
  letter-spacing:1px;
  font-size:15px;
}

.review-card p{
  color:#d6e0ea;
}

.pricing__grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:28px;
  align-items:stretch;
}

.price-card{
  position: relative;
  background:#f9fbfd;
  color:#111;
  border-radius:24px;
  padding:28px 24px 26px;
  box-shadow:0 24px 60px rgba(0,0,0,.2);
  min-height:100%;
  overflow: visible;
}

.price-card--basic{
  border:1px solid #dfe6ee;
}

.price-card--premium{
  border:2px solid #19b34d;
  box-shadow:0 24px 60px rgba(25,179,77,.18);
}

.premium-badge{
  position:absolute;
  top:-10px;
  left:50%;
  transform:translateX(-50%);
  z-index:10;
  background:linear-gradient(180deg, #1ad95c 0%, #11ad47 100%);
  color:#fff;
  font-weight:800;
  font-size:12px;
  border-radius:999px;
  padding:10px 16px;
  box-shadow:0 10px 30px rgba(17,173,71,.28);
  text-transform:uppercase;
  white-space:nowrap;
}

.price-card__header{
  text-align:center;
  margin-bottom:18px;
}

.price-card__header h3{
  font-size:clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom:8px;
  font-weight:800;
}

.pack-rating{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
  font-size:15px;
  color:#666;
}

.price-card__image{
  margin:0 auto 18px;
  max-width:420px;
}

.price-card__image img{
  width:100%;
  object-fit:contain;
}

.price-card__list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
  font-size:17px;
  margin:8px 0 24px;
  color:#1a1a1a;
}

.premium-list li{
  font-weight:500;
}

.price-card__old-price{
  text-align:center;
  color:#666;
  font-size:22px;
  margin-bottom:8px;
}

.price-card__old-price span{
  color:#e04f4f;
  text-decoration:line-through;
  font-weight:700;
}

.price-card__price{
  text-align:center;
  margin-bottom:22px;
}

.price-card__price strong{
  display:block;
  font-size:clamp(2.6rem, 6vw, 4.6rem);
  line-height:1;
  color:#13ad49;
  font-weight:800;
}

.price-card__price--premium small{
  display:inline-block;
  margin-top:10px;
  background:#dcf6e5;
  color:#129846;
  font-weight:700;
  padding:8px 14px;
  border-radius:999px;
}

.btn--basic{
  width:100%;
  background:#e8ecf2;
  color:#111;
  font-size:22px;
  min-height:64px;
}

.btn--basic:hover{
  background:#dde4ec;
}

.btn--premium{
  width:100%;
  background:linear-gradient(180deg, #24da62 0%, #12b84e 100%);
  color:#fff;
  font-size:24px;
  min-height:68px;
  box-shadow:0 16px 40px rgba(18,184,78,.32);
  animation:pulsePremium 1.8s infinite;
}

.btn--premium:hover{
  transform:translateY(-2px) scale(1.01);
  filter:brightness(1.03);
}

@keyframes pulsePremium{
  0%{ box-shadow:0 0 0 0 rgba(36,218,98,.45), 0 16px 40px rgba(18,184,78,.32); }
  70%{ box-shadow:0 0 0 18px rgba(36,218,98,0), 0 16px 40px rgba(18,184,78,.32); }
  100%{ box-shadow:0 0 0 0 rgba(36,218,98,0), 0 16px 40px rgba(18,184,78,.32); }
}

.price-card__small-alert{
  margin-top:16px;
  text-align:center;
  color:#e25353;
  font-size:14px;
  font-weight:700;
}

.price-card__secure{
  margin-top:14px;
  text-align:center;
  color:#666;
  font-size:14px;
  font-weight:600;
}

/* PROVAS SOCIAIS NOVO CARROSSEL */
.proof-slider-wrap{
  position:relative;
  max-width:1080px;
  margin:0 auto;
}

.proof-slider{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:8px 8px 18px;
  scrollbar-width:none;
  -ms-overflow-style:none;
}

.proof-slider::-webkit-scrollbar{
  display:none;
}

.proof-slide{
  flex:0 0 calc(33.333% - 12px);
  scroll-snap-align:center;
}

.proof-slide img{
  width:100%;
  aspect-ratio: 10 / 19.7;
  object-fit: cover;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  background:#0d141c;
}

.proof-slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(8,14,20,.88);
  color:#fff;
  font-size:34px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:5;
  box-shadow:0 14px 30px rgba(0,0,0,.28);
}

.proof-slider-btn:hover{
  background:rgba(255,255,255,.08);
}

.proof-slider-btn--prev{
  left:-14px;
}

.proof-slider-btn--next{
  right:-14px;
}

.proof-dots{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top:18px;
}

.proof-dot{
  width:11px;
  height:11px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.22);
  cursor:pointer;
  transition:.25s ease;
}

.proof-dot.active{
  background:#fff;
  transform:scale(1.2);
}

.guarantee__grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:32px;
  align-items:center;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  border:1px solid var(--line);
  border-radius:30px;
  padding:32px;
  box-shadow:var(--shadow);
}

.guarantee__image img{
  max-width:320px;
  margin-inline:auto;
}

.guarantee__content h2{
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height:1.1;
  margin:12px 0 14px;
}

.guarantee__content p{
  color:var(--muted);
  margin-bottom:14px;
  font-size:17px;
}

.guarantee__content ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.faq-head{
  margin-bottom:28px;
}

.custom-faq{
  max-width:1060px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.faq-box{
  border:1px solid rgba(255,255,255,.11);
  background:linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border-radius:24px;
  box-shadow:0 12px 35px rgba(0,0,0,.25);
  overflow:hidden;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.faq-box:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.18);
  box-shadow:0 18px 44px rgba(0,0,0,.33);
}

.faq-box.active{
  border-color:rgba(255,255,255,.22);
  box-shadow:0 22px 50px rgba(0,0,0,.36);
}

.faq-question{
  width:100%;
  background:transparent;
  color:#fff;
  border:none;
  outline:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  text-align:left;
  padding:26px 24px;
  font-size:clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight:800;
  cursor:pointer;
}

.faq-icon{
  flex-shrink:0;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  font-size:28px;
  transition:transform .3s ease, background .3s ease;
}

.faq-box.active .faq-icon{
  transform:rotate(180deg);
  background:rgba(255,255,255,.08);
}

.faq-answer{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .38s ease;
}

.faq-box.active .faq-answer{
  grid-template-rows:1fr;
}

.faq-answer__inner{
  overflow:hidden;
  padding:0 24px 0;
  color:#d2dcea;
  font-size:18px;
  transform:translateY(-8px);
  opacity:0;
  transition:transform .32s ease, opacity .32s ease, padding .32s ease;
}

.faq-box.active .faq-answer__inner{
  padding:0 24px 24px;
  transform:translateY(0);
  opacity:1;
}

.final-cta__box{
  text-align:center;
  max-width:900px;
  margin:0 auto;
  padding:34px 28px;
  border-radius:28px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  box-shadow:var(--shadow);
}

.final-cta__box h2{
  font-size:clamp(1.8rem, 3vw, 3rem);
  margin:14px 0 10px;
}

.final-cta__box p{
  color:var(--muted);
  max-width:760px;
  margin:0 auto 24px;
}

.final-cta__buttons{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.sticky-mobile-cta{
  display:none;
}

@media (max-width: 1080px){
  .hero__grid,
  .guarantee__grid,
  .pricing__grid,
  .benefits__grid,
  .bonus__grid,
  .reviews__grid{
    grid-template-columns:1fr 1fr;
  }

  .proof-slide{
    flex:0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px){
  .hero{
    padding-top:44px;
  }

  .hero__grid,
  .guarantee__grid,
  .pricing__grid,
  .benefits__grid,
  .reviews__grid{
    grid-template-columns:1fr;
  }

  .bonus__grid{
    grid-template-columns:1fr 1fr;
    gap:16px;
  }

  .hero__highlights{
    grid-template-columns:1fr;
  }

  .topbar__inner{
    gap:8px;
    padding:10px 0;
  }

  .topbar__text{
    font-size:13px;
  }

  .marquee__track img{
    width:160px;
    height:220px;
  }

  .receive-card{
    padding:22px 14px 26px;
  }

  .receive-card__list li{
    font-size:16px;
    padding-left:28px;
  }

  .price-card{
    padding:24px 18px 22px;
  }

  .btn--premium,
  .btn--basic{
    font-size:20px;
  }

  .faq-question{
    padding:20px 16px;
    font-size:18px;
  }

  .faq-answer__inner,
  .faq-box.active .faq-answer__inner{
    padding-left:16px;
    padding-right:16px;
    font-size:16px;
  }

  .proof-slider{
    padding-left:0;
    padding-right:0;
  }

  .proof-slide{
    flex:0 0 84%;
  }

  .proof-slide img{
  aspect-ratio: 9 / 19.5;
}

  .proof-slider-btn{
    display:none;
  }

  .sticky-mobile-cta{
    display:block;
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:999;
    padding:12px 14px calc(12px + env(safe-area-inset-bottom));
    background:linear-gradient(180deg, rgba(9,16,23,0), rgba(9,16,23,.94));
    backdrop-filter:blur(8px);
  }

  .sticky-mobile-cta__btn{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    border-radius:16px;
    background:linear-gradient(180deg, #26d964 0%, #12b84f 100%);
    color:#fff;
    font-weight:800;
    box-shadow:0 12px 28px rgba(18,184,79,.32);
  }

  body{
    padding-bottom:86px;
  }
}

@media (max-width: 520px){
  .bonus-card__content h3{
    font-size:18px;
  }

  .bonus-card__content p{
    font-size:14px;
  }

  .receive-card__headline{
    font-size:1.4rem;
  }

  .proof-slide{
    flex:0 0 88%;
  }

  .proof-slide img{
  aspect-ratio: 10 / 19.5;
  border-radius:20px;
}
}

.reveal-on-scroll{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.price-card{
  overflow: hidden;
}

.price-card::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:70%;
  height:100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.08) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left .9s ease;
  pointer-events:none;
}

.price-card:hover::before{
  left:160%;
}

.price-card--premium{
  position: relative;
}

.price-card--premium::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:24px;
  padding:1px;
  background: linear-gradient(135deg, rgba(36,218,98,.65), rgba(255,255,255,.18), rgba(36,218,98,.35));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}

/* =========================================================
   FUNDO TEMÁTICO RETRÔ / REVISTA / IMPRESSÃO / BANCA
   Cole tudo no FINAL do style.css
========================================================= */

html, body{
  overflow-x: hidden;
}

body{
  position: relative;
  isolation: isolate;
}

/* CAMADA BASE: profundidade + luz editorial */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 215, 90, 0.10), transparent 18%),
    radial-gradient(circle at 85% 18%, rgba(54, 214, 130, 0.07), transparent 20%),
    radial-gradient(circle at 20% 75%, rgba(255,255,255,0.045), transparent 18%),
    radial-gradient(circle at 78% 82%, rgba(255, 95, 95, 0.05), transparent 18%),
    linear-gradient(180deg, #071019 0%, #0a121c 35%, #0d141c 100%);
  transform: translate3d(0,0,0);
}

/* GRADE SUAVE / PAPEL IMPRESSO */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 54px 54px, 54px 54px;
  animation: retroGridFloat 18s linear infinite;
}

@keyframes retroGridFloat{
  0%{ transform: translate3d(0,0,0); }
  50%{ transform: translate3d(0,-10px,0); }
  100%{ transform: translate3d(0,0,0); }
}

/* HALFTONE / IMPRESSÃO */
.hero,
.showcase,
.receive-section,
.bonus,
.reviews,
.pricing,
.proof-prints,
.guarantee,
.faq,
.final-cta{
  position: relative;
  overflow: hidden;
}

.hero::after,
.showcase::after,
.receive-section::after,
.bonus::after,
.reviews::after,
.pricing::after,
.proof-prints::after,
.guarantee::after,
.faq::after,
.final-cta::after{
  content:"";
  position:absolute;
  inset:auto auto 12px 12px;
  width:140px;
  height:140px;
  pointer-events:none;
  opacity:.09;
  background-image: radial-gradient(circle, #ffffff 1.2px, transparent 1.2px);
  background-size: 10px 10px;
  mask-image: radial-gradient(circle at center, #000 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center, #000 25%, transparent 75%);
}

/* LUZES E MANCHAS EDITORIAIS */
.hero::before,
.showcase::before,
.receive-section::before,
.bonus::before,
.pricing::before,
.faq::before{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  border-radius:50%;
  pointer-events:none;
  filter: blur(8px);
  opacity:.65;
  z-index:0;
  animation: retroBlobFloat 11s ease-in-out infinite;
}

.hero::before{
  top:-120px;
  right:-120px;
  background: radial-gradient(circle, rgba(255,214,74,0.12) 0%, rgba(255,214,74,0.04) 40%, transparent 72%);
}

.showcase::before{
  top:20px;
  left:-140px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.025) 38%, transparent 72%);
}

.receive-section::before{
  bottom:-140px;
  right:-80px;
  background: radial-gradient(circle, rgba(35,205,105,0.12) 0%, rgba(35,205,105,0.035) 40%, transparent 72%);
}

.bonus::before{
  top:30px;
  right:-120px;
  background: radial-gradient(circle, rgba(255,214,74,0.10) 0%, rgba(255,214,74,0.03) 38%, transparent 72%);
}

.pricing::before{
  bottom:-130px;
  left:-110px;
  background: radial-gradient(circle, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 40%, transparent 72%);
}

.faq::before{
  bottom:-120px;
  right:-120px;
  background: radial-gradient(circle, rgba(45,218,98,0.12) 0%, rgba(45,218,98,0.03) 38%, transparent 72%);
}

@keyframes retroBlobFloat{
  0%{ transform: translateY(0px) scale(1); }
  50%{ transform: translateY(-20px) scale(1.05); }
  100%{ transform: translateY(0px) scale(1); }
}

/* LINHAS DE IMPRESSÃO / RECORTE */
.section-head{
  position: relative;
  z-index: 1;
}

.section-head::before{
  content:"";
  display:block;
  width:110px;
  height:16px;
  margin:0 auto 14px;
  opacity:.18;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.7) 0px,
      rgba(255,255,255,0.7) 2px,
      transparent 2px,
      transparent 8px
    );
  border-radius:999px;
  filter: blur(.2px);
}

.section-head::after{
  content:"";
  display:block;
  width:132px;
  height:22px;
  margin:14px auto 0;
  opacity:.12;
  background-image: radial-gradient(circle, #fff 1.2px, transparent 1.2px);
  background-size: 11px 11px;
}

/* MELHORA PREMIUM NOS BLOCOS */
.benefit-card,
.bonus-card,
.review-card,
.price-card,
.receive-card,
.final-cta__box,
.guarantee__grid,
.faq-box{
  backdrop-filter: blur(2px);
}

/* FLUTUANTES TEMÁTICOS */
.retro-floating-layer{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  overflow: hidden;
}

.retro-float{
  position: absolute;
  user-select: none;
  will-change: transform;
  transition: transform .08s linear;
  opacity: .16;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
}

.retro-float--mag{
  width: 120px;
  height: 150px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.03)),
    linear-gradient(135deg, rgba(255,214,74,.18), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  transform: rotate(-10deg);
}

.retro-float--mag::before{
  content:"";
  position:absolute;
  left:10px;
  top:12px;
  right:10px;
  height:18px;
  border-radius:8px;
  background:rgba(255,255,255,.16);
}

.retro-float--mag::after{
  content:"";
  position:absolute;
  left:10px;
  right:10px;
  top:40px;
  bottom:12px;
  border-radius:10px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.11) 0%,
      rgba(255,255,255,.04) 100%
    );
}

.retro-float--star{
  width: 18px;
  height: 18px;
  background: rgba(255,214,74,.28);
  clip-path: polygon(50% 0%, 62% 35%, 100% 50%, 62% 65%, 50% 100%, 38% 65%, 0% 50%, 38% 35%);
}

.retro-float--dot{
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-image: radial-gradient(circle, rgba(255,255,255,.38) 1.2px, transparent 1.2px);
  background-size: 10px 10px;
}

.retro-float--ticket{
  width: 92px;
  height: 44px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(45,218,98,.22), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.12);
  transform: rotate(8deg);
}

.retro-float--ticket::before,
.retro-float--ticket::after{
  content:"";
  position:absolute;
  top:50%;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#0b131c;
  transform: translateY(-50%);
}

.retro-float--ticket::before{ left:-5px; }
.retro-float--ticket::after{ right:-5px; }

/* POSIÇÕES DOS FLUTUANTES */
.retro-float.f1{ top: 8%; left: 4%; }
.retro-float.f2{ top: 16%; right: 6%; }
.retro-float.f3{ top: 34%; left: 2%; }
.retro-float.f4{ top: 42%; right: 3%; }
.retro-float.f5{ top: 58%; left: 7%; }
.retro-float.f6{ top: 74%; right: 8%; }
.retro-float.f7{ top: 84%; left: 10%; }
.retro-float.f8{ top: 24%; left: 82%; }

/* MOVIMENTO BASE */
.float-bob-1{ animation: bob1 7s ease-in-out infinite; }
.float-bob-2{ animation: bob2 9s ease-in-out infinite; }
.float-bob-3{ animation: bob3 8s ease-in-out infinite; }
.float-bob-4{ animation: bob4 10s ease-in-out infinite; }

@keyframes bob1{
  0%,100%{ transform: translateY(0) rotate(-8deg); }
  50%{ transform: translateY(-14px) rotate(-5deg); }
}
@keyframes bob2{
  0%,100%{ transform: translateY(0) rotate(6deg); }
  50%{ transform: translateY(-18px) rotate(10deg); }
}
@keyframes bob3{
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-12px) rotate(4deg); }
}
@keyframes bob4{
  0%,100%{ transform: translateY(0) rotate(10deg); }
  50%{ transform: translateY(-16px) rotate(5deg); }
}

/* BRILHO LEVE AO PASSAR */
.benefit-card:hover,
.bonus-card:hover,
.review-card:hover,
.faq-box:hover{
  box-shadow: 0 26px 60px rgba(0,0,0,.32);
}

/* RESPONSIVO */
@media (max-width: 900px){
  .retro-float--mag{
    width: 88px;
    height: 114px;
  }

  .retro-float--dot{
    width: 58px;
    height: 58px;
  }

  .retro-float--ticket{
    width: 72px;
    height: 36px;
  }
}

@media (max-width: 768px){
  body::after{
    opacity: .12;
  }

  .retro-float{
    opacity: .11;
  }

  .retro-float.f3,
  .retro-float.f6{
    display:none;
  }

  .hero::before,
  .showcase::before,
  .receive-section::before,
  .bonus::before,
  .pricing::before,
  .faq::before{
    width: 240px;
    height: 240px;
  }
}

/* CORREÇÃO DO SELO PREMIUM */
.pricing{
  overflow: visible !important;
  padding-top: 92px;
}

.pricing__grid{
  overflow: visible !important;
  align-items: stretch;
}

.price-card{
  overflow: visible !important;
}

.price-card--premium{
  position: relative;
  overflow: visible !important;
}

.premium-badge{
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  white-space: nowrap;
}

/* BLOQUEIO DE SELEÇÃO */

*{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

img{
pointer-events: none;
}