:root {
  --bg-main: #050505;
  --bg-card: #151515;
  --bg-card-soft: #1b1b1b;
  --text-primary: #ffffff;
  --text-secondary: #dddddd;
  --accent: #ff9a1f;
  --accent-strong: #ff7a00;
  --accent-green: #00ff7f;
  --plan-prata: linear-gradient(180deg, #f1f1f1, #b4b4b4);
  --plan-ouro: linear-gradient(180deg, #ffeb99, #ffb31f);
  --plan-diamante: linear-gradient(180deg, #00f5ff, #0066ff);
  --radius-xl: 26px;
  --shadow-strong: 0 25px 60px rgba(0,0,0,0.85);
  --shadow-soft: 0 18px 40px rgba(0,0,0,0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, #1b0c02 0, #050505 50%);
  color: var(--text-primary);
}

/* =========================================================
   UTILITÁRIOS / SEÇÕES
   ========================================================= */

.section {
  padding: 72px 16px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 0.98rem;
  color: var(--text-secondary);
}

.center {
  text-align: center;
  margin-top: 32px;
}

/* =========================================================
   BOTÕES
   ========================================================= */

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #ffffff;
  background: radial-gradient(circle at 30% 0%, #e99611, #ff9a1f 60%, #ff7a00 100%);
  box-shadow: 0 0 18px rgba(255,154,31,0.8);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.btn-primary .arrow {
  font-size: 1.1rem;
  transform: translateX(0);
  transition: transform 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 10px rgba(255,154,31,0.9),
    0 0 15px rgba(255,154,31,1),
    0 0 25px rgba(255,154,31,1);
  filter: drop-shadow(0 0 15px rgba(255,154,31,0.9));
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(30, 255, 0, 0.35);
  background: transparent;
  color: var(--text-primary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
  color: #ffffff;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  width: 100%;
  max-width: 1211px;
  min-height: 569px;
  margin: 30px auto 40px;
  border-radius: 5px 10px 10px 5px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: var(--shadow-strong);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,120,0,0.25), transparent 55%);
  z-index: -1;
}

/* layout em grid: texto + imagem */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: stretch;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 60px;
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Logo + ondas sonoras */
.hero-logo {
  position: relative;
  display: inline-block;
}

.hero-logo img {
  width: 420px;      /* 👈 tamanho ideal desktop */
  max-width: 100%;
  height: auto;
}

/* container das ondas */
.sound-waves {
  position: absolute;
  bottom: -10px;            /* posição vertical em relação à logo */
  left: 8px;                /* deslocamento horizontal */
  display: flex;
  gap: 4px;
  pointer-events: none;
  z-index: -1;
}


/* cada barrinha 
.sound-waves span {
  width: 6px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(to top, #ff7a00, #ffb733);
  opacity: 0.9;
  animation: wave-bar 0.8s ease-in-out infinite;
  transform-origin: bottom center;
}
*/

/* variação entre as barras 
.sound-waves span:nth-child(2) { animation-delay: 0.1s; }
.sound-waves span:nth-child(3) { animation-delay: 0.2s; }
.sound-waves span:nth-child(4) { animation-delay: 0.3s; }
.sound-waves span:nth-child(5) { animation-delay: 0.4s; }
*/

@keyframes wave-bar {
  0%   { transform: scaleY(0.4); }
  50%  { transform: scaleY(1.3); }
  100% { transform: scaleY(0.4); }
}

/* coluna da imagem */
.hero-media {
  position: relative;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

/* Curva suave na borda esquerda da foto */
.hero-media::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 60px; /* largura do fade sobre a borda esquerda da imagem */
  background: linear-gradient(
    to left,
    transparent 0%,
    #000000 100%
  );
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Painel principal do hero (área de texto) */
.hero-panel {
  margin-top: 18px;
  padding: 24px 24px 26px;
  border-radius: 22px;
  background: radial-gradient(circle at top left,
              rgba(255,255,255,0.05) 0,
              rgba(0,0,0,0.88) 45%,
              rgba(0,0,0,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 22px 40px rgba(0,0,0,0.85),
    0 0 0 1px rgba(0,0,0,0.6);
}

/* Tagline superior */
.hero-tagline {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.68);
  margin-bottom: 10px;
}

/* Título principal */
.hero-title {
  font-size: 2.4rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Subtítulo */
.hero-subtitle {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 32rem;
  margin-bottom: 16px;
}

/* Lista de benefícios */
.hero-benefits {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-benefits li {
  position: relative;
  padding-left: 16px;
}

.hero-benefits li + li {
  margin-top: 6px;
}

.hero-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* Linha inferior: badge + CTA */
.hero-bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badge-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-badge-label {
  font-size: 0.75rem;
  color: rgb(255, 255, 255);
}

/* Badge (data/local) menor */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgb(255, 145, 0);
  font-size: 0.75rem;
  color: #ffffff;
}

.hero-badge-pill {
  background: #ff9a1f;
  color: #000000;
  border-radius: 999px;
  padding: 3px 10px;
  font-weight: 600;
  font-size: 0.7rem;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.hero-trust {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}

/* =========================================================
   METODOLOGIA (3 CARDS)
   ========================================================= */

.section-method {
  background: radial-gradient(circle at top, #2b1303 0, #050505 55%);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.method-card {
  position: relative;
  background: #121212;
  border-radius: var(--radius-xl);
  padding: 24px 24px 24px 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.method-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.method-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* número no canto superior direito */
.method-number {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--accent-strong);
  opacity: 0.9;
  line-height: 1;
}

/* ============== MINI CARDS (CONTEÚDO) ============== */
.section-topics{
  padding: 70px 20px;
  background: linear-gradient(180deg, #0b0b0b 0%, #070707 100%);
}

.mini-cards-grid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-card{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgb(0, 0, 0);
  border: 1px solid rgb(0, 0, 0);
  color: rgba(255,255,255,.9);
  line-height: 1.35;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.mini-icon{
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,161,0,.12);
  border: 1px solid rgba(255,161,0,.35);
  color: #ffa31a;
  font-weight: 900;
  transform: translateY(1px);
}

.mini-card:hover{
  border-color: rgba(255,161,0,.28);
  transform: translateY(-1px);
  transition: .18s ease;
}

/* Responsivo */
@media (max-width: 980px){
  .mini-cards-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px){
  .mini-cards-grid{ grid-template-columns: 1fr; }
  .mini-card{ font-size: 14px; }
}



/* ================================================
   SOBRE O PROFESSOR — ESTILO PREMIUM
   ================================================ */
.section-about {
  background: #050505;
}

.about-shell {
  border-radius: 34px;
  padding: 14px; /* cria “margem” interna igual ao exemplo */
  background: radial-gradient(circle at 10% 10%, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0) 60%),
              rgba(0, 0, 0, 0.25);
  box-shadow:
    0 0 0 1px rgb(255, 123, 0),
    0 20px 70px rgba(0,0,0,0.75);
}

/* card principal (fundo escuro com borda elegante) */
.about-surface {
  border-radius: 28px;
  background: radial-gradient(circle at 20% 15%, rgba(255,255,255,0.05), transparent 55%),
              linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0,0,0,0.92));
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  padding: 18px;
}

/* 2 cards colados */
.about-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch; /* 🔥 importante */
  gap: 40px;
}

/* cards internos */
.about-card {
  background: rgba(10,10,10,0.25);
  min-height: 520px;
}

/* remove radius interno para ficar colado */
.about-card-image {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.about-card-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 42px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* FOTO com “moldura” e radius grande (igual exemplo) */
.about-card-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px; /* garante altura visual */
  overflow: hidden;
  border-radius: 22px;
}

.about-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* 🔥 ESSENCIAL */
  object-position: center;
  display: block;
}

/* Texto estilo exemplo */
.about-card-text h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  font-weight: 700;
  color: #ffffff;
}

.about-card-text h2 span {
  color: var(--accent);
}

.about-card-text p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.80);
  margin-bottom: 14px;
}

.about-card-text strong {
  color: #ffffff;
  font-weight: 700;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 900px) {
  .about-dual {
    grid-template-columns: 1fr;
  }

  .about-card {
    min-height: auto;
  }

  .about-card-image {
    padding: 14px;
  }

  .about-card-image img {
    max-height: 380px;
    border-radius: 34px;
  }

  .about-card-text {
    padding: 28px 22px 32px;
  }
}

/* =========================================================
   GALERIA / CARRETEL
   ========================================================= */

.section-gallery {
  background: radial-gradient(circle at top, #1c0d07 0, #050505 60%);
}

.gallery-wrapper {
  position: relative;
  margin-top: 12px;
}

.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}

.gallery-track::-webkit-scrollbar {
  height: 6px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.24);
  border-radius: 999px;
}

.gallery-item {
  min-width: min(420px, 100%);
  scroll-snap-align: center;
}

.gallery-item img {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: var(--shadow-soft);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,0.7);
  color: #ffffff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-arrow:hover {
  background: rgba(0,0,0,0.9);
  transform: translateY(-50%) scale(1.05);
}

