/* ============================================
   MENTORIA CRIE — Landing Page Styles
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97B;
  --gold-glow:   rgba(201,168,76,.35);
  --dark:        #070A0F;
  --dark-2:      #0D1117;
  --dark-3:      #141B24;
  --dark-4:      #1C2535;
  --border:      rgba(201,168,76,.18);
  --text:        #E8EDF5;
  --text-muted:  #8A96A8;
  --radius-sm:   8px;
  --radius:      16px;
  --radius-lg:   24px;
  --transition:  0.35s cubic-bezier(.25,.8,.25,1);
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

strong { color: var(--gold-light); font-weight: 600; }

/* ---------- Badge / Tag ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,.1);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.badge__dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.4); }
}

.section-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 100px;
}
.section-tag--light { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity .3s;
}
.btn:hover::before { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light) 60%, #f0d685);
  color: #1a0f00;
  padding: 16px 36px;
  box-shadow: 0 6px 32px rgba(201,168,76,.45), 0 0 0 0 rgba(201,168,76,.4);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 48px rgba(201,168,76,.6), 0 0 0 0 rgba(201,168,76,.3);
}
.btn--large { font-size: 1.15rem; padding: 20px 48px; }

.btn--outline {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
  padding: 18px 46px;
  box-shadow: none;
}
.btn--outline:hover {
  background: rgba(201,168,76,.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201,168,76,.2);
}

.pulse {
  animation: pulse-glow 2.4s infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 6px 32px rgba(201,168,76,.45), 0 0 0 0 rgba(201,168,76,.4); }
  50%       { box-shadow: 0 6px 32px rgba(201,168,76,.55), 0 0 0 14px rgba(201,168,76,0); }
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Highlight ---------- */
.highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  text-align: center;
}

/* BG shapes */
.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .22;
}
.shape--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #C9A84C, transparent 70%);
  top: -200px; left: -200px;
}
.shape--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #3A5FA8, transparent 70%);
  bottom: -100px; right: -100px;
}
.shape--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #C9A84C, transparent 70%);
  top: 50%; right: 10%;
  transform: translateY(-50%);
  opacity: .1;
}

/* Grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero__title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.03em;
  max-width: 820px;
  margin: 0 auto 24px;
}

.hero__sub {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 24px;
}

.hero__instruction {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  opacity: .8;
}

.hero__cta {
  margin-bottom: 60px;
}

/* Video */
.video-wrapper {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.video-glow {
  position: absolute;
  inset: -20px;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at center, rgba(201,168,76,.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(201,168,76,.1);
  z-index: 1;
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: .85rem;
  color: var(--text-muted);
  letter-spacing: .06em;
}
.video-caption svg { color: var(--gold); }

/* ============================================
   RESULTS / TESTIMONIALS
   ============================================ */
.results {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
}
.results::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.3), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.testimonial-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.testimonial-card:hover::before { opacity: 1; }

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--dark-3), #1a2236);
  border-color: rgba(201,168,76,.25);
  box-shadow: 0 8px 40px rgba(201,168,76,.12);
}
.testimonial-card.featured::before { opacity: 1; background: linear-gradient(90deg, transparent, rgba(201,168,76,.6), transparent); }

.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 100px;
  padding: 4px 10px;
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar { flex-shrink: 0; }
.avatar-placeholder {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--dark-4);
  border: 2px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.testimonial-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.testimonial-info strong { font-size: .95rem; color: var(--text); }
.testimonial-info span { font-size: .8rem; color: var(--text-muted); }

.stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: 2px;
}

blockquote {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
  border-left: 3px solid rgba(201,168,76,.3);
  padding-left: 16px;
}

.testimonial-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.18);
  border-radius: 100px;
  padding: 5px 12px;
  width: fit-content;
}

/* ============================================
   PILLARS
   ============================================ */
.pillars {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.pillars::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* subtle radial bg */
.pillars::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.05) 0%, transparent 60%);
  pointer-events: none;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.pillar-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.pillar-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 40px rgba(201,168,76,.06);
}
.pillar-card:hover::after { transform: scaleX(1); }

.pillar-number {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, rgba(201,168,76,.25), rgba(201,168,76,.08));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pillar-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.pillar-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.pillar-card p {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.04);
}
.final-cta__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .2;
}
.cta-shape--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  top: -300px; left: 50%;
  transform: translateX(-50%);
}
.cta-shape--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #3A5FA8, transparent 70%);
  bottom: -150px; right: -100px;
  opacity: .15;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.final-cta__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.7;
}

/* CTA buttons group */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;
}

.final-cta__after {
  margin-top: 24px;
  font-size: .88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.final-cta__after svg { color: var(--gold); flex-shrink: 0; }

/* ============================================
   COMO FUNCIONA
   ============================================ */
.como-funciona {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
}
.como-funciona::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cf-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  background: var(--dark-3);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.cf-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cf-img-wrap img[src=''] { display: none; }
.cf-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px;
  color: var(--text-muted);
  text-align: center;
}
.cf-img-placeholder p { font-size: .85rem; }
.cf-conteudo { display: flex; flex-direction: column; gap: 20px; }
.cf-titulo {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.cf-texto {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   SOBRE / IMAGEM + TEXTO
   ============================================ */
.sobre-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
}
.sobre-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
/* Imagem à direita por padrão */
.sobre-grid .sobre-img-wrap { order: 2; }
.sobre-grid .sobre-conteudo  { order: 1; }

.sobre-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  background: var(--dark-3);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  position: relative;
}
.sobre-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sobre-img-wrap img[src=''] { display: none; }
.sobre-conteudo { display: flex; flex-direction: column; gap: 20px; }
.sobre-titulo {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.sobre-texto {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
}
.faq-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border); }
.faq-item.open { border-color: rgba(201,168,76,.3); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--dark-3);
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s;
  user-select: none;
}
.faq-question:hover { background: var(--dark-4); }
.faq-item.open .faq-question { background: var(--dark-4); color: var(--gold-light); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform .3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(201,168,76,.2); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 0 24px;
  background: var(--dark-3);
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 16px 24px 24px;
}

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */
#whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--transition);
  text-decoration: none;
}
#whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 32px rgba(37,211,102,.7);
}
#whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.35);
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer__logo span { color: var(--gold); }
.footer__copy {
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ============================================
   AOS ANIMATION STUBS
   ============================================ */
[data-aos] { opacity: 0; transition: opacity .7s ease, transform .7s ease; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-down"] { transform: translateY(-20px); }
[data-aos="zoom-in"] { transform: scale(.95); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ============================================
   HELPERS
   ============================================ */
.desktop-only { display: inline; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .cf-grid { grid-template-columns: 1fr; gap: 32px; }
  .sobre-grid { grid-template-columns: 1fr; gap: 32px; }
  .sobre-grid .sobre-img-wrap,
  .sobre-grid .sobre-conteudo { order: unset; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 0 70px; }
  .hero__title { font-size: 2rem; }
  .btn--primary { padding: 14px 28px; font-size: .95rem; }
  .btn--large { font-size: 1rem; padding: 18px 36px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .section-title { font-size: 1.8rem; }
  .pillar-card { padding: 28px 22px; }
  .desktop-only { display: none; }
}
