:root {
  --gold: #F5B800;
  --gold-light: #FFCA00;
  --black: #0a0a0a;
  --dark: #111111;
  --card: #161616;
  --card2: #1c1c1c;
  --border: #272727;
  --white: #FFFFFF;
  --gray: #999999;
  --gray-light: #CCCCCC;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HERO LOGO ── */
.hero-logo-wrap {
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -18px -32px;
  background: radial-gradient(ellipse at center, rgba(245,184,0,0.12) 0%, transparent 72%);
  pointer-events: none;
}
.hero-logo {
  width: auto;
  height: auto;
  max-height: 52px;
  display: block;
  filter: drop-shadow(0 0 22px rgba(245,184,0,0.35)) drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 90px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(245,184,0,0.1) 0%, transparent 68%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,184,0,0.1);
  border: 1px solid rgba(245,184,0,0.25);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  max-width: 860px;
  margin-bottom: 24px;
}
.gold { color: var(--gold); }

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--gray-light);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 52px;
  font-weight: 400;
}

.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 18px 52px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(245,184,0,0.28);
}

.hero-price-note { font-size: 0.88rem; color: var(--gray); }
.hero-price-note strong { color: var(--white); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 24px;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('imagens/mesa.jpg') center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.stats-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.stat {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 12px 24px;
}
.stat:not(:last-child) { border-right: 1px solid var(--border); }
.stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 6px;
}

/* ── SECTION BACKGROUND IMAGES ── */
.section--auditorium {
  position: relative;
  isolation: isolate;
}
.section--auditorium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('imagens/IMG_5951-HDR.jpg') center/cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: -1;
}

.section--office {
  position: relative;
  isolation: isolate;
}
.section--office::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('imagens/IMG_6014-HDR.jpg') center/cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

/* ── SHARED SECTION STYLES ── */
.section { padding: 100px 24px; }
.section-alt { background: var(--dark); }
.container { max-width: 980px; margin: 0 auto; }

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.75;
}

/* ── FOR WHO ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 56px;
}
.profile-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color 0.25s, transform 0.2s;
}
.profile-card:hover {
  border-color: rgba(245,184,0,0.35);
  transform: translateY(-3px);
}
.profile-emoji { font-size: 2rem; margin-bottom: 16px; display: block; }
.profile-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.profile-text { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.steps { margin-top: 64px; display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: -8px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(245,184,0,0.6), rgba(245,184,0,0.05));
}
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.step-body { padding-bottom: 52px; flex: 1; }
.step-title { font-size: 1.2rem; font-weight: 700; margin: 12px 0 8px; }
.step-text { font-size: 0.92rem; color: var(--gray); line-height: 1.7; }
.step-text strong { color: var(--white); font-weight: 700; }
.step-text strong.gold { color: var(--gold); }

/* passo bônus (cashback) */
.step-num--bonus {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.35rem;
  box-shadow: 0 0 22px rgba(245,184,0,0.3);
}
.step--bonus .step-body {
  background: linear-gradient(135deg, rgba(245,184,0,0.09), rgba(245,184,0,0.02));
  border: 1px solid rgba(245,184,0,0.28);
  border-radius: 14px;
  padding: 16px 22px 20px;
  margin-top: 4px;
}
.step--bonus .step-title { margin-top: 0; color: var(--gold); }

