:root {
  --bg: #0b0b0d;
  --bg-2: #121317;
  --card: #16171d;
  --text: #e6e6e9;
  --muted: #b7b7bf;
  --accent: #e0b364;
  --accent-2: #e0b364;
  --accent-3: #7a5b2d;
  --success: #22c55e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% 0%, #0e0f14 0%, var(--bg) 40%, #090a0c 100%);
}

/* Loading overlay */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: #0a0804;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity .3s ease, visibility .3s ease;
}
.loading-overlay.hidden { opacity: 0; visibility: hidden; }
.loading-logo { width: 140px; height: auto; }
.loading-content { display: flex; flex-direction: column; align-items: center; gap: 14px; }

/* Loading: mensagens e barra */
.loading-messages { position: relative; width: min(560px, 92vw); height: 40px; overflow: hidden; }
.message-slide { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 0 12px; text-align: center; color: var(--muted); font-weight: 600; opacity: 0; transform: translateY(8px); transition: opacity .4s ease, transform .4s ease; }
.message-slide.active { opacity: 1; transform: translateY(0); }
.progress { margin-top: 2px; height: 8px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); width: min(560px, 92vw); }
.progress-bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent) 0%, var(--accent-3) 100%); box-shadow: 0 0 16px rgba(224,179,100,0.35); position: relative; }
.progress-bar::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(135deg, rgba(255,255,255,.22) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.22) 50%, rgba(255,255,255,.22) 75%, transparent 75%, transparent); background-size: 24px 24px; animation: progressStripes 1s linear infinite; opacity: 0.25; }
@keyframes progressStripes { from { background-position: 0 0; } to { background-position: 24px 0; } }

/* Ocultar conteúdo enquanto body está em loading */
body.loading .site-header,
body.loading main,
body.loading .site-footer,
body.loading .bottom-nav { visibility: hidden; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: -0.02em;
}

h1.title {
  width: 600px;
  font-size: 32.5px;
  line-height: 1.06;
}

