/* ===== Reset & base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0b0b0b;
  --bg-alt: #151515;
  --card: #1c1c1c;
  --card-alt: #202020;
  --gold: #f48322;
  --gold-light: #ffb347;
  --gold-dark: #c3691b;
  --text: #f2f0ec;
  --muted: #a9a6a1;
  --gradient-gold: linear-gradient(90deg, #ffb347, #f48322 55%, #c3691b);
  --font-head: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.25;
}

.accent { color: var(--gold); }

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.section { position: relative; padding: 90px 0; overflow: hidden; }
.section.diferenciais, .section.faq { background: #000; }
.section.modulos { background: var(--bg); }
.section.chave { background: #000; padding-bottom: 40px; }

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-gold);
  color: #1a1200;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 16px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(244,131,34,0.35); }
.btn.full { width: 100%; justify-content: center; margin: 18px 0 14px; }
.btn.small { padding: 12px 22px; font-size: 0.85rem; }

.shine { position: relative; overflow: hidden; }
.shine::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  animation: shine 3.2s ease-in-out infinite;
}
@keyframes shine {
  0% { left: -75%; }
  40% { left: 130%; }
  100% { left: 130%; }
}

.cta-wrap { display: flex; justify-content: center; margin-top: 46px; }

/* ===== Decorative rings ===== */
.ring {
  position: absolute;
  border: 1px solid rgba(244,131,34,0.15);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.ring-1 { width: 500px; height: 500px; top: -220px; left: -220px; animation: spin 60s linear infinite; }
.ring-2 { width: 700px; height: 700px; top: 40px; right: -320px; animation: spin 90s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.glow-behind {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(244,131,34,0.45), transparent 70%);
  filter: blur(30px);
  animation: pulse 4s ease-in-out infinite;
  z-index: 0;
}
@keyframes pulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.ghost-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 10vw;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: radial-gradient(ellipse at 30% 20%, #1a1108 0%, #000 60%);
  padding-top: 50px;
}
.logo img { height: 46px; }
.logo { display: inline-block; margin-bottom: 40px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}
.hero-text p { color: var(--muted); margin-bottom: 26px; max-width: 480px; }

.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  font-size: 0.85rem;
  color: var(--muted);
}
.social-proof img { height: 35px; }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%;
  border-radius: 8px;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ===== Marquee ===== */
.marquee {
  background: var(--gradient-gold);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #1a1200;
  animation: marquee 22s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Chave ===== */
.chave-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
}
.chave-img { position: relative; display: flex; justify-content: center; }
.chave-img img { position: relative; z-index: 1; width: 70%; animation: floaty 6s ease-in-out infinite; }
.chave-text h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 22px; }
.chave-text p { color: var(--muted); margin-bottom: 16px; }
.chave-text .highlight { color: var(--text); }

/* ===== Scroll hint ===== */
.scroll-hint { display: flex; justify-content: center; padding: 30px 0; }
.scroll-hint span {
  width: 22px; height: 34px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  position: relative;
  display: block;
}
.scroll-hint span::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrolldown 1.6s ease-in-out infinite;
}
@keyframes scrolldown {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 18px; }
}

/* ===== Modulos ===== */
.modulos h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 46px; }
.modulos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.modulo-card {
  background: var(--card);
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  overflow: hidden;
  padding: 26px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  height: 100%;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.modulo-card:hover { transform: translateY(-10px); box-shadow: 0 16px 32px rgba(0,0,0,.5); border-color: var(--gold); }
.pilar-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #1a1200;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pilar-title { font-size: 0.8rem; color: var(--gold); text-transform: uppercase; letter-spacing: .5px; line-height: 1.3; }
.pilar-desc { font-size: 0.74rem; color: var(--muted); line-height: 1.5; }

.mais-curso {
  margin-top: 60px;
  background: var(--card);
  border-radius: 10px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 26px;
  position: relative;
}
.mais-curso::before {
  content: '';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 34px; height: 34px;
  background: #000;
  border-radius: 50%;
  background-image: linear-gradient(45deg, transparent 48%, var(--gold) 50%, transparent 52%);
}
.mais-curso-title h3 { font-size: 1.35rem; color: var(--gold); line-height: 1.3; }
.mais-curso-item p { font-size: 0.86rem; color: var(--muted); }
.icon-badge {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.icon-badge svg { width: 22px; height: 22px; fill: none; stroke: #1a1200; stroke-width: 1.6; }

/* ===== Diferenciais ===== */
.diferenciais h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 46px; }
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dif-card {
  background: var(--card-alt);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 32px 28px;
  transition: transform .3s ease, border-color .3s ease;
}
.dif-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.dif-icon { width: 34px; height: 34px; fill: none; stroke: var(--gold); stroke-width: 1.4; margin-bottom: 16px; }
.dif-card h4 { color: var(--gold); font-size: 1.15rem; margin-bottom: 12px; }
.dif-card p { color: var(--muted); font-size: 0.9rem; }

/* ===== Mentor ===== */
.mentor { background: linear-gradient(180deg, #0b0b0b, #000); }
.mentor-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.mentor-photo img {
  border-radius: 50%;
  animation: floaty 6s ease-in-out infinite;
}
.mentor-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.mentor-text p { color: var(--muted); margin-bottom: 14px; }
.brands { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 14px; }
.brands li { color: var(--text); font-size: 0.92rem; }

/* ===== Depoimentos ===== */
.depoimentos { text-align: center; }
.badge-seal { display: flex; justify-content: center; margin-bottom: 20px; }
.badge-seal img, .badge-seal svg { width: 130px; border-radius: 50%; animation: spin 30s linear infinite; }
.depo-header h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); max-width: 700px; margin: 0 auto; }

.proof-slider-wrap { overflow: hidden; border-radius: 14px; margin-top: 50px; }
.proof-slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px;
  cursor: grab;
}
.proof-slider-track::-webkit-scrollbar { display: none; }
.proof-slider-track.dragging { cursor: grabbing; }
.proof-slide {
  scroll-snap-align: start;
  flex: 0 0 260px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0,0,0,.4);
}
.proof-slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.proof-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.proof-lightbox-overlay.open { display: flex; }
.proof-lightbox-inner { position: relative; max-width: 96vw; max-height: 92vh; }
.proof-lightbox-inner img { max-width: 100%; max-height: 92vh; border-radius: 10px; object-fit: contain; }
.proof-lightbox-close { position: absolute; top: -40px; right: 0; background: transparent; border: none; color: #fff; font-size: 30px; cursor: pointer; }
.proof-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.18);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.proof-lightbox-prev { left: 16px; }
.proof-lightbox-next { right: 16px; }

