/* =============================================
   RT MENTORING - Brand System + Glassmorphism
   Verde: #2F5F47 | Terracota: #974b3e
   Golden Driftwood: #e3c9a4 | Branco | Preto
   Fonts: Marcellus (titles) + Carlito (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Carlito:wght@400;700&display=swap');

:root {
  --verde: #2F5F47;
  --verde-dark: #1e3d2f;
  --verde-light: #3a7759;
  --terracota: #974b3e;
  --terracota-dark: #7d3e33;
  --terracota-light: #b86455;
  --golden: #e3c9a4;
  --golden-light: #f0dfc5;
  --branco: #ffffff;
  --preto: #000000;
  --cinza-claro: #f8f6f2;

  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-bg-light: rgba(255, 255, 255, 0.65);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

body {
  font-family: 'Carlito', sans-serif;
  color: var(--preto);
  line-height: 1.75;
  font-size: 19px;
  background: var(--branco);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Marcellus', serif;
  line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ================================================
   DECORATIVE
   ================================================ */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.orb--golden {
  background: radial-gradient(circle, var(--golden), rgba(227,201,164,0.3));
  animation: orbFloat1 10s ease-in-out infinite;
}
.orb--terracota {
  background: radial-gradient(circle, var(--terracota), rgba(151,75,62,0.3));
  animation: orbFloat2 13s ease-in-out infinite;
}
.orb--verde-glow {
  background: radial-gradient(circle, var(--verde-light), rgba(58,119,89,0.2));
  animation: orbFloat3 16s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(60px, -50px) scale(1.15); }
  50%  { transform: translate(-30px, 40px) scale(0.9); }
  75%  { transform: translate(50px, 60px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes orbFloat2 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-50px, 40px) scale(1.15); }
  66%  { transform: translate(40px, -50px) scale(0.88); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes orbFloat3 {
  0%   { transform: translate(0, 0) scale(1); }
  20%  { transform: translate(30px, 50px) scale(1.1); }
  50%  { transform: translate(-40px, -30px) scale(0.95); }
  80%  { transform: translate(50px, -20px) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}

.line-accent {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--terracota), var(--golden));
  margin: 0 auto 40px;
}

/* Raio SVG decorativo de fundo */
.ray-bg {
  position: absolute;
  height: 100%;
  width: 200px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.ray-bg--right {
  left: auto;
  right: 5%;
  transform: none;
}

/* Glass */
.glass--light {
  background: var(--glass-bg-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

/* ================================================
   BG IMAGE SLOTS — fundo de seção com overlay
   ================================================ */
.bg-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--verde-dark); /* fallback se imagem quebrar */
}
.bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.8) contrast(1.04);
}
/* Banda sem imagem carregada — fallback escuro com textura */
.inspo-band .band-bg-fallback {
  position: absolute;
  inset: -5%;
  width: 110%; height: 110%;
  background: linear-gradient(135deg, var(--verde-dark) 0%, #0f1f16 100%);
}
.bg-overlay {
  position: absolute;
  inset: 0;
}
.bg-overlay--verde {
  background: linear-gradient(160deg,
    rgba(10,22,16,0.62) 0%,
    rgba(20,45,32,0.45) 100%);
}
.bg-overlay--verde-deep {
  background: linear-gradient(170deg,
    rgba(6,14,9,0.72) 0%,
    rgba(20,42,30,0.55) 100%);
}
.bg-overlay--terracota {
  background: linear-gradient(135deg,
    rgba(60,25,18,0.68) 0%,
    rgba(100,45,36,0.50) 100%);
}

/* Placeholder visível enquanto imagem não foi adicionada */
.img-slot-label {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  text-align: center;
  pointer-events: none;
  z-index: 5;
  white-space: nowrap;
}
.img-slot-label small { display: block; opacity: 0.6; font-size: 0.65rem; }

/* ================================================
   INSPO GRID — grid de quadros (desktop) / cards (mobile)
   ================================================ */
.inspo-grid-section {
  background-color: var(--verde-dark);
  background-size: cover;
  background-attachment: scroll;
  background-position: center 25%;
  padding: 80px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inspo-grid-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(19, 40, 29, 0.90);
  pointer-events: none;
  z-index: 0;
}

.inspo-grid-section .container {
  position: relative;
  z-index: 1;
}

/* Divisor ouro/bronze com fade */
.inspo-grid-section .line-accent {
  background: linear-gradient(90deg, transparent, #d4a574, transparent);
  margin: 40px auto 60px;
  box-shadow: 0 0 20px rgba(212, 165, 116, 0.15);
}

/* Grid 2x2 de cards verticais */
.inspo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.inspo-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--verde-dark);
  border: none;
}

.inspo-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  filter: brightness(0.95) saturate(1.05) contrast(1.1);
  transition: transform 0.7s cubic-bezier(0.25,0.8,0.25,1),
              filter 0.5s ease;
}

/* Overlay sempre visível na base */
.inspo-card-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.5) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.75) 80%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
  transition: background 0.4s ease;
}

.inspo-card-num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 5px;
  color: var(--golden);
  opacity: 0.5;
  text-transform: uppercase;
  margin-bottom: 6px;
  transition: opacity 0.3s, letter-spacing 0.4s;
}

.inspo-card-word {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  color: var(--branco);
  margin-bottom: 0;
  line-height: 1.1;
  position: relative;
  padding-bottom: 12px;
}
.inspo-card-word::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--golden), transparent);
  transition: width 0.4s ease;
}

.inspo-card-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.0); /* oculto por padrão no desktop */
  line-height: 1.65;
  margin-top: 10px;
  max-width: 320px;
  transition: color 0.4s ease, max-height 0.4s ease;
  overflow: hidden;
  max-height: 0;
}

/* Hover — desktop only */
@media (hover: hover) {
  .inspo-card:hover img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1.1) contrast(1.15);
  }
  .inspo-card:hover .inspo-card-overlay {
    background:
      radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.45) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.70) 80%, rgba(0,0,0,0.80) 100%);
  }
  .inspo-card:hover .inspo-card-word::after { width: 56px; }
  .inspo-card:hover .inspo-card-num { opacity: 1; letter-spacing: 7px; }
  .inspo-card:hover .inspo-card-desc {
    color: rgba(255,255,255,0.62);
    max-height: 100px;
  }
}