h2 { font-size: clamp(1.8rem, 2.6vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }

/* Garantir que âncoras em títulos fiquem visíveis abaixo do header sticky */
.section h2 { scroll-margin-top: 84px; }

p.lead { color: var(--muted); font-size: 1.1rem; width: 700px; }
@media (max-width: 800px) {
  p.lead { width: 100%; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(11,11,13,0.9) 0%, rgba(11,11,13,0.6) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { height: 32px; width: auto; display: inline-block; }
.brand .logo { font-weight: 900; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; font-size: 1.1rem; letter-spacing: 0.04em; }

@media (max-width: 700px) {
  .brand { justify-content: center; width: 100%; }
}

.menu { display: none; gap: 20px; }
.menu a { color: var(--muted); text-decoration: none; font-weight: 500; }
.menu a:hover { color: var(--text); }

/* Menu superior visível apenas acima de 1100px */
@media (min-width: 1100px) { .menu { display: flex; } }

.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; padding: 12px 16px; font-weight: 700; text-decoration: none; transition: all 0.2s ease; }
.btn-lg { padding: 16px 20px; font-size: 1rem; }
.btn-accent { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 100%); color: #fff; box-shadow: 0 10px 30px rgba(224, 179, 100, 0.2); width: 300px; }
.btn-accent:hover { transform: translateY(-1px); box-shadow: 0 14px 36px rgba(224, 179, 100, 0.28); }
.btn-whatsapp { background: #1fb157; color: #fff; box-shadow: 0 10px 30px rgba(31, 177, 87, 0.25); border: 1px solid rgba(255,255,255,0.06); }
.btn-whatsapp:hover { transform: translateY(-1px); box-shadow: 0 14px 36px rgba(31, 177, 87, 0.35); }
.btn-outline { border: 2px solid rgba(255,255,255,0.12); color: var(--text); }
.btn-outline:hover { border-color: rgba(255,255,255,0.26); background: rgba(255,255,255,0.04); }
.btn-ghost { background: transparent; border: 1px dashed rgba(255,255,255,0.18); color: var(--muted); }
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.28); }

.hero { position: relative; padding: 50px 12.5px 25px 12.5px; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0;
  background-image: url('materiais/banner/banner-principal.png');
  background-size: cover; background-position: center;
  filter: brightness(0.85) saturate(1.15);
}
.hero-media::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 35%;
  background: linear-gradient(0deg,
    rgba(9, 10, 12, 1) 0%,
    rgba(9, 10, 12, 0.65) 65%,
    rgba(9, 10, 12, 0.0) 100%
  );
}
.hero::after {
  content: ""; position: absolute; inset: 0; 
  background: radial-gradient(800px 300px at 15% 10%, rgba(199, 160, 89, 0.25) 0%, rgba(224, 179, 100, 0.18) 35%, rgba(11,11,13,0.2) 60%, rgba(11,11,13,0.6) 100%);
}
.hero-content { position: relative; z-index: 1; }
.subtitle { margin-top: 14px; color: var(--muted); max-width: 500px; font-size: 1.1rem; }
.cta-group { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.hero-note { margin-top: 10px; color: var(--accent-2); font-weight: 700; letter-spacing: 0.02em; }
/* Desktop: largura controlada para hero-note */
.hero-note { width: 400px; }

.section { padding: 72px 0; }
/* Padding específico para a seção #mentor */
#mentor { padding: 50px 0 50px 0; }
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 800px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: linear-gradient(180deg, var(--card), #131419);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 20px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}
.card h3 { margin: 0 0 8px 0; }
.card p { margin: 0; color: var(--muted); }

.list { display: grid; gap: 12px; padding: 0; margin: 22px 0 0 0; list-style: none; }
.list-problem li { position: relative; padding-left: 24px; }
.list-problem li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

.testimonial img { width: 100%; height: 160px; object-fit: cover; border-radius: 10px; }
.testimonial .t-body { margin-top: 12px; }
.testimonial .t-name { display: inline-block; margin-top: 8px; color: var(--muted); font-size: 0.95rem; }

.proof-media { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.video { display: inline-flex; align-items: center; justify-content: center; padding: 14px 18px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); text-decoration: none; color: var(--text); }
.video:hover { border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.04); }

/* Carrossel da seção #dor */
.section#dor, #dor {
  padding: 0px 0px 50px 0px;
  background: transparent;
}
@media (min-width: 701px) {
  .section#dor, #dor { padding: 0px 0px 50px 0px; background: transparent; }
}
.section#transformacao, #transformacao {
  padding: 0 0 50px 0;
}
.section#provas, #provas {
  padding: 0 0 50px 0;
}
.section#alunos, #alunos {
  padding: 0 0 50px 0;
}
.section#duvidas, #duvidas {
  padding: 0 0 50px 0;
}
.dor-carousel { position: relative; margin-top: 0px; }
@media (min-width: 701px) {
  #dor .dor-carousel { margin-top: -150px !important; }
}
.dor-viewport { position: relative; overflow: hidden; }
.dor-viewport, .dor-track { cursor: default; }
.dor-viewport:active, .dor-track:active { cursor: default; }

/* Remover cursor de arraste na seção #transformacao */
#transformacao .dor-viewport,
#transformacao .dor-track {
  cursor: default;
}
#transformacao .dor-viewport:active,
#transformacao .dor-track:active {
  cursor: default;
}
/* Remover cursor de arraste na seção #provas */
#provas .dor-viewport,
#provas .dor-track {
  cursor: default;
}
#provas .dor-viewport:active,
#provas .dor-track:active {
  cursor: default;
}
/* Remover cursor de arraste na seção #alunos */
#alunos .dor-viewport,
#alunos .dor-track {
  cursor: default;
}
#alunos .dor-viewport:active,
#alunos .dor-track:active {
  cursor: default;
}
.dor-track, .dor-slide { -webkit-user-select: none; user-select: none; }
.dor-track { position: relative; display: flex; gap: 12px; transition: transform .4s ease; will-change: transform; }
.dor-slide { flex: 0 0 calc((100% - 24px) / 3); background: linear-gradient(180deg, var(--card), #131419); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 20px; display: flex; align-items: center; gap: 12px; }
.dor-topic { margin: 0; font-size: 1.1rem; color: var(--text); }
/* Vídeo dentro de slides do carrossel */
#transformacao .dor-slide video {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* Imagens dentro de slides do carrossel (#provas) */
#provas .dor-slide {
  padding: 10px; /* mais compacto para imagens */
  align-items: center;
  justify-content: center;
  cursor: default;
}
#provas .dor-slide img {
  width: 100%;
  display: block;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  max-width: 500px;
  max-height: 500px;
  object-fit: cover;
  margin: 0 auto;
}