/* ── FACILITATOR ── */
.facilitator-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.facilitator-photo-col { position: relative; }
.facilitator-photo-frame {
  position: relative;
  max-width: 400px;
}
.facilitator-photo {
  width: 100%;
  border-radius: 20px;
  display: block;
  border: 1px solid rgba(245,184,0,0.2);
  box-shadow: 0 0 80px rgba(245,184,0,0.12), 0 30px 80px rgba(0,0,0,0.7);
}
.facilitator-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 9px 26px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(245,184,0,0.4);
}
.facilitator-creds {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.facilitator-cred {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.55;
}
.facilitator-cred-icon {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── WHAT YOU DISCOVER ── */
.discover-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
.discover-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.discover-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 20px 22px;
  transition: border-color 0.2s;
}
.discover-row:hover { border-color: rgba(245,184,0,0.5); border-left-color: var(--gold); }
.discover-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: rgba(245,184,0,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.discover-icon svg { width: 13px; height: 13px; }
.discover-text { font-size: 0.9rem; font-weight: 500; line-height: 1.55; }

/* ── REPORT MOCKUP ── */
.report-mockup-wrap {
  position: relative;
  text-align: center;
}
.report-mockup-wrap::before {
  content: '';
  position: absolute;
  inset: -48px;
  background: radial-gradient(ellipse at center, rgba(245,184,0,0.1) 0%, transparent 68%);
  pointer-events: none;
}
.report-mockup-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  display: block;
  position: relative;
  z-index: 1;
}
.report-mockup-img {
  width: 100%;
  max-width: 380px;
  border-radius: 18px;
  border: 1px solid rgba(245,184,0,0.28);
  box-shadow: 0 0 50px rgba(245,184,0,0.14), 0 24px 64px rgba(0,0,0,0.6);
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── REPORT SECTIONS ── */
.report-sections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.report-section-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color 0.25s, transform 0.2s;
}
.report-section-card:hover {
  border-color: rgba(245,184,0,0.3);
  transform: translateY(-3px);
}
.report-section-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.report-section-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.report-section-text {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ── PRICING ── */
.pricing-wrap {
  max-width: 480px;
  margin: 60px auto 0;
}
.pricing-card {
  background: var(--card);
  border: 1px solid rgba(245,184,0,0.35);
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.pricing-pill {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.pricing-name { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.pricing-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.65; margin-bottom: 28px; }
.pricing-line { height: 1px; background: var(--border); margin-bottom: 28px; }

.pix-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}
.price-main {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.price-main sup {
  font-size: 1.4rem;
  font-weight: 600;
  vertical-align: super;
}
.price-cash {
  font-size: 0.95rem;
  color: var(--gray-light);
  margin: 18px 0 30px;
}
.price-cash strong { color: var(--white); font-weight: 700; }

.cashback-banner {
  text-align: center;
  background: linear-gradient(135deg, rgba(245,184,0,0.12), rgba(245,184,0,0.03));
  border: 1px solid rgba(245,184,0,0.35);
  border-radius: 14px;
  padding: 26px 22px 22px;
  margin-bottom: 32px;
  position: relative;
}
.cashback-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 14px;
  box-shadow: 0 6px 24px rgba(245,184,0,0.35);
}
.cashback-text {
  font-size: 0.86rem;
  color: var(--gray-light);
  line-height: 1.7;
}
.cashback-text strong { color: var(--white); font-weight: 700; }
.cashback-text strong.gold { color: var(--gold); }

.includes { text-align: left; margin-bottom: 32px; }
.include-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}
.include-row:last-child { border-bottom: none; }
.include-row .mark { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }

.btn-buy {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-buy:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(245,184,0,0.35);
}
.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--gray);
}

/* ── FAQ ── */
.faq-list { margin-top: 56px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.3s, color 0.2s;
}
.faq-item.open .faq-btn { color: var(--gold); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 110px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-glow {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(245,184,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.final-title {
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  max-width: 720px;
  margin: 0 auto 22px;
}
.final-sub {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.75;
}
.final-sub-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--gray);
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 44px 24px;
  text-align: center;
}
.footer-logo {
  height: 26px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.45;
}
.footer-text { font-size: 0.78rem; color: var(--gray); line-height: 1.7; }
.footer-text a { color: var(--gray); text-decoration: none; }
.footer-text a:hover { color: var(--gold); }

/* ── DECORAÇÕES ANIMADAS (GSAP) ── */
.hero-deco {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(760px, 88vw);
  aspect-ratio: 1;
  color: var(--gold);
  opacity: 0.11;
  pointer-events: none;
  z-index: 0;
}
.hero-deco svg { width: 100%; height: 100%; display: block; }
.hero > *:not(.hero-glow):not(.hero-deco) { position: relative; z-index: 1; }

.has-deco { position: relative; overflow: hidden; }
.has-deco > .container { position: relative; z-index: 1; }
.sec-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  aspect-ratio: 1;
  color: var(--gold);
}
.sec-deco svg { width: 100%; height: 100%; display: block; }

.discover-deco {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, 116%);
  aspect-ratio: 3 / 1;
  opacity: 0.10;
}

/* entrada em cascata do hero — só quando as animações vão rodar */
html.anim .hero-badge,
html.anim .hero-title,
html.anim .hero-sub,
html.anim .hero-actions { opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 60px 20px 70px; }
  .hero-logo { max-height: 52px; }
  .stat:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
  .pricing-card { padding: 36px 24px; }
  .price-main { font-size: 3rem; }
  .section { padding: 72px 20px; }
  .step:not(:last-child)::after { left: 23px; }
  .facilitator-wrap { grid-template-columns: 1fr; gap: 48px; }
  .facilitator-photo-frame { max-width: 100%; }
  .discover-split { grid-template-columns: 1fr; gap: 48px; }
  .report-sections-grid { grid-template-columns: 1fr; }
  .hero-deco { opacity: 0.08; width: min(560px, 96vw); }
  .discover-deco { opacity: 0.07; width: min(680px, 150%); top: 26px; }
}
@media (min-width: 481px) and (max-width: 768px) {
  .report-sections-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .header-cta { font-size: 0.72rem; padding: 8px 16px; }
  .btn-primary { font-size: 0.95rem; padding: 16px 32px; }
  .stats-inner { flex-direction: column; }
  .stat:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
}