/* Estado ativo — scroll trigger no mobile */
.inspo-card.is-active img {
  filter: brightness(0.95) saturate(1.1) contrast(1.1);
}
.inspo-card.is-active .inspo-card-overlay {
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.75) 100%);
}
.inspo-card.is-active .inspo-card-word::after { width: 56px; }
.inspo-card.is-active .inspo-card-num { opacity: 1; letter-spacing: 7px; }
.inspo-card.is-active .inspo-card-desc {
  color: rgba(255,255,255,0.62);
  max-height: 100px;
}

/* Mobile — 1 coluna, cards maiores */
@media (max-width: 768px) {
  .inspo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    padding: 0 16px;
  }
  .inspo-card {
    aspect-ratio: 3/4;
    max-height: 420px;
    border: none;
    min-height: unset;
  }
  .inspo-card img {
    filter: brightness(0.95) saturate(1.05) contrast(1.1);
    object-position: center 20%;
  }
  .inspo-card-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.75) 70%, rgba(0,0,0,0.92) 100%);
    padding: 20px 22px;
  }
  .inspo-card-word { font-size: 1.6rem; }
  .inspo-card-desc {
    color: rgba(255,255,255,0.58) !important;
    max-height: 100px !important;
  }
  .inspo-card-num { opacity: 0.7; }
}

/* ================================================
   INSPO BANDS — bandas de imagem (mantido para compatibilidade)
   ================================================ */
.inspo-bands-section {
  background: var(--verde-dark);
}
.inspo-bands-header {
  padding: 80px 28px 48px;
  text-align: center;
}
.inspo-band {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: default;
}
.band-bg {
  position: absolute;
  inset: -5%;
  width: 110%; height: 110%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) saturate(0.78) contrast(1.05);
  transition: transform 1.4s cubic-bezier(0.25,0.8,0.25,1), filter 0.8s ease;
  will-change: transform;
}
.inspo-band:hover .band-bg {
  transform: scale(1.04) translateY(-1%);
  filter: brightness(0.75) saturate(0.88) contrast(1.02);
}

.band-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(4,10,6,0.94) 0%,
    rgba(4,10,6,0.70) 38%,
    rgba(4,10,6,0.35) 65%,
    rgba(4,10,6,0.08) 100%);
}
.band-dim--right {
  background: linear-gradient(270deg,
    rgba(4,10,6,0.94) 0%,
    rgba(4,10,6,0.70) 38%,
    rgba(4,10,6,0.35) 65%,
    rgba(4,10,6,0.08) 100%);
}

.band-body {
  position: relative;
  z-index: 2;
  padding: 60px 28px;
  max-width: 540px;
}
.band-body--right {
  margin-left: auto;
  text-align: right;
}

.band-tag {
  display: block;
  font-family: 'Carlito', sans-serif;
  font-size: 0.72rem;
  color: var(--golden);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.6;
}
.band-word {
  font-family: 'Marcellus', serif;
  font-size: 3.6rem;
  color: var(--branco);
  margin-bottom: 0;
  line-height: 1.05;
  position: relative;
  padding-bottom: 20px;
}
.band-word::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--golden), transparent);
  transition: width 0.6s ease;
}
.band-body--right .band-word::after { left: auto; right: 0;
  background: linear-gradient(270deg, var(--golden), transparent);
}
.inspo-band:hover .band-word::after { width: 80px; }
.band-word + .band-desc { margin-top: 20px; }
.band-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 380px;
  letter-spacing: 0.2px;
}
.band-body--right .band-desc { margin-left: auto; }

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25,0.8,0.25,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

/* ================================================
   EXPERIENCES GRID — momentos reais
   ================================================ */
.experiences-section {
  background: var(--cinza-claro);
  padding: 80px 0 0;
  overflow: hidden;
}
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}
.experience-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: rgba(47,95,71,0.08);
  border: 1px dashed rgba(47,95,71,0.2);
}
.experience-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.8,0.25,1);
}
.experience-item:hover img { transform: scale(1.06); }
.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(47,95,71,0.75) 0%, transparent 50%);
  display: flex; align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.experience-item:hover .experience-overlay { opacity: 1; }
.experience-overlay span {
  font-family: 'Marcellus', serif;
  color: var(--golden);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.experience-item--empty .img-slot-label { bottom: 50%; transform: translate(-50%, 50%); }

/* ================================================
   HEADER
   ================================================ */
.header {
  background: var(--verde);
  padding: 18px 0;
  text-align: center;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header .logo {
  max-height: 52px;
  margin: 0 auto;
}

/* ================================================
   HERO — Texto esquerda + Foto/VSL direita
   ================================================ */
.hero {
  background: linear-gradient(160deg, var(--verde-dark) 0%, var(--verde) 40%, var(--verde-light) 100%);
  color: var(--branco);
  padding: 90px 0 80px;
  position: relative;
  overflow: clip;
}
.hero-inner { position: relative; z-index: 1; }
.hero .orb-1 { width: 600px; height: 600px; top: -100px; right: -80px; opacity: 0.08; }
.hero .orb-2 { width: 400px; height: 400px; bottom: -60px; left: -80px; opacity: 0.06; }

.hero .bg-img-wrap {
  background: linear-gradient(180deg, rgba(25,40,30,0.85) 0%, rgba(80,40,25,0.92) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-text .badge {
  display: inline-block;
  background: rgba(151,75,62,0.3);
  border: 1px solid rgba(151,75,62,0.5);
  backdrop-filter: blur(10px);
  color: var(--golden);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 22px;
  margin-bottom: 28px;
}

.hero h1 span { color: var(--golden); }

.hero-sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-micro {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
}

/* Hero media frame */
.hero-media-frame {
  position: relative;
  aspect-ratio: 4/5;
  background: rgba(47,95,71,0.06);
  border: 1px solid rgba(47,95,71,0.15);
  overflow: hidden;
}
.hero-media-frame img,
.hero-media-frame iframe {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.hero-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; color: var(--verde);
}
.hero-placeholder .play-btn {
  width: 80px; height: 80px;
  border: 2px solid var(--golden);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.5; transition: all 0.3s;
}
.hero-placeholder:hover .play-btn { opacity: 0.8; transform: scale(1.05); }
.hero-placeholder span { font-size: 0.9rem; opacity: 0.4; }
.hero-placeholder .small { font-size: 0.75rem; opacity: 0.2; letter-spacing: 1px; }

/* Media placeholder genérico */
.media-placeholder {
  position: relative;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; color: var(--golden); overflow: hidden;
}
.media-placeholder .placeholder-icon {
  width: 64px; height: 64px;
  border: 2px solid var(--golden); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.5;
}
.media-placeholder .placeholder-text {
  font-size: 0.85rem; opacity: 0.4; text-align: center;
  letter-spacing: 1px; text-transform: uppercase;
}
.media-placeholder::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(30,61,47,0.5), transparent);
  pointer-events: none;
}

/* ================================================
   BADGE — Hero live badge
   ================================================ */
.badge--live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(151,75,62,0.25);
  border: 1px solid rgba(151,75,62,0.45);
  color: var(--golden);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 22px;
  margin-bottom: 32px;
  animation: badgeFadeIn 0.6s ease both;
}

.live-dot {
  width: 8px; height: 8px;
  background: var(--terracota-light);
  border-radius: 50%;
  flex-shrink: 0;
  animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,100,85,0.7); }
  50%       { box-shadow: 0 0 0 6px rgba(184,100,85,0); }
}

