:root {
  --primary-color: #00d2ff;
  --primary-hover: #3a7bd5;
  --bg-dark: #070B19;
  --bg-darker: #040710;
  --bg-light: #0d1b2a;
  --text-main: #e0e6ed;
  --text-muted: #94a3b8;
  --highlight: #00d2ff;
  --gradient-btn: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
  --glow: 0 0 20px rgba(0, 210, 255, 0.4);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand {
  font-family: 'Outfit', sans-serif;
}

a {
  text-decoration: none;
}

/* TOP BAR */
.top-bar {
  background: var(--bg-darker);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: bold;
  border-bottom: 1px solid #1f2937;
}
.top-bar strong {
  color: var(--primary-color);
}

/* HERO */
.hero {
  padding: 60px 20px;
  text-align: center;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.brand {
  font-size: 1.2rem;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.kicker {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  font-weight: 700;
}
.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .hl {
  color: var(--primary-color);
  text-shadow: var(--glow);
}
.hero .sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.hero-img-wrap img {
  max-width: 100%;
  height: auto;
  mix-blend-mode: lighten;
  margin-bottom: 30px;
}
.cta-primary {
  display: inline-block;
  background: var(--gradient-btn);
  color: #fff;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50px;
  box-shadow: var(--glow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px rgba(0, 210, 255, 0.6);
}
.social-proof {
  margin-top: 30px;
  font-size: 0.9rem;
}
.stars {
  color: #fbbf24;
  letter-spacing: 3px;
}
.trust-row {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* SECTIONS */
.section {
  padding: 80px 20px;
}
.section-dark, .section-darker, .section-light {
  background: transparent;
  backdrop-filter: none;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.narrow {
  max-width: 800px;
}
.center {
  text-align: center;
}

/* PAIN POINTS */
.pain-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}
.pain-card {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 20px 25px;
  border-radius: 12px;
}
.pain-x {
  color: #ef4444;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}
.pain-card p {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
}
.pain-resolver-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: bold;
}
.pain-resolver-card p {
  margin: 0;
}
.material-head {
  text-align: center;
  margin-bottom: 40px;
}
.material-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}
.section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 50px;
}

/* ANIMATED BACKGROUND */
.ocean-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  background: #040710;
}
.bg-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  filter: brightness(0.6);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.bg-video.active-video {
  opacity: 1;
}

.bubble {
  position: absolute;
  bottom: -50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: floatUp 15s infinite ease-in;
}
.bubble-1 { left: 10%; width: 20px; height: 20px; animation-duration: 12s; animation-delay: 0s; }
.bubble-2 { left: 30%; width: 40px; height: 40px; animation-duration: 18s; animation-delay: 2s; }
.bubble-3 { left: 50%; width: 15px; height: 15px; animation-duration: 10s; animation-delay: 5s; }
.bubble-4 { left: 70%; width: 30px; height: 30px; animation-duration: 16s; animation-delay: 1s; }
.bubble-5 { left: 85%; width: 25px; height: 25px; animation-duration: 14s; animation-delay: 3s; }
.bubble-6 { left: 20%; width: 10px; height: 10px; animation-duration: 11s; animation-delay: 4s; }

@keyframes floatUp {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-120vh) translateX(50px); opacity: 0; }
}