.gallery-prev {
  left: -6px;
}

.gallery-next {
  right: -6px;
}

/* ================================
   PROVA SOCIAL — 5 MIL ALUNOS
   ================================ */

.section-proof {
  padding: 60px 16px 20px;
  background: #050505;
}

.proof-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.proof-title span {
  color: var(--accent);
}

/* Ajuste extra para afastar do "Sobre a Mônica" */
.section-about {
  margin-top: 40px;
}



/* =========================================================
   PROVA SOCIAL / DEPOIMENTOS
   ========================================================= */

.section-proof {
  background: #050505;
  padding-top: 40px;
  padding-bottom: 24px;
}

.section-proof .section-title {
  max-width: 920px;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 1.3;
}

.section-proof .section-title span {
  color: var(--accent);
}

.section-testimonials {
  background: #050505;
  padding-top: 0;
  padding-bottom: 56px;
}

.testimonials-heading {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: #111;
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--shadow-soft);
}

/* wrapper em proporção 9:16 (Shorts) */
.shorts-frame {
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* 16/9 invertido para vídeo vertical */
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.shorts-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.shorts-frame{
  padding-top: 0 !important;
  aspect-ratio: 9 / 16;
}

.shorts-frame .yt-lite{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}



/* =========================================================
   PLANOS
   ========================================================= */

.section-plans {
  background: #050505;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 26px;
}

.plan-card {
  position: relative;
  border-radius: 30px;
  padding: 24px 22px 26px;
  background: #121212;
  box-shadow: var(--shadow-soft);
}

.plan-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.plan-label {
  font-size: 0.86rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.plan-list {
  list-style: none;
  font-size: 0.89rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.plan-list li + li {
  margin-top: 6px;
}

.plan-price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.plan-subprice {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.hidden { display: none; }

.section-plans.show {
  display: block;
  animation: fadeUp .5s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* fundos específicos */
.plan-prata {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), transparent 40%),
    #141414;
  border: 1px solid rgba(255,255,255,0.1);
}

.plan-ouro {
  background:
    linear-gradient(135deg, rgba(255,170,0,0.2), transparent 45%),
    #141010;
  border: 1px solid rgba(255,187,0,0.5);
}

.plan-diamante {
  background:
    linear-gradient(135deg, rgba(0,245,255,0.22), transparent 45%),
    #0b131a;
  border: 1px solid rgba(0,245,255,0.5);
}

.plan-card .plan-btn {
  width: 100%;
  justify-content: center;
}

/* destaque plano ouro */
.destaque {
  transform: translateY(-10px);
}

.destaque .plan-price {
  color: var(--accent);
}

.plan-tag {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.4);
}


/* =========================================================
   ENDEREÇO / LOCAL
   ========================================================= */

.section-location {
  background: radial-gradient(circle at top, #1c0d07 0, #050505 60%);
  padding-top: 54px;
  padding-bottom: 54px;
}

.location-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 15%, rgba(0, 0, 0, 0.05), transparent 55%),
              linear-gradient(180deg, rgb(0, 0, 0), rgba(0,0,0,0.92));
  box-shadow:
    0 0 0 1px rgb(255, 123, 0),
    0 22px 70px rgba(0,0,0,0.75);
}

.location-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.location-content {
  padding: 34px 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.location-subtitle {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 18px;
}

.location-info p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 10px;
  line-height: 1.55;
}

.location-info strong {
  color: #fff;
}

.btn-secondary {
  color: #ff7300;
}

@media (max-width: 900px) {
  .location-card {
    grid-template-columns: 1fr;
  }
}

/* ================= FINAL CTA ================= */
.section-final-cta{
  padding: 80px 20px;
  background: radial-gradient(1200px 600px at 50% 10%, rgba(255,161,0,.16), transparent 60%),
              linear-gradient(180deg, #0b0b0b 0%, #070707 100%);
}

.final-cta-title{
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 12px;
}

.final-cta-subtitle{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

.final-cta-points{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 40px;
  max-width: 760px;
  margin: 0 auto 34px;
}

.final-cta-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.final-cta-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,.88);
  line-height: 1.45;
}

.final-cta-check{
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: rgba(255,161,0,.12);
  border: 1px solid rgba(255,161,0,.35);
  color: #ffa31a;
  font-weight: 800;
  transform: translateY(1px);
}

.final-cta-actions{
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.final-cta-btn{
  padding: 16px 22px;
  min-width: min(420px, 92vw);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(255,161,0,.18);
}

.final-cta-badges{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.final-cta-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.final-cta-dot{
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  font-weight: 800;
}

/* Responsivo */
@media (max-width: 820px){
  .final-cta-points{
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* =========================================================
   FAQ
   ========================================================= */

.section-faq {
  background: #050505;
  padding-top: 62px;
  padding-bottom: 78px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.05), transparent 55%),
              rgba(12,12,12,0.92);
  box-shadow:
    0 0 0 1px rgba(255,122,0,0.14),
    0 18px 45px rgba(0,0,0,0.65);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #fff;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
}

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,122,0,0.12);
  border: 1px solid rgba(255,122,0,0.25);
  color: var(--accent);
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.28s ease;
  will-change: height;
}



.faq-answer p {
  padding: 0 18px 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}

/* estado aberto */
.faq-item.is-open .faq-answer {
  max-height: 240px;
}

.faq-item.is-open .faq-icon {
  background: rgba(255,122,0,0.20);
  border-color: rgba(255,122,0,0.45);
}

/* ================= FOOTER ================= */
.site-footer {
  background: linear-gradient(180deg, #0b0b0b 0%, #000 100%);
  padding: 60px 20px 30px;
  color: #cfcfcf;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 14px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #b5b5b5;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #bdbdbd;
}

.footer-links li:hover,
.footer-contact li:hover {
  color: #ffa31a;
}

.footer-divider {
  max-width: 1200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 40px auto 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #8f8f8f;
}

/* ================= FOOTER RESPONSIVO ================= */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    margin: 0 auto;
  }

  .footer-logo {
    margin: 0 auto 14px;
  }
}