@keyframes badgeFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================
   HERO H1 — animação por linha
   ================================================ */
.hero-h1 {
  font-size: clamp(1.55rem, 4.5vw, 3.4rem);
  color: var(--branco);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-line-1 {
  display: inline-block;
  opacity: 0;
  color: var(--branco);
  animation: slideInLeft 0.7s 0.3s cubic-bezier(0.25,0.8,0.25,1) forwards;
}
.hero-line-2 {
  display: inline-block;
  opacity: 0;
  color: var(--branco);
  animation: slideInRight 0.7s 0.6s cubic-bezier(0.25,0.8,0.25,1) forwards;
}
.hero-em {
  color: var(--golden);
  font-style: normal;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ================================================
   CTA BUTTON
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--verde), var(--verde-light));
  color: var(--branco);
  font-family: 'Carlito', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 20px 52px;
  border: none; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1);
  letter-spacing: 0.5px;
  position: relative; overflow: hidden;
  border-bottom: 3px solid rgba(227,201,164,0.4);
}
.btn::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(47,95,71,0.4);
  border-bottom-color: var(--golden);
}
.btn:hover::before { left: 100%; }
.btn--full { width: 100%; text-align: center; justify-content: center; }
.btn--hero {
  opacity: 0;
  animation: fadeInUp 0.6s 0.9s ease forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================
   HERO PROOF — social proof strip
   ================================================ */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  opacity: 0;
  animation: fadeInUp 0.6s 1.2s ease forwards;
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-num {
  font-family: 'Marcellus', serif;
  font-size: 2rem;
  color: var(--golden);
  line-height: 1;
  font-weight: 400;
}

.proof-unit {
  font-family: 'Marcellus', serif;
  font-size: 1.3rem;
  color: var(--golden);
  vertical-align: super;
}

.proof-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  max-width: 120px;
}

.proof-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ================================================
   HERO FLOAT BADGE — sobre a foto
   ================================================ */
/* Controles do vídeo */
.video-controls {
  position: absolute;
  top: 14px; right: 14px;
  display: flex; gap: 8px; z-index: 4;
}
.video-btn {
  width: 38px; height: 38px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--branco);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.video-btn:hover { background: rgba(47,95,71,0.8); border-color: var(--golden); }

.hero-badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--verde);
  border: 1px solid rgba(227,201,164,0.35);
  color: var(--golden);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 18px;
  z-index: 3;
}

/* ================================================
   SECTIONS
   ================================================ */
.section {
  padding: 100px 0;
  position: relative;
  overflow: clip;
}
.section--verde {
  background: #3d2520;
  color: var(--branco);
  position: relative;
  overflow: hidden;
}

.section--verde .bg-img {
  filter: brightness(0.7) saturate(0.85) contrast(1.05);
}

.section--verde::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 0;
}
.section--terracota {
  background: linear-gradient(135deg, var(--terracota-dark), var(--terracota), var(--terracota-light));
  color: var(--branco);
}
.section--golden {
  background: linear-gradient(180deg, var(--golden-light), #f5ead8);
  color: var(--preto);
}
.section--cinza {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}
.section--cinza::before {
  display: none;
}
.section--cinza .container {
  position: relative;
  z-index: 1;
}
.section--dark {
  background: linear-gradient(170deg, #070d09 0%, #0f1a12 100%);
  color: var(--branco);
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 14px;
}
.section-subtitle {
  text-align: center;
  font-size: 1.32rem;
  max-width: 600px;
  margin: 0 auto 20px;
  opacity: 0.9;
  line-height: 1.6;
}
.section-quote {
  text-align: center;
  margin-top: 56px;
  color: var(--golden);
  font-family: 'Marcellus', serif;
  font-size: 1.3rem;
  font-style: italic;
}

/* ================================================
   PROBLEMS
   ================================================ */
.problems {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}
.problem-item {
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(227,201,164,0.35);
  padding: 20px 24px 20px 56px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.problem-item strong {
  color: rgba(255,255,255,0.98);
  font-weight: 700;
  font-size: 1.22rem;
  display: block;
}
.problem-item span {
  color: rgba(255,255,255,0.85);
  font-size: 1.12rem;
  line-height: 1.55;
  display: block;
}
.problem-item::before {
  content: ""; position: absolute; left: 24px; top: 24px;
  width: 8px; height: 8px;
  background: var(--golden); border-radius: 50%;
  opacity: 0.7; transition: opacity 0.3s, transform 0.3s;
}

/* ================================================
   INSPIRATION PANEL
   ================================================ */
.inspiration-section {
  background: var(--verde-dark);
  padding: 100px 0;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  min-height: 520px;
}

.inspiration-tall {
  grid-row: span 2;
}

.inspiration-placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  position: relative;
}

.inspiration-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.8,0.25,1);
}

.inspiration-placeholder:hover img {
  transform: scale(1.05);
}

/* Overlay de texto sobre as imagens */
.inspiration-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  color: var(--branco);
  z-index: 2;
  transition: padding-bottom 0.3s;
}

.inspiration-placeholder:hover .inspiration-overlay {
  padding-bottom: 28px;
}