/* Moldura de imagem com degradê inferior (seção #provas) */
#provas .image-frame {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
/* Degradê inferior igual ao dos players (#transformacao) */
#provas .image-frame::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(0deg,
    rgba(9, 10, 12, 1) 0%,
    rgba(9, 10, 12, 0.85) 65%,
    rgba(9, 10, 12, 0.0) 100%
  );
}

/* Rótulo sobre a imagem (seção #provas) */
/* Rótulo sobre imagem igual ao dos players */
#provas .image-label {
  position: absolute;
  bottom: 27px;
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 15px;
  pointer-events: none;
  z-index: 2;
}

/* Desktop: rótulo um pouco maior acima de 700px */
@media (min-width: 701px) {
  #provas .image-label {
    font-size: 1.05rem;
    padding: 11px 18px;
  }
}

/* Mobile (<=700px): rótulo mais baixo e degradê mais alto, igual ao player */
@media (max-width: 700px) {
  #provas .image-label {
    bottom: 15px;
    font-size: 1.35rem;
    padding: 10px 16px;
  }
  #provas .image-frame::after {
    height: 50%;
    background: linear-gradient(0deg,
      rgba(9, 10, 12, 1) 0%,
      rgba(9, 10, 12, 0.90) 60%,
      rgba(9, 10, 12, 0.0) 100%
    );
  }
}

/* Overlay de zoom com ícone de lupa (tamanho igual ao play) */
#provas .image-zoom-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: zoom-in;
  z-index: 2;
}
#provas .image-zoom-overlay:before {
  content: "";
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  position: absolute;
}
#provas .image-zoom-overlay:hover:before { background: rgba(0, 0, 0, 0.7); }
#provas .image-zoom-overlay .icon {
  position: relative;
  width: 56px;
  height: 56px;
}

/* Imagens dentro de slides do carrossel (#alunos) */
#alunos .dor-slide {
  padding: 10px; /* mais compacto para imagens */
  align-items: center;
  justify-content: center;
  cursor: default; /* mostrar mãozinha como link ao passar o mouse */
}
#alunos .dor-slide img {
  width: 100%;
  display: block;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  max-width: 500px;
  max-height: 500px;
  object-fit: cover;
  margin: 0 auto;
}

/* Moldura de imagem com degradê inferior (seção #alunos) */
#alunos .image-frame {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
/* Degradê inferior igual ao dos players (#transformacao) */
#alunos .image-frame::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(0deg,
    rgba(9, 10, 12, 1) 0%,
    rgba(9, 10, 12, 0.85) 65%,
    rgba(9, 10, 12, 0.0) 100%
  );
}

/* Rótulo sobre a imagem (seção #alunos) */
#alunos .image-label {
  position: absolute;
  bottom: 27px;
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 15px;
  pointer-events: none;
  z-index: 2;
}

/* Desktop: rótulo um pouco maior acima de 700px */
@media (min-width: 701px) {
  #alunos .image-label {
    font-size: 1.05rem;
    padding: 11px 18px;
  }
}

/* Mobile (<=700px): rótulo mais baixo e degradê mais alto, igual ao player */
@media (max-width: 700px) {
  #alunos .image-label {
    bottom: 15px;
    font-size: 1.35rem;
    padding: 10px 16px;
  }
  #alunos .image-frame::after {
    height: 50%;
    background: linear-gradient(0deg,
      rgba(9, 10, 12, 1) 0%,
      rgba(9, 10, 12, 0.90) 60%,
      rgba(9, 10, 12, 0.0) 100%
    );
  }
}