/* =========================================================
   MODAL
   ========================================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1000;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  width: 100%;
  max-width: 580px;
  background: #111111;
  border-radius: 24px;
  padding: 26px 26px 24px;
  position: relative;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255,255,255,0.1);
}

.modal h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,0.7);
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
}

.form-group input {
  background: #191919;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 9px 11px;
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255,154,31,0.5);
}

.form-feedback {
  font-size: 0.84rem;
  margin-top: 10px;
  min-height: 18px;
}

.form-feedback.ok {
  color: var(--accent-green);
}
.form-feedback.error {
  color: #ff4d4d;
}

/* =========================================================
   PATCH – CTA PROVA SOCIAL + EXPERIÊNCIAS (6 QUADRADOS)
   Cole este bloco no FINAL do styles.css
   ========================================================= */

/* Ajuste fino: evita "buraco" grande quando usar .center em áreas novas */
.section-proof .center,
.section-plans .center {
  margin-top: 22px; /* reduz um pouco (antes era 32px global) */
}

/* CTA – Prova Social */
.proof-cta {
  margin-top: 22px;
  text-align: center;
}

.proof-cta-sub {
  margin-top: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 0.98rem;
  color: var(--text-secondary);
}

/* =========================================================
   EXPERIÊNCIAS – QUADRADOS PERFEITOS (IGUAL AO MOCK)
   ========================================================= */

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 24px auto 0;
}