.inspiration-word {
  display: block;
  font-family: 'Marcellus', serif;
  font-size: 1.6rem;
  color: var(--golden);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.inspiration-desc {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.inspiration-quote-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.inspiration-quote-inner {
  text-align: center;
  padding: 32px 24px;
  color: var(--golden);
}
.inspiration-quote-inner p {
  font-family: 'Marcellus', serif;
  font-size: 1.1rem;
  font-style: italic;
  opacity: 0.65;
  margin-top: 20px;
  line-height: 1.6;
}

/* ================================================
   METHOD RAY — Raio vertical com pilares
   ================================================ */
.method-ray {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-left: 56px;
}

.ray-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--golden), var(--terracota), var(--verde));
  opacity: 0.3;
  transition: opacity 0.4s;
}
.method-ray:hover .ray-line { opacity: 0.55; }

.method-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  position: relative;
  transition: transform 0.3s ease;
  border-bottom: 1px solid #373B32;
}
.method-step:last-child { border-bottom: none; }

.method-bolt {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 2px solid #937D5D;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: -56px;
  margin-right: -56px;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.25,0.8,0.25,1);
}

.method-bolt svg {
  color: #937D5D;
}

.method-step {
  cursor: pointer;
}

.method-step:hover {
  transform: translateX(8px);
}

.method-step:hover .method-bolt {
  border-color: var(--golden);
  box-shadow: 0 0 16px rgba(147,125,93,0.5);
  transform: scale(1.12);
}

.method-bolt svg {
  stroke: #937D5D;
  transition: stroke 0.3s;
}

.method-step:hover .method-bolt svg {
  stroke: var(--golden);
}

.method-content h3 {
  transition: color 0.3s, text-shadow 0.3s;
}

.method-step:hover .method-content h3 {
  text-shadow: 0 0 12px rgba(227,201,164,0.3);
}

.method-content p {
  transition: color 0.3s;
}

.method-step:hover .method-content p {
  color: rgba(255,255,255,0.95);
}

.method-content h3 {
  font-size: 1.4rem;
  color: var(--golden);
  margin-bottom: 6px;
  font-weight: 400;
}

.method-content p {
  font-size: 1.24rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  transition: color 0.3s;
}

/* Número do passo — aparece no hover */
.method-step-num {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Marcellus', serif;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.15);
  opacity: 1;
  transition: opacity 0.3s ease, color 0.3s ease;
  pointer-events: none;
  line-height: 1;
}
.method-step:hover .method-step-num {
  opacity: 0.06;
  transform: translateY(-50%) scale(1.15);
}

/* ================================================
   FOR WHO — hover lift
   ================================================ */
.for-who-col {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.for-who-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.09);
}

/* ================================================
   MENTOR QUOTE BOX — subtle glow
   ================================================ */
.mentor-info .quote-box {
  transition: box-shadow 0.3s ease;
}
.mentor-info .quote-box:hover {
  box-shadow: 0 8px 28px rgba(47,95,71,0.25);
}

/* ================================================
   BAND BODY — reveal desc on hover
   ================================================ */
.band-desc {
  transition: color 0.4s ease, opacity 0.4s ease;
}
.inspo-band:hover .band-desc {
  color: rgba(255,255,255,0.72);
}
.inspo-band:hover .band-tag {
  opacity: 1;
  letter-spacing: 8px;
  transition: letter-spacing 0.5s ease, opacity 0.3s;
}
.band-tag {
  transition: letter-spacing 0.5s ease, opacity 0.3s;
}

/* ================================================
   CTA GLASS CARD — border glow on hover
   ================================================ */
.cta-glass-card {
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.cta-glass-card:hover {
  border-color: rgba(227,201,164,0.25);
  box-shadow: 0 0 60px rgba(227,201,164,0.08);
}

/* ================================================
   QUOTE SECTION
   ================================================ */
.quote-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section .quote-mark {
  font-family: 'Marcellus', serif;
  font-size: 7rem;
  color: var(--golden);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -24px;
}
.quote-section h2 {
  font-size: 1.8rem;
  color: var(--golden);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 400;
  font-style: italic;
}
.quote-section .quote-author {
  margin-top: 24px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ================================================
   FOR WHO
   ================================================ */
.for-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 780px;
  margin: 0 auto;
}
.for-who-col {
  padding: 40px 36px;
  background: var(--branco);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  border-top: 3px solid var(--verde);
}
.for-who-col.nao {
  border-top-color: var(--terracota);
  background: #fefcfa;
}
.for-who-col h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--verde);
}
.for-who-col.nao h3 { color: var(--terracota); }
.for-who-col ul { list-style: none; padding: 0; }
.for-who-col ul li {
  padding: 14px 0 14px 32px;
  position: relative;
  font-size: 1.05rem;
  border-bottom: 1px solid #f0ede8;
  color: #444;
}
.for-who-col ul li:last-child { border-bottom: none; }
.for-who-col ul li {
  transition: transform 0.25s ease, color 0.25s;
}
.for-who-col.sim ul li:hover { transform: translateX(6px); color: var(--verde); }
.for-who-col.nao ul li:hover { transform: translateX(6px); color: var(--terracota); }
.for-who-col ul li::before {
  position: absolute; left: 0; top: 14px;
  font-size: 1.1rem; font-weight: 700;
}
.for-who-col.sim ul li::before { content: "\2713"; color: var(--verde); }
.for-who-col.nao ul li::before { content: "\2715"; color: var(--terracota); opacity: 0.6; }

/* ================================================
   MENTOR — Texto esquerda, foto direita
   ================================================ */
.mentor-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}
.mentor-photo { position: relative; }
.mentor-photo .media-placeholder {
  background: rgba(47,95,71,0.06);
  border: 1px solid rgba(47,95,71,0.12);
}
.mentor-photo .media-placeholder .placeholder-icon { border-color: var(--verde); color: var(--verde); }
.mentor-photo .media-placeholder .placeholder-text { color: var(--verde); }
.mentor-photo .media-placeholder::after {
  background: linear-gradient(to top, var(--golden-light), transparent);
}
.mentor-photo::before {
  content: ''; position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 2px solid var(--golden); opacity: 0.35; z-index: -1;
}