/* Overlay de zoom com ícone de lupa (seção #alunos) */
#alunos .image-zoom-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: zoom-in;
  z-index: 2;
}
#alunos .image-zoom-overlay:before {
  content: "";
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  position: absolute;
}
#alunos .image-zoom-overlay:hover:before { background: rgba(0, 0, 0, 0.7); }
#alunos .image-zoom-overlay .icon {
  position: relative;
  width: 56px;
  height: 56px;
}

/* Padronização de proporção 4:5 (1080x1350) para vídeos */
#transformacao .video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

/* Degradê inferior sobre os players (Transformação) */
#transformacao .video-frame::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(0deg,
    rgba(9, 10, 12, 1) 0%,
    rgba(9, 10, 12, 0.85) 65%,
    rgba(9, 10, 12, 0.0) 100%
  );
}

#transformacao .video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
#transformacao .video-play-overlay { z-index: 2; }

#transformacao .video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile (<=700px): mostrar 1 slide por viewport na seção #transformacao */
@media (max-width: 700px) {
  #transformacao .dor-slide {
    flex: 0 0 100%;
  }
}
/* Mobile (<=700px): mostrar 1 slide por viewport na seção #provas */
@media (max-width: 700px) {
  #provas .dor-slide {
    flex: 0 0 100%;
  }
}
/* Mobile (<=700px): mostrar 1 slide por viewport na seção #alunos */
@media (max-width: 700px) {
  #alunos .dor-slide {
    flex: 0 0 100%;
  }
}
/* Mobile (<=700px): mostrar 1 slide por viewport na seção #dor */
@media (max-width: 700px) {
  #dor .dor-slide {
    flex: 0 0 100%;
    padding: 25px 75px;
  }
}
/* Ícone do slide (#dor) */
.dor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin: 0;
  flex-shrink: 0;
}
.dor-icon svg { width: 32px; height: 32px; }
.dor-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; padding: 0; border-radius: 50%;
  color: #fff;
  backdrop-filter: blur(6px);
  background: #e0b364;
  border: 1px solid #e0b364;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  cursor: pointer; z-index: 2; 
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
  will-change: background, border-color, box-shadow;
}
.dor-prev { left: -18px; }
.dor-next { right: -18px; }