/* Quadrado EXATO */
.experience-card {
  width: 100%;
  aspect-ratio: 1 / 1;          /* QUADRADO */
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(255,122,0,0.25),
    0 18px 40px rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Imagem bem comportada dentro do quadrado */
.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;            /* preenche como print */
  object-position: center;
  display: block;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

/* Tablet */
@media (max-width: 960px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* =========================================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================================= */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, #25d366, #1ebe57);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 0 6px rgba(37, 211, 102, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.55),
    0 0 0 10px rgba(37, 211, 102, 0.35);
}

/* Mobile */
@media (max-width: 720px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float img {
    width: 26px;
    height: 26px;
  }
}

/* =========================================================
   MAPA – LOCAL DO TREINAMENTO
   ========================================================= */

.location-map {
  width: 100%;
  height: 100%;
  min-height: 320px;
  position: relative;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  display: block;
  filter: grayscale(10%) contrast(1.05) brightness(0.95);
}

/* Responsivo */
@media (max-width: 900px) {
  .location-map,
  .location-map iframe {
    min-height: 300px;
  }
}

/* LITE YOUTUBE - Card Shorts (9:16) */
.yt-lite{
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: #000 center / cover no-repeat;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
  transform: translateZ(0);
}

.yt-lite::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.75) 90%);
  pointer-events:none;
}