.mentor-info h2 {
  font-size: 2.4rem;
  margin-bottom: 8px;
  color: var(--verde-dark);
}
.mentor-info .mentor-role {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--terracota);
  margin-bottom: 24px;
}
.mentor-info p {
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}
.mentor-info .quote-box {
  margin-top: 28px;
  padding: 28px 32px;
  background: var(--verde);
  color: var(--golden);
  font-style: italic;
  font-size: 1.15rem;
  position: relative;
  line-height: 1.6;
}
.mentor-info .quote-box::before {
  content: "\201C";
  font-family: 'Marcellus', serif;
  font-size: 4.5rem;
  position: absolute; top: -10px; left: 18px;
  color: var(--golden); opacity: 0.2; font-style: normal;
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: clip;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: 2.4rem; margin-bottom: 20px; }
.cta-section p {
  font-size: 1.15rem; margin-bottom: 36px;
  max-width: 520px; margin-left: auto; margin-right: auto;
}
.cta-section .vagas {
  font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 3px; margin-top: 20px; opacity: 0.5;
}
.cta-glass-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 64px 52px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
}

/* ================================================
   FORM PAGE
   ================================================ */
.form-page {
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: var(--cinza-claro);
}
.form-wrapper {
  flex: 1; display: flex;
  align-items: flex-start; justify-content: center;
  padding: 60px 24px;
}
.form-card {
  width: 100%; max-width: 600px;
  background: var(--branco);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  padding: 60px 52px;
  position: relative;
}
.form-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--verde), var(--golden), var(--terracota));
}
.form-card h1 {
  font-size: 2rem;
  text-align: center; margin-bottom: 10px;
  color: var(--verde-dark);
}
.form-card .form-desc {
  text-align: center; color: #888;
  margin-bottom: 44px; font-size: 1.05rem;
}
.form-steps {
  display: flex; justify-content: center;
  gap: 6px; margin-bottom: 44px;
}
.form-steps .step {
  width: 56px; height: 3px;
  background: #e8e4de; transition: background 0.3s;
}
.form-steps .step.active {
  background: linear-gradient(90deg, var(--verde), var(--verde-light));
}
.form-group { margin-bottom: 32px; }
.form-group label {
  display: block; font-weight: 700;
  margin-bottom: 10px; font-size: 1rem;
  color: var(--verde-dark);
}
.form-group label .required { color: var(--terracota); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 16px 20px;
  font-family: 'Carlito', sans-serif;
  font-size: 1.05rem;
  border: 1.5px solid #e0dcd5;
  background: var(--cinza-claro);
  color: var(--preto);
  transition: all 0.3s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--verde);
  background: var(--branco);
  box-shadow: 0 0 0 4px rgba(47,95,71,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b5b0a8; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-group .radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.form-group .radio-option { flex: 1; min-width: 130px; }
.form-group .radio-option input[type="radio"] { display: none; }
.form-group .radio-option label {
  display: block; padding: 16px 12px;
  text-align: center;
  border: 1.5px solid #e0dcd5;
  background: var(--cinza-claro);
  cursor: pointer; font-weight: 400;
  transition: all 0.3s; font-size: 1rem;
}
.form-group .radio-option label:hover { border-color: var(--verde); }
.form-group .radio-option input[type="radio"]:checked + label {
  border-color: var(--verde);
  background: var(--verde);
  color: var(--branco);
  box-shadow: 0 4px 12px rgba(47,95,71,0.2);
}
.form-privacy {
  text-align: center; margin-top: 20px;
  font-size: 0.85rem; color: #aaa;
  display: flex; align-items: center;
  justify-content: center; gap: 6px;
}
.form-privacy svg { width: 14px; height: 14px; fill: #aaa; }

/* ================================================
   THANK YOU
   ================================================ */
.thankyou-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--verde-dark), var(--verde), var(--verde-light));
  color: var(--branco);
  text-align: center; padding: 40px 24px;
  position: relative; overflow: hidden;
}
.thankyou-page .orb-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.thankyou-page .orb-2 { width: 300px; height: 300px; bottom: -60px; left: -80px; }
.thankyou-content { position: relative; z-index: 1; }
.thankyou-content .icon-check {
  width: 96px; height: 96px;
  border: 2px solid var(--golden);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 36px;
  font-size: 2.8rem; color: var(--golden);
  background: rgba(227,201,164,0.08);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(227,201,164,0.3); }
  70% { box-shadow: 0 0 0 20px rgba(227,201,164,0); }
  100% { box-shadow: 0 0 0 0 rgba(227,201,164,0); }
}
.thankyou-content h1 {
  font-size: 2.8rem; margin-bottom: 24px; color: var(--golden);
}
.thankyou-content > p {
  font-size: 1.15rem; max-width: 500px;
  margin: 0 auto 18px; opacity: 0.85;
}
.thankyou-content .next-steps {
  margin-top: 48px; padding: 40px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  text-align: left;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}
.thankyou-content .next-steps h3 {
  font-size: 1.15rem; margin-bottom: 20px; color: var(--golden);
}
.thankyou-content .next-steps ol { padding-left: 20px; }
.thankyou-content .next-steps ol li {
  margin-bottom: 14px; font-size: 1.05rem; opacity: 0.85;
}

/* ================================================
   PROBLEM ITEMS — reveal individual com stagger via JS
   ================================================ */
.problems--stagger .problem-item.reveal {
  opacity: 0;
  transform: translateY(20px);
}
.problems--stagger .problem-item.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   QUOTE SECTION — animações de entrada
   ================================================ */
.quote-mark.reveal {
  transform: scale(0.7) translateY(10px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25,0.8,0.25,1);
}
.quote-mark.reveal.is-visible {
  transform: scale(1) translateY(0);
}

.quote-h2.reveal {
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25,0.8,0.25,1);
}
.quote-h2.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.quote-ray-icon.reveal {
  transform: translateY(12px) rotate(-20deg);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.quote-ray-icon.reveal.is-visible {
  transform: translateY(0) rotate(0deg);
}

/* ================================================
   STAGGER LISTS — li items animados em cascata
   ================================================ */
.stagger-list li {
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.stagger-list.list-visible li { opacity: 1; transform: translateX(0); }
.stagger-list.list-visible li:nth-child(1) { transition-delay: 0.05s; }
.stagger-list.list-visible li:nth-child(2) { transition-delay: 0.12s; }
.stagger-list.list-visible li:nth-child(3) { transition-delay: 0.19s; }
.stagger-list.list-visible li:nth-child(4) { transition-delay: 0.26s; }
.stagger-list.list-visible li:nth-child(5) { transition-delay: 0.33s; }

/* ================================================
   MENTOR — quote-box pulse sutil
   ================================================ */
@keyframes quoteGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(47,95,71,0.15); }
  50%       { box-shadow: 0 8px 36px rgba(47,95,71,0.38); }
}
.mentor-info .quote-box {
  animation: quoteGlow 4s ease-in-out infinite;
}