/* MODULES SCROLL (BLOCK STYLE) */
.modules-marquee {
  width: 100vw;
  margin-left: calc(-50vw + 50%); /* Quebra as barreiras do padding do container para encostar na tela */
  position: relative;
  padding: 40px 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.modules-marquee::-webkit-scrollbar {
  display: none;
}
.modules-track {
  display: flex;
  width: max-content;
  gap: 30px;
  padding: 0 5vw; /* Dá um respiro nas bordas do celular ao final e início */
}
.module-block {
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  width: 300px;
  white-space: normal;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  scroll-snap-align: center;
}
.tl-node {
  position: absolute;
  top: -10px; left: -10px;
  width: 20px; height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: var(--glow);
}
.module-block h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}
.module-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* TESTIMONIALS SCROLL */
.testimonial-block {
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  width: 350px;
  white-space: normal;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  scroll-snap-align: center;
}
.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--primary-color);
}
.testimonial-author h4 {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
}
.testimonial-author span {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

/* MARQUEE */
.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  animation: scroll 20s linear infinite;
  gap: 20px;
  width: max-content;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.marquee-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.marquee-item img {
  height: 300px;
  width: auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  display: block;
}
@keyframes scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(-50% - 10px), 0, 0); }
}

/* CARDS GRID */
.learn-grid, .ideal-grid-v2, .bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.learn-card, .ideal-card-v2, .bonus-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s, background 0.3s;
}
.learn-card:hover, .ideal-card-v2:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.04);
}
.learn-emoji, .ideal-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: inline-block;
}
.learn-card h3, .ideal-card-v2 h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.learn-card p, .ideal-card-v2 p, .bonus-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* BONUS CARD */
.bonus-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bonus-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}
.bonus-tag {
  position: absolute;
  top: 10px; right: -30px;
  background: #ef4444;
  color: #fff;
  font-weight: bold;
  font-size: 0.7rem;
  padding: 5px 30px;
  transform: rotate(45deg);
}
.strike {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: block;
  margin-top: 15px;
}
.free {
  color: #10b981;
  font-weight: 800;
  font-size: 1.1rem;
}

/* PLANS */
.plans-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}
.plan-card {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 40px;
  max-width: 450px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}
.plan-card.premium {
  transform: scale(1.05);
}
.ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: 900;
  font-size: 0.8rem;
  box-shadow: var(--glow);
}
.plan-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 2px;
}
.premium-cover img, .basic-cover img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  margin: 20px 0;
}
.plan-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.plan-list {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}
.plan-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.plan-list .ok::before {
  content: '✔ ';
  color: #10b981;
}
.plan-price-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.plan-price {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 5px;
}
.plan-installments {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.cta-vip {
  display: block;
}
.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50px;
  margin-top: 15px;
  transition: all 0.3s;
}
.cta-secondary:hover {
  background: var(--primary-color);
  color: var(--bg-dark);
}

/* FAQ */
.faq details {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}
.faq summary {
  font-weight: bold;
  cursor: pointer;
  outline: none;
  font-size: 1.1rem;
}
.faq p {
  margin-top: 10px;
  color: var(--text-muted);
}

/* COUNTDOWN */
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
}
.cd-box {
  background: rgba(0,210,255,0.1);
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  padding: 15px 20px;
  text-align: center;
}
.cd-box span {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
}
.cd-box small {
  font-size: 0.8rem;
  text-transform: uppercase;
}
.cd-colon {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
}

/* FOOTER */
.footer {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 40px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.footer-copy {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* MODAL */
.exit-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.exit-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.exit-card {
  background: var(--bg-darker);
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  padding: 40px;
  max-width: 800px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: var(--glow);
}
.exit-close {
  position: absolute;
  top: 15px; right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.exit-badge {
  background: #ef4444;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 15px;
}
.exit-hl {
  color: #10b981;
}
.exit-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
  margin-top: 20px;
  text-align: left;
}
.exit-image img {
  width: 100%;
  border-radius: 10px;
}
.exit-price {
  margin: 20px 0;
}
.exit-old {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: block;
}
.exit-new {
  font-size: 2.5rem;
  font-weight: 900;
  color: #10b981;
  display: block;
}
.exit-cta {
  display: block;
  background: #10b981;
  color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  font-weight: 900;
  margin-bottom: 10px;
}
.exit-nope {
  display: block;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-decoration: underline;
}

@media(max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .exit-grid { grid-template-columns: 1fr; }
  .plans-grid { flex-direction: column; align-items: center; }
}
