body {
  margin: 0;
  font-family: 'Poppins';
  background: #0b0b0b;
  color: white;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  align-items: center;
  position: sticky;
  top: 0;
  background: #000;
}

.navbar a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
}

/* HERO */
.hero {
  display: flex;
  padding: 80px;
  align-items: center;
  justify-content: space-between;
}.hero-right img {
  width: 500px;
}

.hero-left {
  max-width: 500px;
}

.hero h1 {
  font-size: 40px;
}

.input-box {
  display: flex;
  margin: 20px 0;
}

.input-box input {
  flex: 1;
  padding: 15px;
  border-radius: 10px 0 0 10px;
  border: none;
}


.input-box button {
  padding: 15px;
  background: #00ffcc;
  border: none;
}
/*botão do inicio*/
.cta-box {
  margin: 25px 0;
}

/* botão maior */
.big {
  font-size: 18px;
  padding: 18px 35px;
}

/* efeito pulse (chama atenção) */
.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0,255,204, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(0,255,204, 0);
  }
  100% {
    transform: scale(1);
  }
}
/* BOTÕES */
.btn {
  padding: 12px 20px;
  border-radius: 20px;
  text-decoration: none;
}

.primary {
  background: #00ffcc;
  color: black;
}

/* BENEFITS */
.benefits {
  padding: 80px;
  text-align: center;
}

.benefits-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.benefit {
  background: #111;
  padding: 20px;
  border-radius: 10px;
}

/* SPLIT */
.split {
  display: flex;
  padding: 80px;
  gap: 40px;
  align-items: center;
}

.reverse {
  flex-direction: row-reverse;
}

.split img {
  width: 400px;
} /*imagens em movimento*/
.creators {
  overflow: hidden;
  padding: 40px 0;
  
}

/* container */
.carousel {
  width: 100%;
  overflow: hidden;
}

/* trilho animado */
.carousel-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

/* animação infinita */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* card */
.creator {
  text-align: center;
  min-width: 120px;
}

/* imagem redonda */
.creator img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 8px;
  object-fit: cover;
}

/* nome */
.creator p {
  font-size: 14px;
  margin: 0;
}

/* seguidores */
.creator span {
  font-size: 12px;
  color: #aaa;
}

/* FEATURES */
.features {
  padding: 80px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: #111;
  padding: 20px;
}

.faq {
  padding: 80px 20px;
  max-width: 800px;
  margin: auto;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  background: #111;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid #222;
}

.faq-item:hover {
  border-color: #00ffcc;
}

.q {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 500;
  position: relative;
}

/* seta */
.q::after {
  content: "▼";
  position: absolute;
  right: 20px;
  transition: 0.3s;
}

/* quando ativo */
.faq-item.active .q::after {
  transform: rotate(180deg);
}

.a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #aaa;
  transition: all 0.4s ease;
}

.faq-item.active .a {
  max-height: 200px;
  padding: 15px 20px 20px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px;
  background: linear-gradient(#000000, #00ccff);
  color: black;
}
.cta .btn:hover {
  transform: scale(1.1);
  background: #111;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}@keyframes pulseDark {
  0% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0,0,0,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
  }
}

/*parte de comentários*/
/* TESTIMONIALS */
.testimonials {
  padding: 80px 20px;
  text-align: center;
  background: #0b0b0b;
}

.testimonials h2 {
  margin-bottom: 50px;
}

.testimonials-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* card */
.testimonial {
  background: #111;
  padding: 25px;
  border-radius: 15px;
  max-width: 300px;
  text-align: left;
  border: 1px solid #222;
  transition: 0.3s;
}

.testimonial:hover {
  transform: translateY(-10px);
  border-color: #00ffcc;
}

/* texto */
.testimonial p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 20px;
}

/* user */
.user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.user strong {
  display: block;
  font-size: 14px;
}

.user span {
  font-size: 12px;
  color: #777;
}
/*seção quem está com duvidas do produto reforçando a compra*/
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.tag,
.section-tag,
.dark-tag {
  
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  background: rgba(0, 255, 204, 0.1);
  color: #00ffcc;
  border: 1px solid rgba(0, 255, 204, 0.2);
}

.dark-tag {
  background: rgba(0, 0, 0, 0.12);
  color: #041412;
  border-color: rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 12px;
}

.hero-description {
  color: #a9b0bd;
  line-height: 1.8;
  margin-bottom: 22px;
}

.hero-mini-benefits {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
}

.hero-mini-benefits span {
  color: #e9edf3;
  font-size: 15px;
}

.price-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-top: 18px;
}

.old-price {
  color: #7f8794;
  text-decoration: line-through;
}

.new-price {
  color: #00ffcc;
  font-weight: 700;
}

.lifetime {
  color: #fff;
  background: #131313;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #222;
}