/* ================================================
   CTA BUTTON — pulse de atenção
   ================================================ */
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47,95,71,0.4); }
  60%       { box-shadow: 0 0 0 14px rgba(47,95,71,0); }
}
.btn--pulse {
  animation: btnPulse 2.8s ease-in-out infinite;
}
.btn--pulse:hover { animation: none; }

/* ================================================
   FOOTER — fade in
   ================================================ */
.footer--reveal {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.footer--reveal.footer-visible { opacity: 1; }

/* ================================================
   MOBILE is-active — equivalente ao hover via scroll
   ================================================ */
@media (hover: none) {
  .method-step.is-active { transform: translateX(10px); }
  .method-step.is-active .method-bolt {
    border-color: var(--golden);
    box-shadow: 0 0 16px rgba(147,125,93,0.5);
  }
  .method-step.is-active .method-step-num { opacity: 0.06; }

  .problem-item.is-active {
    background: rgba(255,255,255,0.09);
    border-color: rgba(227,201,164,0.2);
    transform: translateX(4px);
  }
  .problem-item.is-active::after { width: 100%; }
  .problem-item.is-active::before { opacity: 1; }

  .for-who-col.is-active {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.09);
  }
}

/* ================================================
   HERO SECTION - VERTICAL CENTERED
   ================================================ */
.hero {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  height: auto;
  padding-bottom: 80px;
  position: relative;
  overflow: clip;
  background: linear-gradient(160deg, #0d1f15 0%, #1a3020 30%, #3d2520 65%, #1a1209 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212,165,116,0.15) 0%, transparent 25%),
    radial-gradient(circle at 70% 40%, rgba(212,165,116,0.12) 0%, transparent 30%),
    radial-gradient(circle at 45% 60%, rgba(212,165,116,0.1) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(212,165,116,0.08) 0%, transparent 28%),
    radial-gradient(circle at 15% 75%, rgba(212,165,116,0.1) 0%, transparent 32%);
  pointer-events: none;
  z-index: 0;
}

/* Film Grain Texture + verde overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><filter id="grain"><feTurbulence type="fractalNoise" baseFrequency="0.75" numOctaves="5" result="noise" seed="7" /><feColorMatrix in="noise" type="saturate" values="0" /></filter><rect width="400" height="400" fill="rgba(255,255,255,0.055)" filter="url(%23grain)" /></svg>');
  background-size: 120px 120px;
  opacity: 1.0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}

/* Degradê verde sutil sobre o fundo */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19,40,29,0.55) 0%, rgba(47,95,71,0.25) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

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

.hero-center .hero-subheadline {
  margin-bottom: 12px;
}

/* Hero grid — 2 colunas no desktop */
.hero-desktop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

.hero-col-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.hero-col-left .hero-h1 { text-align: left; }
.hero-col-left .hero-subheadline { text-align: left; margin-top: -14px; }
.hero-col-left .btn--full-width { max-width: 100%; }
.hero-col-left .hero-micro { text-align: left; }
.hero-col-left .hero-stats-row { justify-content: flex-start; }

.hero-col-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-cta-bottom {
  opacity: 1;
  animation: none;
  width: 100%;
  justify-content: center;
}

/* Stats em linha com pipes */
.hero-stats-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  width: 100%;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.hero-stat-num-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.hero-stat-sep {
  color: rgba(255,255,255,0.2);
  font-size: 1.8rem;
  font-weight: 100;
  line-height: 1;
  align-self: center;
}

.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  font-weight: 600;
}

.hero-stats-row .evidence-num {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

.hero-stats-row .evidence-unit {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
}

/* Coluna direita */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-game-phrase {
  font-family: 'Marcellus', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--golden);
  text-align: center;
  font-style: italic;
  opacity: 0;
  animation: fadeInUp 0.6s 0.8s ease forwards;
}

.hero-video-slot {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/5;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(227,201,164,0.15);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.hero-video-slot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay verde com raio */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30,70,48,0.45) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.hero-video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47,95,71,0.85);
  border: 1px solid rgba(227,201,164,0.3);
  backdrop-filter: blur(8px);
  color: var(--golden);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 14px;
}

/* Controles de vídeo */
.hero-video-controls {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.vid-btn {
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border-radius: 4px;
}

.vid-btn:hover {
  background: rgba(47,95,71,0.8);
  border-color: var(--golden);
}

.hero-video-claim {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  text-align: center;
  line-height: 1.7;
  max-width: 600px;
}

.hero-stats-row {
  justify-content: center;
}

.hero-logo {
  height: 56px;
  width: auto;
  opacity: 1;
  margin-bottom: 8px;
}

.hero-h1 {
  font-size: clamp(1.9rem, 5.6vw, 3.2rem);
  font-family: 'Marcellus', serif;
  color: var(--golden);
  max-width: 820px;
  line-height: 1.18;
  font-weight: 400;
  text-wrap: balance;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.72), 0 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-subheadline {
  font-size: clamp(1.12rem, 3.4vw, 1.4rem);
  letter-spacing: 0.01em;
  color: #f6f1e8;
  font-weight: 400;
  line-height: 1.55;
  max-width: 620px;
  text-wrap: balance;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
  opacity: 1;
  margin-top: -8px;
}

/* Triangle Pillar */
.hero-triangle-pillar {
  position: relative;
  width: 320px;
  height: 280px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.6s 0.7s ease forwards;
}

.triangle-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.15));
}

.triangle-point {
  position: absolute;
  font-weight: 700;
  color: var(--golden);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.triangle-point--top {
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.triangle-point--left {
  bottom: 32px;
  left: -60px;
}

.triangle-point--right {
  bottom: 32px;
  right: -60px;
}

.point-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--golden);
  display: block;
}

.point-desc {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Triangle Descriptions */
.triangle-descriptions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  opacity: 0;
  animation: fadeInUp 0.6s 0.9s ease forwards;
}

.triangle-descriptions p {
  margin: 0;
  line-height: 1.5;
}