/* ===== Stats ===== */
.stats { background: var(--gradient-gold); padding: 50px 0; color: #1a1200; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat h3 { font-size: 2.6rem; margin-bottom: 8px; }
.stat p { font-size: 0.82rem; max-width: 220px; margin: 0 auto; }

/* ===== Preço ===== */
.preco { background: #000; }
.preco-bg { position: absolute; left: 0; top: 0; bottom: 0; width: 45%; opacity: .35; z-index: 0; }
.preco-bg img { width: 100%; height: 100%; object-fit: cover; mask-image: linear-gradient(90deg, black 40%, transparent); }
.preco-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: start;
}
.preco-card {
  background: var(--card-alt);
  border: 1px solid #2b2b2b;
  border-radius: 10px;
  padding: 40px;
}
.preco-logo { text-align: center; margin-bottom: 22px; }
.preco-logo img { height: 40px; margin: 0 auto 8px; }
.preco-logo p { font-family: var(--font-head); font-weight: 700; letter-spacing: 1px; font-size: 0.95rem; }
.preco-lead { text-align: center; font-weight: 600; margin-bottom: 22px; }
.check-list { list-style: none; margin-bottom: 26px; }
.check-list li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 0.92rem; }
.check-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  width: 18px; height: 18px;
  background: var(--gradient-gold);
  color: #1a1200;
  font-size: 0.7rem;
  font-weight: 900;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
}
.preco-de { color: var(--muted); font-size: 0.9rem; }
.preco-de strong { color: var(--gold); font-weight: 700; }
.preco-valor { font-size: 2.1rem; font-family: var(--font-head); font-weight: 800; color: var(--gold); margin: 4px 0; }
.preco-avista { color: var(--muted); font-size: 0.8rem; margin-bottom: 6px; }
.payment-icons { margin: 0 auto; opacity: .85; }

.garantia-card {
  background: #111;
  border: 1px solid #2b2b2b;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.garantia-card .garantia-top { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; }
.garantia-card .garantia-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  animation: pulse 3s ease-in-out infinite;
}
.garantia-card .garantia-stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 14px; }
.garantia-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 10px; }

/* ===== Bônus ===== */
.bonus { background: #050505; }
.bonus-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; }
.bonus-img { position: relative; display: flex; justify-content: center; }
.bonus-img img, .bonus-img svg { position: relative; z-index: 1; width: 65%; animation: floaty 5s ease-in-out infinite; }
.bonus-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 10px 0 20px; }
.bonus-text p { color: var(--muted); margin-bottom: 26px; }

/* ===== FAQ ===== */
.faq-grid { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 50px; align-items: center; }
.faq-badge img, .faq-badge svg { width: 160px; border-radius: 50%; animation: spin 30s linear infinite; }
.faq-list h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 30px; }
.faq-item { border: 1px solid #333; border-radius: 6px; margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--text);
  border: none;
  padding: 16px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-q span { color: var(--gold); transition: transform .3s ease; font-size: 1.2rem; }
.faq-item.open .faq-q span { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }
.faq-a p { color: var(--muted); font-size: 0.88rem; }

/* ===== Footer ===== */
.footer { background: #000; padding: 40px 0; border-top: 1px solid #1e1e1e; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { height: 34px; }
.footer p { color: var(--muted); font-size: 0.85rem; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero-grid, .chave-grid, .mentor-grid, .bonus-grid, .preco-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo { order: -1; }
  .chave-img img { width: 45%; }
  .modulos-grid { grid-template-columns: repeat(3, 1fr); }
  .mais-curso { grid-template-columns: 1fr 1fr; }
  .mais-curso-title { grid-column: 1 / -1; }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .preco-bg { display: none; }
  .faq-badge { display: flex; justify-content: center; }
}

@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .modulos-grid { grid-template-columns: repeat(2, 1fr); }
  .mais-curso { grid-template-columns: 1fr; padding: 28px; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .proof-slide { flex: 0 0 220px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .ring-1, .ring-2 { display: none; }
}
