:root {
  --bg-main: #0D0D0D;
  --bg-card: #1A1A1A;
  --neon: #CCFF00;
  --text-main: #FFFFFF;
  --text-sec: #999999;
  --price-strike: #FF4444;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
.heading {
  font-family: var(--font-heading);
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.text-neon {
  color: var(--neon);
}

.text-sec {
  color: var(--text-sec);
}

.text-center {
  text-align: center;
}

.text-strike {
  color: var(--price-strike);
  text-decoration: line-through;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

section {
  padding: 80px 0;
}

.bg-alt {
  background-color: var(--bg-card);
}

.btn {
  display: inline-block;
  background-color: var(--neon);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 800;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(204, 255, 0, 0.2);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.6);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Grids */
.grid-2,
.grid-3,
.grid-4 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}

h2 {
  font-size: 2rem;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  h2 {
    font-size: 3rem;
  }
}

/* SEÇÃO 1 — HERO */
.hero {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 80px;
}

.hero .pre-headline {
  display: inline-block;
  color: var(--neon);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border: 1px solid var(--neon);
  padding: 8px 16px;
  border-radius: 30px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4rem;
  }
}

.hero .mockup-carousel {
  width: 100%;
  max-width: 1000px;
  /* Allow wider to show multiple videos */
  margin: 40px auto;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  border: 2px solid var(--neon);
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.2);
  display: block;
  /* Overriding previous flex center */
}

/* Gradient fades on the edges for smoother look */
.hero .mockup-carousel::before,
.hero .mockup-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 2;
  pointer-events: none;
}

.hero .mockup-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-main) 0%, transparent 100%);
}

.hero .mockup-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-main) 0%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-carousel 15s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-track video {
  width: 200px;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 12px;
  pointer-events: none;
  /* Let track handle hover/scroll */
}

@media (min-width: 768px) {

  .hero .mockup-carousel::before,
  .hero .mockup-carousel::after {
    width: 150px;
  }

  .carousel-track video {
    width: 250px;
  }
}

@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }

  100% {
    /* Magic number based on video width + gap. Ideally need duplicate items for a true seamless infinite loop, but this works for 4 items */
    transform: translateX(calc(-50% - 10px));
  }
}

.hero .subheadline {
  font-size: 1.1rem;
  color: var(--text-sec);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

@media (min-width: 768px) {
  .hero .subheadline {
    font-size: 1.2rem;
  }
}

.hero .bullets {
  text-align: left;
  max-width: 450px;
  margin: 0 auto 40px auto;
  font-size: 1.05rem;
}

.hero .bullets div {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero .microcopy {
  margin-top: 15px;
  font-size: 0.85rem;
  color: var(--text-sec);
}

.hero .btn {
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

/* SEÇÃO 2 — NÚMEROS */
.number-card {
  background: var(--bg-main);
  border: 1px solid #333;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
}

.number-card:hover {
  border-color: var(--neon);
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.1);
}

.bg-alt .number-card {
  background: var(--bg-main);
}

.number-card .number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1;
}

.number-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.number-card p {
  font-size: 0.95rem;
  color: var(--text-sec);
}

/* SEÇÃO 3 — GALERIA */
.preview-card {
  background: #222;
  border-radius: 12px;
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  border: 1px dashed #444;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
}

.preview-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.preview-card:hover {
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
  border-color: var(--neon);
}

/* SEÇÃO 4 — PARA QUEM É */
.card {
  background: var(--bg-main);
  border: 1px solid #333;
  padding: 40px 30px;
  border-radius: 16px;
  transition: all 0.3s;
}

.card:hover {
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
  border-color: var(--neon);
}

.card .icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.card p {
  font-size: 1rem;
  color: var(--text-sec);
}

/* SEÇÃO 5 — BENEFÍCIOS */
.benefits-list {
  max-width: 800px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
  background: var(--bg-card);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #333;
  transition: border-color 0.3s;
}

.benefit-item:hover {
  border-color: var(--neon);
}

@media (min-width: 768px) {
  .benefit-item {
    flex-direction: row;
    gap: 30px;
    align-items: center;
  }
}

.benefit-item .icon {
  font-size: 3rem;
  line-height: 1;
}

.benefit-item h3 {
  margin-bottom: 10px;
  color: var(--neon);
  font-size: 1.3rem;
}

.benefit-item p {
  margin: 0;
  color: var(--text-sec);
}

/* SEÇÃO 6 — NICHOS */
.niche-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

@media (min-width: 768px) {
  .niche-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .niche-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.niche-card {
  background: #1A1A1A;
  border-radius: 12px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.niche-card:hover {
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
}

.niche-img-wrapper {
  position: relative;
  width: 100%;
}

.niche-img-wrapper img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0;
}

.niche-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  z-index: 1;
}

.niche-title {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.4rem;
  z-index: 2;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.niche-desc {
  color: #999999;
  text-align: center;
  padding: 20px;
  margin: 0;
  font-size: 0.95rem;
}

.niche-extra-block {
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
}

.niche-extra-title {
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.niche-extra-title em {
  font-style: italic;
}

.niche-extra-desc {
  color: #999999;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* SEÇÃO 7 — COMO FUNCIONA */
.step {
  text-align: center;
  padding: 20px;
}

.step .step-num {
  font-size: 4rem;
  font-family: var(--font-heading);
  color: var(--neon);
  margin-bottom: 15px;
  line-height: 1;
}

.step h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.step p {
  color: var(--text-sec);
}

/* SEÇÃO 8 — REVIEWS (IMAGE CAROUSEL) */
.review-carousel {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0 auto;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  /* subtle border */
  border: 1px solid #333;
}

.review-carousel::before,
.review-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 2;
  pointer-events: none;
}

.review-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt) 0%, transparent 100%);
}