/* Primary CTA Button */
.btn--primary {
  background: linear-gradient(135deg, var(--verde-dark), var(--verde));
  color: var(--branco);
  font-size: 1rem;
  padding: 18px 48px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--verde), var(--verde-light));
  border-color: var(--golden);
  box-shadow: 0 12px 36px rgba(47,95,71,0.3);
}

.btn--full-width {
  width: 100%;
  max-width: 600px;
  justify-content: center;
  text-align: center;
  opacity: 1;
  white-space: nowrap;
}

.btn--secondary {
  max-width: 100%;
  padding: 12px 32px;
  font-size: 0.95rem;
  background: linear-gradient(90deg, var(--verde-light), var(--verde-dark));
  display: inline-flex;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 0.6s 1.2s ease forwards;
}

.btn--secondary:hover {
  background: linear-gradient(90deg, var(--verde), var(--verde));
  box-shadow: 0 8px 24px rgba(47,95,71,0.25);
}

.hero-micro {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  opacity: 1;
}

/* ================================================
   EVIDENCE NUMBERS — prova social
   ================================================ */
.evidence-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: nowrap;
}

.evidence-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}

.evidence-num {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--golden);
  font-family: 'Marcellus', serif;
  font-weight: 400;
}

.evidence-unit {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--golden);
  margin-left: 2px;
}

.evidence-label {
  font-size: clamp(0.7rem, 1.8vw, 0.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  font-weight: 600;
}

/* ================================================
   VIDEO SHOWCASE
   ================================================ */
.video-showcase {
  margin: 0 auto;
  max-width: 900px;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.video-frame video,
.video-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--verde-dark), var(--verde));
  color: var(--golden);
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 10;
}

/* Controles do vídeo */
.video-controls {
  position: absolute;
  top: 14px; right: 14px;
  display: flex; gap: 8px; z-index: 4;
}
.video-btn {
  width: 38px; height: 38px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--branco);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.video-btn:hover { background: rgba(47,95,71,0.8); border-color: var(--golden); }

/* Video Claim */
.video-claim {
  text-align: center;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.video-claim strong {
  color: var(--golden);
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Botão brand — shimmer + noise */
@keyframes brandShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.btn--brand {
  background: linear-gradient(110deg, #060e08 0%, #0f2218 35%, #1a3828 55%, #0f2218 80%, #060e08 100%);
  background-size: 200% auto;
  animation: brandShimmer 4s linear infinite;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  white-space: normal;
  max-width: 360px;
  width: 100%;
  text-align: center;
  justify-content: center;
  line-height: 1.35;
  padding: 14px 28px;
  position: relative;
  overflow: hidden;
}

.btn--brand::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4"/><feColorMatrix type="saturate" values="0"/></filter><rect width="200" height="200" fill="rgba(255,255,255,0.04)" filter="url(%23n)"/></svg>');
  background-size: 120px 120px;
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* ================================================
   PAGE NOISE TEXTURE
   ================================================ */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" result="noise" /></filter><rect width="400" height="400" fill="rgba(0,0,0,0.015)" filter="url(%23noise)" opacity="0.3"/></svg>');
  background-size: 200px 200px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--verde-dark);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 28px 0;
  font-size: 0.85rem;
}
.footer a { color: var(--golden); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
  body { font-size: 16px; }

  .section--cinza,
  .inspo-grid-section {
    background-attachment: scroll;
  }

  .hero-desktop-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-col-left {
    align-items: center;
    text-align: center;
  }

  .hero-col-left .hero-h1,
  .hero-col-left .hero-subheadline,
  .hero-col-left .hero-micro { text-align: center; }
  .hero-col-left .hero-stats-row { justify-content: center; }
  .hero-stat { align-items: center; }

  .hero { min-height: auto; padding: 60px 0 40px; overflow-x: hidden; }
  .hero-stats-row { flex-wrap: wrap; gap: 10px; }
  .btn--full-width { white-space: normal; font-size: 0.9rem; padding: 14px 20px; }
  .hero-center { gap: 18px; }
  .hero-h1 { font-size: clamp(1.6rem, 6.2vw, 2.1rem); }
  .hero-subheadline { font-size: clamp(1.08rem, 4.4vw, 1.28rem); margin-top: -4px; }
  .hero-triangle-pillar { width: 200px; height: 180px; margin: 12px auto 0; }
  .triangle-point { font-size: 0.8rem; }
  .triangle-point--top { top: -28px; }
  .triangle-point--left { left: -44px; bottom: 20px; }
  .triangle-point--right { right: -44px; bottom: 20px; }
  .triangle-descriptions { font-size: 0.75rem; gap: 8px; }
  .btn--full-width { max-width: 100%; padding: 14px 28px; font-size: 0.9rem; }
  .hero-micro { font-size: 0.8rem; }

  .evidence-numbers { flex-wrap: wrap; gap: 20px; margin-bottom: 40px; }
  .evidence-num { font-size: clamp(1.6rem, 4vw, 2rem); }
  .evidence-label { font-size: clamp(0.65rem, 1.5vw, 0.75rem); }
  .video-claim { font-size: 0.9rem; margin-bottom: 28px; }
  .video-badge { bottom: 12px; left: 12px; font-size: 0.7rem; padding: 6px 10px; }
  .btn--secondary { padding: 10px 24px; font-size: 0.85rem; }
  .badge--live { font-size: 0.75rem; }
  .experiences-grid { grid-template-columns: 1fr; }
  .inspo-band { min-height: 320px; }
  .band-word { font-size: 2.2rem; }
  .band-body--right { text-align: left; margin-left: 0; }
  .band-dim--right { background: linear-gradient(90deg, rgba(6,14,9,0.92) 0%, rgba(6,14,9,0.75) 45%, rgba(6,14,9,0.2) 100%); }

  .problems { grid-template-columns: 1fr; gap: 10px; }
  .problem-item { padding: 18px 22px 18px 48px; font-size: 1rem; }
  .problem-item strong { font-size: 1.1rem; }
  .problem-item span { font-size: 1rem; }
  .problem-item::before { left: 20px; top: 22px; width: 7px; height: 7px; }

  .inspiration-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .inspiration-tall { grid-row: span 1; }
  .inspiration-placeholder { min-height: 280px; }

  .method-ray {
    padding-left: 52px;
    max-width: 100%;
  }

  .method-bolt {
    left: -52px;
    margin-right: -52px;
    width: 40px;
    height: 40px;
    border-width: 2px;
  }

  .ray-line {
    left: 18px;
  }

  .method-step {
    padding: 20px 0;
    gap: 16px;
  }

  .method-content h3 {
    font-size: 1.2rem;
  }

  .method-content p {
    font-size: 0.95rem;
  }

  .method-step-num {
    font-size: 2.5rem;
  }

  .for-who-grid { grid-template-columns: 1fr; gap: 24px; }

  .mentor-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .mentor-photo { max-width: 280px; margin: 0 auto; order: -1; }
  .mentor-photo::before { display: none; }

  /* section-title usa clamp — sem override necessário */
  .section { padding: 70px 0; }

  .btn { padding: 18px 36px; font-size: 1rem; }

  .form-card { padding: 40px 24px; }
  .form-group .radio-group { flex-direction: column; }
  .cta-glass-card { padding: 44px 28px; }
  .cta-section h2 { font-size: 2rem; }
}

/* ================================================
   DESKTOP ONLY — correções de layout
   ================================================ */
@media (min-width: 769px) {
  .container { padding: 0 48px; }

  /* Hero grid */
  .hero-desktop-grid { gap: 48px; align-items: center; }
  .hero-col-left { gap: 16px; }
  .hero-col-right { width: 100%; }

  /* H1 menor no desktop */
  .hero-h1 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }

  /* Vídeo menor no desktop */
  .hero-video-slot { max-width: 370px; margin: 0 auto; width: 370px; }

  /* Brilho só no PC */
  .btn--brand {
    box-shadow: 0 0 28px rgba(30,56,40,0.7), inset 0 1px 0 rgba(255,255,255,0.07);
    font-size: 0.68rem;
    max-width: 300px;
    padding: 11px 20px;
  }

  /* Espaço subheadline → vídeo */
  .hero-center { gap: 20px; }
  .hero-subheadline { margin-bottom: 16px; }

  /* Pirâmide menor */
  .hero-triangle-pillar { width: 220px; height: 200px; margin: 0 auto; }
  .triangle-point { font-size: 0.9rem; }
  .triangle-point--top { top: -28px; }
  .triangle-point--left { left: -48px; bottom: 22px; }
  .triangle-point--right { right: -48px; bottom: 22px; }

  /* Botão sem quebra no desktop */
  .btn--full-width { max-width: 300px; }

  /* Seção para quem */
  .for-who-grid { max-width: 960px; gap: 40px; }

  /* Stats alinhados à esquerda na coluna */
  .hero-col-left .hero-stats-row { justify-content: flex-start; }
  .hero-col-left .hero-stat { align-items: flex-start; }

  /* Seção método */
  .method-ray { max-width: 680px; }

  /* Seção diagnóstico — 2 colunas */
  .problems { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-proof { flex-wrap: wrap; gap: 20px; }
  .proof-sep { display: none; }
  /* clamp já cobre */
  .for-who-col { padding: 28px 20px; }
  .method-content h3 { font-size: 1.2rem; }
}

/* =================================================================
   LISTA DE ESPERA — landing v2 (mentoria como waitlist)
   ================================================================= */

/* Mosaico de fotos de ambiência no fundo do hero (mesclado com verde) */
.hero-mosaic {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  overflow: hidden;
  background: var(--verde-dark);
}
.hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.4) brightness(0.34) contrast(1.02);
}
/* Véu verde por cima — verde mais rico + centro escurecido pra o texto ficar legível */
.hero-mosaic-veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 85% 62% at 50% 44%, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 78%),
    linear-gradient(160deg, rgba(18, 54, 35, 0.94) 0%, rgba(13, 42, 27, 0.90) 45%, rgba(8, 24, 16, 0.96) 100%);
}
@media (max-width: 768px) {
  .hero-mosaic { grid-template-columns: repeat(2, 1fr); }
}