.pain-section,
.belief-break,
.deliver-section,
.bonus-section,
.offer-section,
.guarantee-section {
  padding: 90px 20px;
}

.pain-section,
.deliver-section,
.guarantee-section {
  background: #0b0b0b;
}

.belief-break,
.bonus-section {
  background: #0f1014;
}

.pain-section h2,
.belief-break h2,
.deliver-section h2,
.bonus-section h2,
.offer-section h2,
.guarantee-section h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
}

.pain-grid,
.deliver-grid,
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 35px;
}

.pain-card,
.deliver-card,
.bonus-card {
  background: linear-gradient(180deg, #121318, #0d0e12);
  border: 1px solid #23252c;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pain-card p,
.deliver-card p,
.belief-break p,
.guarantee-section p {
  color: #aeb5c2;
  line-height: 1.8;
}

.deliver-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.bonus-card {
  text-align: center;
  font-weight: 600;
  color: #fff;
}

.offer-section {
  background:
    radial-gradient(circle at top, rgba(0, 255, 204, 0.12), transparent 35%),
    #0b0b0b;
}

.offer-box {
  margin-top: 30px;
  background: linear-gradient(180deg, #121318, #0b0d10);
  border: 1px solid #252933;
  border-radius: 28px;
  padding: 40px 28px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.offer-old {
  color: #818898;
  text-decoration: line-through;
  margin-bottom: 6px;
  font-size: 20px;
}

.offer-now {
  color: #dce3ef;
  margin-bottom: 8px;
}

.offer-price {
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1;
  font-weight: 700;
  color: #00ffcc;
  margin-bottom: 10px;
}

.offer-info {
  color: #fff;
  font-size: 18px;
  margin-bottom: 28px;
}

.offer-btn {
  display: inline-block;
  background: linear-gradient(45deg, #00ffcc, #00ccff);
  color: #041412;
  font-weight: 800;
  padding: 18px 34px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0, 255, 204, 0.25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.offer-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 46px rgba(0, 255, 204, 0.32);
}

.offer-warning {
  margin-top: 14px;
  color: #f5c76d;
  font-size: 14px;
}

.cta-final-btn {
  display: inline-block;
  margin-top: 22px;
  background: #000;
  color: #00ffcc;
  text-decoration: none;
  font-weight: 800;
  padding: 18px 34px;
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.cta-final-btn:hover {
  transform: translateY(-2px) scale(1.03);
  background: #0f0f0f;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}
/* ===== CTA FINAL EXCLUSIVO ===== */

.cta-section-exclusive {
  background: #000;
  padding: 100px 20px;
  text-align: center;
}

.cta-section-exclusive h2 {
  color: #fff;
  font-size: 32px;
  margin: 20px 0;
}

.cta-section-exclusive p {
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* BOTÃO EXCLUSIVO */
.cta-btn-exclusive {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;

  /* padrão do site */
  background: linear-gradient(45deg, #00ccff, #00ffcc);
  color: #041412;

  /* destaque */
  box-shadow: 0 15px 40px rgba(0, 204, 255, 0.4);

  transition: all 0.3s ease;

  /* animação */
  animation: pulseExclusive 1.5s infinite;
}

/* hover */
.cta-btn-exclusive:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 50px rgba(0, 204, 255, 0.6);
}

/* animação exclusiva */
@keyframes pulseExclusive {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 204, 255, 0.6);
  }
  70% {
    transform: scale(1.06);
    box-shadow: 0 0 0 20px rgba(0, 204, 255, 0);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 900px) {
  .pain-grid,
  .deliver-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .price-inline {
    justify-content: center;
  }
}
/* ===== NOTIFICAÇÃO FIXA EXCLUSIVA ===== */
.live-notification-exclusive {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 12px;

  min-width: 260px;
  max-width: 320px;
  padding: 12px 14px;

  background: rgba(10, 10, 10, 0.95);
  border: 1px solid #222;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.live-notification-exclusive.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.live-notification-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(45deg, #00ccff, #00ffcc);
}

.live-notification-content {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.live-notification-content strong {
  color: #fff;
  font-size: 14px;
}

.live-notification-content span {
  color: #b8b8b8;
  font-size: 12px;
}

@media (max-width: 600px) {
  .live-notification-exclusive {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: auto;
    max-width: none;
  }
}
/* CENTRALIZAR TITULOS DESSAS SEÇÕES */
.pain-section .container,
.deliver-section .container,
.bonus-section .container {
  text-align: center;
}.split-video {
  width: 400px;
  border-radius: 15px;
  object-fit: cover;
}@media (max-width: 900px) {
  .split-video {
    width: 100%;
    max-width: 300px;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-right img {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
  }

  .split {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .split img {
    width: 100%;
    max-width: 300px;
  }

  .benefits-grid {
    flex-direction: column;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    padding: 20px;
    flex-direction: column;
    gap: 10px;
  }

}