.yt-lite::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:68px;
  height:68px;
  border-radius:999px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  pointer-events:none;
}

.yt-lite .yt-play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:22px;
  height:22px;
  margin-left:2px;
  pointer-events:none;
  fill:#fff;
  opacity:0.95;
}

.yt-lite .yt-label{
  position:absolute;
  left:14px;
  right:14px;
  bottom:12px;
  z-index:2;
  color:#fff;
  font-weight:700;
  font-size:14px;
  line-height:1.2;
  text-shadow: 0 10px 22px rgba(0,0,0,0.55);
}

/* Quando o vídeo estiver ativo */
.yt-lite.is-playing::before,
.yt-lite.is-playing::after,
.yt-lite.is-playing .yt-play,
.yt-lite.is-playing .yt-label {
  display: none !important;
}

/* ============ PLAY (overlay) ============ */
.yt-lite{
  position: relative;
}

/* círculo do play */
.yt-lite::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:74px;
  height:74px;
  border-radius:999px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  z-index: 3;
  pointer-events:none;
}

/* triângulo do play */
.yt-lite::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:0;
  height:0;
  border-left:18px solid #fff;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
  margin-left:3px;
  z-index: 4;
  opacity: 0.95;
  pointer-events:none;
}

/* hover suave */
.yt-lite:hover::after{
  transform: translate(-50%,-50%) scale(1.04);
}

/* pulse opcional (fica muito bom) */
@media (prefers-reduced-motion: no-preference){
  .yt-lite::after{
    animation: ytPulse 1.8s ease-in-out infinite;
  }
  @keyframes ytPulse{
    0%,100%{ box-shadow: 0 0 0 0 rgba(255,255,255,0.18); }
    50%{ box-shadow: 0 0 0 14px rgba(255,255,255,0.00); }
  }
}

/* quando estiver tocando, some tudo do overlay */
.yt-lite.is-playing::before,
.yt-lite.is-playing::after{
  display:none !important;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 960px) {
  .hero {
    margin: 16px auto 30px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
    height: 320px;
  }

  .hero-inner {
    padding: 24px 20px 30px;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .method-grid,
  .plans-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}



@media (max-width: 720px) {
  .hero {
    border-radius: 18px;
  }

  .hero-media {
    height: 340px;
  }

  .hero-img-desktop {
    display: none;
  }

  .hero-img-mobile {
    display: block;
  }

  .hero-panel {
    padding: 18px 16px 20px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .section {
    padding: 52px 14px;
  }

  .method-grid,
  .plans-grid,
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .method-number {
    font-size: 2.6rem;
    top: 8px;
    right: 14px;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-prev {
    left: 2px;
  }

  .gallery-next {
    right: 2px;
  }

  .hero-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