/* Selo "lista de espera" no hero */
.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(151, 75, 62, 0.28);
  border: 1px solid rgba(227, 201, 164, 0.4);
  color: var(--golden);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 30px;
  margin-bottom: 4px;
}
.waitlist-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracota-light);
  flex-shrink: 0;
  animation: livePulse 1.8s ease-in-out infinite;
}

/* Foto do palco dentro do slot de vídeo + botão play */
.hero-video-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; pointer-events: none;
}
.hero-play span {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(47, 95, 71, 0.78);
  border: 2px solid var(--golden);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.hero-play svg { margin-left: 4px; color: var(--golden); }

/* Intro do mecanismo (seção das 3 propostas) */
.mechanism-intro {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.62;
}
.mechanism-intro strong { color: var(--golden); font-weight: 700; }

/* Fecho "eu te pego pela mão" + lista de espera */
.hand-note {
  max-width: 620px;
  margin: 56px auto 0;
  text-align: center;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.65;
}
.hand-note strong { color: var(--golden); }

/* CTA inline centralizado */
.cta-inline { text-align: center; margin-top: 40px; }
.cta-inline .btn { max-width: 420px; width: 100%; }

/* Grid de depoimentos (prints) — proporções variadas: cards não esticam (sem espaço branco) */
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.depo-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(47, 95, 71, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.depo-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24); }
.depo-card img { width: 100%; height: auto; display: block; }
@media (max-width: 768px) {
  .depo-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* Lista de espera — passos "como funciona" no CTA final */
.waitlist-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto 8px;
  max-width: 460px;
  text-align: left;
}
.waitlist-steps li {
  position: relative;
  padding: 12px 0 12px 40px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  counter-increment: wl;
}
.waitlist-steps li:last-child { border-bottom: none; }
.waitlist-steps li::before {
  content: counter(wl);
  position: absolute; left: 0; top: 10px;
  width: 26px; height: 26px;
  border: 1px solid var(--golden);
  border-radius: 50%;
  color: var(--golden);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.waitlist-steps { counter-reset: wl; }

/* =================================================================
   CONTEÚDO SEMPRE VISÍVEL — a landing é SSR e NÃO pode depender de JS
   pra renderizar. A entrada vira animação CSS pura (enriquecimento);
   se o JS/observer não rodar, o conteúdo aparece do mesmo jeito.
   ================================================================= */
.reveal,
.problems--stagger .problem-item.reveal,
.footer--reveal {
  opacity: 1 !important;
  transform: none !important;
}