.dor-arrow:hover { background: #e0b364; color: #fff; border-color: #e0b364; box-shadow: 0 8px 22px rgba(0,0,0,0.38); }
.dor-arrow .icon { pointer-events: none; }

/* Layout dos slides: abaixo de 1000px ícone acima do texto */
@media (max-width: 1000px) {
  #dor .dor-slide { flex-direction: column; align-items: flex-start; }
  #dor .dor-icon { margin-bottom: 8px; }
}

@media (max-width: 700px) {
  .dor-arrow { top: 50%; bottom: auto; transform: translateY(-50%); }
  .dor-prev { left: 0; }
  .dor-next { right: 0; }
}

/* Mobile (<=700px): centralizar conteúdo dos slides na seção #dor */
@media (max-width: 700px) {
  #dor .dor-slide { align-items: center; text-align: center; }
  #dor .dor-topic { text-align: center; }
}

/* Mobile (<=700px): aumentar o ícone dos slides na seção #dor */
@media (max-width: 700px) {
  #dor .dor-icon { width: 56px; height: 56px; }
  #dor .dor-icon svg { width: 44px; height: 44px; }
}

.mentor { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
.mentor-media { height: 400px; border-radius: 16px; background-color: #090a0c; position: relative; overflow: hidden; }
.mentor-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; filter: saturate(1.15) brightness(0.85); z-index: 0; }
.mentor-media::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 35%;
  pointer-events: none;
  background: linear-gradient(0deg,
    rgba(9, 10, 12, 1) 0%,
    rgba(9, 10, 12, 0.85) 65%,
    rgba(9, 10, 12, 0.0) 100%
  );
}
/* Botão Instagram sobre a mídia do mentor */
#mentor .mentor-media .instagram-link {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(9, 10, 12, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(2px);
}
#mentor .mentor-media .instagram-link .icon { width: 18px; height: 18px; }
#mentor .mentor-media .instagram-link:hover {
  background: rgba(172, 134, 72, 0.25);
  border-color: #ac8648;
}
@media (min-width: 900px) { .mentor { grid-template-columns: 1fr 1.1fr; align-items: center; } .mentor-media { height: 400px; background-color: #090a0c; } }
.mentor-copy h2 { margin: 0; }
/* Base genérica (caso usada fora da mídia) */
.instagram-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 12px; text-decoration: none; }
.instagram-link .icon { width: 18px; height: 18px; }
/* Bio Mentor: Ver mais/menos */
.mentor-copy .bio-text { position: relative; margin-top: 10px; }
.mentor-copy .bio-text.collapsed { max-height: 9.5em; overflow: hidden; }
.mentor-copy .read-more-toggle { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 17.5px; background: transparent; border: 0; cursor: pointer; color: #ac8648; font-weight: 700; text-decoration: none; border-radius: 8px; }
.mentor-copy .read-more-toggle:hover { color: var(--text); }

/* Video Pop-up */
.video-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.video-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.video-popup-content {
  background: #16171d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: 100%;
  max-width: 800px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.video-popup-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #e0b364;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10;
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-popup-close:hover {
  transform: scale(1.1);
  background: #fff;
  color: #e0b364;
}

.video-popup-video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #000;
}

.video-popup-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-popup-footer {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.video-popup-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
  position: relative;
  padding-left: 0;
}

.video-popup-checkbox-label:hover {
  color: var(--text);
}

/* Hide default checkbox */
.video-popup-checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Custom checkbox */
.checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.video-popup-checkbox-label:hover input ~ .checkmark {
  border-color: var(--accent);
  background-color: rgba(224, 179, 100, 0.1);
}

.video-popup-checkbox-label input:checked ~ .checkmark {
  background-color: var(--accent);
  border-color: var(--accent);
}

/* Checkmark icon */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.video-popup-checkbox-label input:checked ~ .checkmark:after {
  display: block;
}

.video-popup-checkbox-label .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.label-text {
  font-weight: 500;
}

@media (max-width: 600px) {
  .video-popup-close {
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}


.faq details { background: linear-gradient(180deg, var(--card), #131419); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 14px 16px; }
.faq details + details { margin-top: 10px; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); margin: 10px 0 0; }
/* Cor dos links dentro das sanfonas da seção Dúvidas */
#duvidas .faq a { color: #ac8648; }

.inscricao { background: linear-gradient(180deg, rgba(199, 160, 89, 0.06), rgba(11,11,13,0.8)), var(--bg-2); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: none; }

/* Contador persistente */
.countdown-timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 10px;
  background: #c62828; /* vermelho urgente */
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  box-shadow: 0 10px 28px rgba(198, 40, 40, 0.35);
  font-weight: 600;
  min-width: 160px;
}
.countdown-timer.expired { color: #e6e6e9; opacity: 0.85; }

/* Mobile: ocupar toda a largura abaixo de 480px */
@media (max-width: 480px) {
  .countdown-timer { width: 100%; }
}

/* Mobile: ocupar toda a largura abaixo de 700px */
@media (max-width: 700px) {
  .countdown-timer { width: 100%; }
}

.site-footer { padding: 36px 0; border-top: none; background: #1b1a1a; }
.footer-content { display: grid; gap: 12px; align-items: center; justify-items: center; }
.legal { display: inline-flex; gap: 8px; color: var(--muted); }
.legal a { color: var(--muted); text-decoration: none; }
.legal a:hover { color: var(--text); }
.copy { color: #8e8e96; font-size: 0.92rem; }

/* Mobile (<=560px): centralizar texto do copyright */
@media (max-width: 560px) {
  .copy { text-align: center; }
}

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Menu inferior fixo (mobile/app style) */
.bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: none;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(11,11,13,0.75) 0%, rgba(11,11,13,0.92) 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.bottom-nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  height: 64px;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
}
.bottom-nav a {
  flex: 0 0 auto;
  text-align: center;
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  padding: 10px 6px;
  border-radius: 10px;
  scroll-snap-align: start;
}
.bottom-nav a:hover { color: var(--text); background: rgba(255,255,255,0.04); }

/* Exibir o menu inferior e reservar espaço no layout até 1100px */
@media (max-width: 1100px) {
  .bottom-nav { display: block; padding-bottom: env(safe-area-inset-bottom, 0px); }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 480px) {
  .btn-lg { width: 100%; }
}

/* Até 500px: itens do bottom-nav alinhados à esquerda (fluxo natural) */
@media (max-width: 500px) {
  .bottom-nav .container { justify-content: flex-start; margin-left: 10px; }
}

/* Mobile header: CTA abaixo da marca até 700px */
@media (max-width: 700px) {
  .nav { 
    height: auto; 
    padding: 25px 25px; 
    flex-direction: column; 
    align-items: center; 
    gap: 10px; 
  }
  .nav-cta { width: 100%; }
  .nav-cta .btn { width: 100%; }
  /* Mobile: botões accent ocupam toda a largura */
  .btn-accent { width: 100%; }
  /* Mobile: CTA principal ocupa toda a largura */
  .cta-group { width: 100%; }
  .cta-group .btn { width: 100%; }
  /* Hero: personagem à direita com deslocamento de 250px para direita (≤700px) */
  .hero-media { background-position: right -250px center; filter: brightness(0.95) saturate(1.1); }
  /* Mobile: degradê inferior um pouco mais alto para leitura */
  .hero-media::after { height: 45%; background: linear-gradient(0deg,
    rgba(9, 10, 12, 1) 0%, rgba(9, 10, 12, 0.60) 60%, rgba(9, 10, 12, 0.0) 100%) }
  /* Mobile: escurecer toda a área da Hero */
  .hero::after { background: linear-gradient(90deg, rgba(11,11,13,0.35) 0%, rgba(11,11,13,0.35) 100%); }
  /* Mobile: degradê inferior mais alto na imagem do Mentor */
  .mentor-media::after { height: 45%; background: linear-gradient(0deg,
    rgba(9, 10, 12, 1) 0%, rgba(9, 10, 12, 0.90) 60%, rgba(9, 10, 12, 0.0) 100%) }
  /* Mobile: título ocupa toda a largura e fonte menor */
  h1.title { width: 100%; font-size: 22.5px; line-height: 1.1; }
  /* Mobile: padding da seção Hero */
  .hero { padding: 25px 12.5px 25px 12.5px; }
  /* Mobile: largura total para hero-note */
  .hero-note { width: 100%; }
}

/* Desktop (acima de 700px): imagem mais clara e overlay mais sutil */
@media (min-width: 701px) {
  .hero-media { filter: brightness(0.92) saturate(1.1); }
  /* Desktop: escurecer mais a esquerda e clarear à direita para destacar personagem */
  .hero::after { background: linear-gradient(90deg, rgba(11,11,13,0.35) 0%, rgba(11,11,13,0.22) 40%, rgba(11,11,13,0.08) 70%, rgba(11,11,13,0.00) 100%); }
}

/* Ajuste de espaçamento da Hero por largura */
@media (min-width: 700px) {
  .hero { padding: 50px 12.5px 200px 12.5px; }
}
/* Player overlay e modal (seção #transformacao) */
#transformacao .video-frame video { pointer-events: none; }

#transformacao .video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}
#transformacao .video-play-overlay:before {
  content: "";
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  position: absolute;
}
#transformacao .video-play-overlay:after {
  content: "";
  position: relative;
  border-left: 39px solid #fff;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  margin-left: 9px;
}
#transformacao .video-play-overlay:hover:before { background: rgba(0, 0, 0, 0.7); }

/* Rótulo no rodapé da thumbnail */
#transformacao .video-play-overlay .video-label {
  position: absolute;
  bottom: 27px; /* subido um pouco para cima */
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 15px;
  pointer-events: none; /* não interfere no clique do botão */
}

/* Desktop: aumentar tamanho do rótulo acima de 700px */
@media (min-width: 701px) {
  #transformacao .video-play-overlay .video-label {
    font-size: 1.05rem;
    padding: 11px 18px;
  }
}

/* Mobile (<=700px): rótulo mais baixo e um pouco mais compacto */
@media (max-width: 700px) {
  #transformacao .video-play-overlay .video-label {
    bottom: 15px;
    font-size: 1.35rem;
    padding: 10px 16px;
  }
  /* Mobile: degradê mais alto para melhor leitura no rodapé */
  #transformacao .video-frame::after {
    height: 50%;
    background: linear-gradient(0deg,
      rgba(9, 10, 12, 1) 0%,
      rgba(9, 10, 12, 0.90) 60%,
      rgba(9, 10, 12, 0.0) 100%
    );
  }
}