.review-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt) 0%, transparent 100%);
}

.review-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-carousel 20s linear infinite;
  padding: 20px 0;
}

.review-track:hover {
  animation-play-state: paused;
}

.review-img {
  width: 300px;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #222;
}

@media (min-width: 768px) {

  .review-carousel::before,
  .review-carousel::after {
    width: 150px;
  }

  .review-img {
    width: 400px;
  }
}

/* SEÇÃO 8B — BÔNUS */
.bonus-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto 0 auto;
}

@media (min-width: 768px) {
  .bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid #333;
  border-radius: 12px;
  transition: all 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bonus-card:hover {
  border-color: var(--neon);
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
}

.img-wrapper {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.bonus-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.bonus-card:hover img {
  transform: scale(1.05);
}

.bonus-content {
  padding: 30px;
  background: var(--bg-card);
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.bonus-content h3 {
  color: var(--neon);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.bonus-content p {
  color: var(--text-main);
  margin: 0;
  font-size: 1rem;
}


/* SEÇÃO 9 — PREÇO */
.price-card {
  background: var(--bg-main);
  border: 2px solid var(--neon);
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 0 40px rgba(204, 255, 0, 0.1);
  position: relative;
}

@media (min-width: 768px) {
  .price-card {
    padding: 50px 40px;
  }
}

.price-card-img {
  width: 100%;
  max-width: 350px;
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 12px;
}

.pricing-cta-block {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.strike-container {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.text-strike {
  text-decoration: line-through;
}

.price-card .real-price {
  font-size: 5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
  color: var(--neon);
}

.price-card .subtexto {
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 400;
}

.checklist {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 auto 10px auto;
  max-width: 400px;
}

.checklist li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.05rem;
}

.btn-green {
  background-color: #2ea04b !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(46, 160, 75, 0.3) !important;
  width: 100%;
  box-sizing: border-box;
}

.btn-green:hover {
  background-color: #26893e !important;
  box-shadow: 0 6px 20px rgba(46, 160, 75, 0.5) !important;
}

.scarcity-box {
  background: rgba(40, 0, 0, 0.4);
  border: 1px solid #ff4444;
  border-radius: 8px;
  padding: 15px 20px;
  margin-top: 20px;
  font-size: 0.95rem;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}

.text-alert {
  color: #ff4444;
}

.text-alert-date {
  color: #ff4444;
  text-decoration: underline;
  font-weight: bold;
}

.price-card .microcopy {
  margin-top: 20px;
  font-size: 0.9rem;
}

/* SEÇÃO 10 — URGÊNCIA */
.urgency-banner {
  background: var(--neon);
  color: #000;
  text-align: center;
  padding: 20px 20px;
  font-size: 1.05rem;
  font-weight: 500;
}

.urgency-banner p {
  margin: 0;
  max-width: 1000px;
  margin: 0 auto;
}

/* SEÇÃO 10B — GARANTIA */
.guarantee-card {
  background: #1A1A1A;
  border-radius: 16px;
  padding: 40px;
  max-width: 700px;
  margin: 40px auto 30px auto;
  text-align: center;
  border: 1px solid rgba(204, 255, 0, 0.2);
  transition: all 0.3s ease;
}

.guarantee-card:hover {
  box-shadow: 0 0 25px rgba(204, 255, 0, 0.15);
  border-color: rgba(204, 255, 0, 0.4);
}

.guarantee-img {
  width: 180px;
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
}

.guarantee-title {
  color: var(--neon);
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.guarantee-text {
  color: #FFFFFF;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.guarantee-subtext {
  color: #999999;
  font-size: 0.9rem;
  margin: 0;
}

/* SEÇÃO 11 — FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #333;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin: 0;
  color: var(--text-main);
  transition: color 0.3s;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .faq-question h3 {
    font-size: 1.3rem;
  }
}

.faq-question:hover h3 {
  color: var(--neon);
}

.faq-question .icon {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--neon);
  transition: transform 0.3s;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 25px;
  color: var(--text-sec);
  margin: 0;
  font-size: 1.05rem;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

/* SEÇÃO 12 — FINAL CTA */
.final-cta {
  padding: 100px 0;
}

.final-cta h2 {
  margin-bottom: 30px;
}

.final-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 20px auto;
  color: var(--text-sec);
}

@media (min-width: 768px) {
  .final-text {
    font-size: 1.4rem;
  }
}

.final-small {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .final-small {
    font-size: 1.5rem;
  }
}

.final-cta .btn {
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

/* SEÇÃO 13 — FOOTER */
footer {
  background: #000;
  padding: 50px 20px;
  border-top: 1px solid #1A1A1A;
}

footer p {
  margin: 10px 0;
  font-size: 0.95rem;
}

/* POPUP COMPRA VIRAL */
.sales-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  padding: 15px;
  gap: 15px;
  width: 360px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.sales-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sales-popup.hide {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.popup-img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.popup-content {
  flex: 1;
}

.popup-badge {
  background: #2ea04b;
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 20px;
  display: inline-flex;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.popup-title {
  color: #333;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  font-family: var(--font-body);
}

.popup-title strong {
  color: #000;
}

.popup-time {
  margin: 5px 0 0 0;
  color: #888;
  font-size: 0.8rem;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #aaa;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: color 0.2s;
}

.popup-close:hover {
  color: #333;
}

@media (max-width: 768px) {
  .sales-popup {
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    bottom: 20px;
    width: calc(100% - 40px);
  }

  .sales-popup.show {
    transform: translateX(-50%) translateY(0);
  }

  .sales-popup.hide {
    transform: translateX(-50%) translateY(20px);
  }
}