#videoModal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
#videoModal.open { display: flex; }

#videoModal .modal-content {
  position: relative;
  width: min(90vw, 1080px);
  max-height: min(90vh, 1350px);
  aspect-ratio: 4 / 5; /* 1080x1350 */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}
#videoModal .modal-content video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
  position: relative;
  z-index: 1;
}
/* Suporte ao player do YouTube dentro do modal */
#videoModal .modal-content iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #000;
  position: relative;
  z-index: 1;
}
#videoModal .modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #e0b364;
  color: #fff;
  font-size: 22px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  z-index: 2;
}
#videoModal .modal-close:hover { background: #e0b364; color: #fff; }

/* Evitar scroll do fundo enquanto modal estiver aberto */
body.modal-open { overflow: hidden; }

/* Modal de imagem (seção #provas) */
#imageModal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
#imageModal.open { display: flex; }

#imageModal .modal-content {
  position: relative;
  width: min(90vw, 800px);
  max-height: 90vh;
  aspect-ratio: 1 / 1; /* quadrado para feedbacks */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}
#imageModal .modal-content img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}
#imageModal .image-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: none;
  cursor: zoom-in;
}
#imageModal .image-viewport img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  will-change: transform;
  -webkit-user-select: none; user-select: none;
}
#imageModal .image-toolbar {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 10px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
#imageModal .zoom-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e0b364;
  background: #e0b364;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#imageModal .zoom-btn:hover { background: #e0b364; color: #fff; }
#imageModal .modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #e0b364;
  color: #fff;
  font-size: 20px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  z-index: 2;
}
#imageModal .modal-close:hover { background: #e0b364; color: #fff; }

/* Navegação (anterior/próximo) dentro do modal de imagem */
#imageModal .image-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e0b364;
  background: #e0b364;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
#imageModal .image-nav.prev { left: 8px; }
#imageModal .image-nav.next { right: 8px; }
#imageModal .image-nav:hover { background: #e0b364; color: #fff; }

/* Logos dentro de slides do carrossel (#clientes) */
#clientes { padding: 0 0 50px 0; }
#clientes .dor-slide {
  padding: 10px; /* compacto para logos */
  align-items: center;
  justify-content: center;
}
#clientes .dor-slide img {
  width: 100%;
  display: block;
  border-radius: 8px;
  max-width: 340px;
  max-height: 120px;
  object-fit: contain; /* preservar proporção dos logos */
  margin: 0 auto;
}
#clientes .image-frame {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

/* Mobile (<=700px): mostrar 1 slide por viewport na seção #clientes */
@media (max-width: 700px) {
  #clientes .dor-slide {
    flex: 0 0 100%;
  }
}

/* Fundo gradiente para seção de inscrição (#inscricao) */
#inscricao {
  background: linear-gradient(to bottom, #090a0c 0%, #1b1a1a 100%);
  border-top: none;
  padding: 0 0 50px 0;
}