/* =========================================
   1. VARIÁVEIS & CONFIGURAÇÕES GERAIS
   ========================================= */
:root {
  --primary-dark: #051021;
  --primary-blue: #0a192f;
  --gradient-blue: linear-gradient(135deg, #0a192f 0%, #112d55 100%);
  --gradient-gold: linear-gradient(
    45deg,
    #b59325 0%,
    #d4af37 50%,
    #f9df74 100%
  );
  --bg-light: #f8f9fa;
  --text-dark: #222222;
  --text-grey: #555555;
  --white: #ffffff;
  --glass-bg: rgba(5, 16, 33, 0.85);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  padding: 0 !important;
  background-color: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
.btn-cta {
  font-family: "Montserrat", sans-serif;
}

/* Barra de rolagem */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gradient-gold);
  border-radius: 5px;
}

/* =========================================
   2. CLASSES UTILITÁRIAS
   ========================================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.small-container {
  max-width: 800px;
}
.text-gold {
  color: #d4af37;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.section-padding {
  padding: 100px 0;
}
.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: var(--primary-blue);
  margin-bottom: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  position: relative;
}
.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--gradient-gold);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* =========================================
   3. HEADER & MENU
   ========================================= */
header {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-img {
  height: 55px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  transition: 0.3s;
}
.navbar {
  display: flex;
  gap: 30px;
}
.navbar a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}
.navbar a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
}
.navbar a:hover::after {
  width: 100%;
}
.navbar a:hover {
  color: #d4af37;
}
.menu-toggle {
  display: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-header {
  margin-left: 20px;
}

/* =========================================
   4. HERO SECTION (DESKTOP)
   ========================================= */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(5, 16, 33, 0.9), rgba(5, 16, 33, 0.8)),
    url("assets/img/img-metodologia-4.jpg");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 30px;
  width: 100%;
}

/* Coluna Esquerda */
.hero-col-left {
  text-align: left;
  z-index: 2;
}
.hero-col-left h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.text-highlight {
  color: #d4af37;
  font-weight: 800;
}
.hero-col-left p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Coluna Centro (VÍDEO) */
.hero-col-center {
  display: flex;
  justify-content: center;
  z-index: 3;
}

/* Coluna Direita */
.hero-col-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  z-index: 2;
}
.countdown-wrapper {
  margin: 0;
  width: 100%;
  text-align: center;
}
.countdown-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 10px;
  font-weight: 700;
}
#countdown {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.time-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(5px);
  padding: 8px 10px;
  min-width: 55px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.time-box span {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.time-box small {
  color: #ccc;
  font-size: 0.7rem;
}
.separator {
  font-size: 1.5rem;
  color: #d4af37;
  margin-top: -5px;
}

/* Botões do Hero */
.mute-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100px;
  height: 100px;
  background: rgba(5, 16, 33, 0.7);
  border: 2px solid #d4af37;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  animation: pulse-mute 2s infinite;
  color: #d4af37;
}
.mute-btn i {
  font-size: 30px;
  margin-bottom: 5px;
}
.mute-btn span {
  font-size: 0.7rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Botão de Pause (Canto) */
#heroControlBtn.corner-play-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 100;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
}
#heroControlBtn.corner-play-btn:hover {
  background: #d4af37;
  color: #000;
  border-color: #d4af37;
}

.pulse-btn {
  animation: pulse-shadow 2s infinite;
  text-align: center;
  width: 100%;
  max-width: 280px;
}
@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* =========================================
   5. BOTÕES (CTA)
   ========================================= */
.btn-cta {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-gold);
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn-cta:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.7);
}
.btn-large {
  padding: 20px 50px;
  font-size: 1.2rem;
}

/* =========================================
   6. CARROSSEL INFINITO (CORREÇÃO DESKTOP)
   ========================================= */
.marquee-section {
  background: var(--white);
  padding: 10px 0;
  overflow: hidden;

  /* Posição no Desktop (Sobe um pouco para ficar bonito) */
  margin-top: -80px;

  width: 100%;
  position: relative;
  pointer-events: none; /* Impede travar com o mouse */
  user-select: none;
  z-index: 5; /* Garante que fique na camada certa */
}

.marquee-track {
  display: flex;
  /* O SEGREDO: Garante que a largura se ajuste ao conteúdo duplicado */
  width: max-content;
  gap: 0;
  /* Acelerei um pouco (20s) para ficar fluido */
  animation: scroll 25s linear infinite;
}

.logo-slide {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* Impede que os logos sejam espremidos */
}

.logo-slide img {
  height: 60px;
  margin: 0 40px; /* Espaço entre logos */
  filter: grayscale(100%);
  opacity: 0.5;
  transition: 0.3s;
  display: block;
}

/* A MÁGICA DO INFINITO */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  /* Move exatamente metade do caminho (pois temos 2 grupos de logos iguais) */
  100% {
    transform: translateX(-50%);
  }
}

/* =========================================
   7. ZIG ZAG E DEPOIMENTOS
   ========================================= */
.zigzag-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
  gap: 60px;
}
.zigzag-item.reverse {
  flex-direction: row-reverse;
}
.zigzag-img {
  flex: 1;
  position: relative;
}
.zigzag-img img {
  width: 100%;
  /* 1. Definimos uma altura fixa para TODAS as imagens (padrão profissional) */
  height: 500px;

  /* 2. O 'cover' faz a mágica: ele corta o excesso sem esticar a foto */
  object-fit: cover;

  /* 3. Garante que o corte comece de cima (para não cortar a cabeça do Wladimir) */
  object-position: top center;

  border-radius: 15px;
  box-shadow: var(--shadow-hover);
  transition: transform 0.5s ease;
}
.zigzag-item:hover .zigzag-img img {
  transform: scale(1.02);
}
.zigzag-img::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid #d4af37;
  border-radius: 15px;
  z-index: -1;
  transition: all 0.5s ease;
}
.zigzag-item.reverse .zigzag-img::before {
  left: auto;
  right: -15px;
}
.zigzag-item:hover .zigzag-img::before {
  top: 15px;
  left: 15px;
}
.zigzag-item.reverse:hover .zigzag-img::before {
  right: 15px;
}
.zigzag-text {
  flex: 1;
}
.zigzag-text h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 4px solid #d4af37;
}
.zigzag-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-grey);
}
.center-btn {
  text-align: center;
  margin-top: 40px;
}

/* Depoimentos */
.bg-grey {
  background-color: var(--bg-light);
  position: relative;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.video-card {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: 0.4s;
}
.video-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 15px;
  overflow: hidden;
  background-color: #000;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
  opacity: 0.8;
  transition: 0.3s;
}
.video-wrapper:hover video {
  opacity: 1;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  z-index: 20;
  transition: all 0.3s ease;
}
.play-button-overlay i {
  color: var(--primary-dark);
  font-size: 24px;
  margin-left: 5px;
}
.play-button-overlay::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #d4af37;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
  animation: pulse-gold 2s infinite;
}
.play-button-overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}
.aluno-name {
  margin-top: 20px;
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1.1rem;
}

/* =========================================
   8. FAQ
   ========================================= */
details {
  background: var(--white);
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid transparent;
  overflow: hidden;
}
details[open] {
  border-left: 5px solid #d4af37;
  box-shadow: var(--shadow-hover);
}
summary {
  padding: 25px;
  cursor: pointer;
  font-weight: 700;
  color: var(--primary-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
summary::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #d4af37;
  transition: 0.3s;
}
details[open] summary::after {
  transform: rotate(180deg);
}
details p {
  padding: 0 25px 25px;
  color: var(--text-grey);
  line-height: 1.7;
  border-top: 1px solid #f0f0f0;
  margin-top: 0;
  padding-top: 20px;
}

/* =========================================
   9. ESTATÍSTICAS E FOOTER
   ========================================= */
.stats-section {
  background-color: var(--primary-dark);
  padding: 60px 0;
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  flex: 1;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 5px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Montserrat", sans-serif;
}
.stat-item p {
  color: var(--white);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}
.stat-separator {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #d4af37, transparent);
  opacity: 0.5;
}

footer {
  background: var(--gradient-blue);
  color: var(--white);
  padding: 60px 0 30px;
  margin-top: auto;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 0 !important;
}
.footer-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-info {
  text-align: left;
  max-width: 50%;
}
.footer-info h3 {
  color: #d4af37;
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.footer-info p {
  opacity: 0.8;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}
.footer-social a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.footer-social a:hover {
  color: #d4af37;
  transform: translateX(-5px);
}
.copyright {
  text-align: center;
  margin-top: 25px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* =========================================
   10. WHATSAPP
   ========================================= */
.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(45deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 35px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float::before,
.whatsapp-float::after {
  content: "";
  position: absolute;
  border: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  opacity: 0;
  z-index: -1;
  animation: pulse-border 2s linear infinite;
}
.whatsapp-float::after {
  animation-delay: 0.5s;
}
@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes pulse-mute {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* =========================================
   RESPONSIVIDADE (MOBILE - AJUSTE CIRÚRGICO)
   Cole isso no FINAL do arquivo style.css
   ========================================= */
@media (max-width: 1025px) {
  /* 1. DESTRAVAR O SITE (Para o conteúdo não sumir) */
  html,
  body {
    overflow-x: hidden !important; /* Evita rolagem lateral */
    overflow-y: auto !important; /* Permite rolagem vertical */
    height: auto !important;
    position: static !important;
  }

  /* 2. HERO: Altura automática para caber tudo */
  .hero {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
    height: auto !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    /* CRUCIAL: Isso faz o restante do site aparecer */
    overflow: visible !important;
  }

  .hero-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    width: 100% !important;
  }

  /* 3. VÍDEO: Posição Equilibrada */
  .hero-col-center {
    order: 1; /* Vídeo primeiro */
    width: 100%;
    display: flex;
    justify-content: center;
    /* Reduzi drasticamente a margem para ele subir */
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .hero .video-container {
    width: 85% !important;
    max-width: 300px !important;
    /* Garante que a borda dourada apareça */
    border: 2px solid #d4af37;
    margin: 0 auto !important;
  }

  /* 4. TEXTOS */
  .hero-col-left {
    order: 2;
    text-align: center !important;
    padding: 0 20px;
    z-index: 5;
  }
  .hero-col-left h1 {
    font-size: 1.8rem;
  }

  /* 5. CRONÔMETRO E BOTÃO */
  .hero-col-right {
    order: 3;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    z-index: 5;
  }

  /* 6. CORREÇÃO DA SOBREPOSIÇÃO (O vilão era a margem negativa) */
  .marquee-section {
    /* Anula a margem negativa do Desktop (-100px vira 0) */
    margin-top: 0 !important;
    padding: 30px 0 !important;
    position: relative !important;
    z-index: 10;
    background: var(--white); /* Garante fundo branco */
  }

  /* 7. GARANTIA DE VISIBILIDADE DAS OUTRAS SEÇÕES */
  #metodologia,
  #depoimentos,
  #faq,
  .stats-section,
  footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Ajustes gerais de layout mobile */
  .zigzag-item {
    flex-direction: column !important;
    text-align: center;
    gap: 30px;
  }
  .zigzag-text h3 {
    padding-left: 0;
    border: none;
    display: inline-block;
    position: relative;
  }
  .zigzag-text h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #d4af37;
    margin: 10px auto 0;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .stats-grid {
    flex-direction: column;
    gap: 30px;
  }
  .stat-separator {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
  }

  /* Menu Mobile */
  header {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    padding: 10px 0;
  }
  .btn-header {
    display: none;
  }
  .menu-toggle {
    display: block !important;
    background: var(--gradient-gold);
    color: var(--primary-dark);
  }
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #0a192f;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  .navbar.active {
    right: 0;
  }
}
.hero-logo-brand {
  max-width: 180px; /* Ajuste o tamanho conforme necessário */
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* --- CORREÇÃO LOGO PDG NO MOBILE --- */
@media (max-width: 1025px) {
  .hero-logo-brand {
    margin: 0 auto 20px auto !important; /* O "auto" nas laterais força o centro */
    display: block !important;
  }
}

/* --- CENTRALIZAR ESTATÍSTICAS MINI NO MOBILE --- */
@media (max-width: 1025px) {
  .stats-mini {
    justify-content: center !important;
  }
}

/* =========================================
   FOOTER MOBILE - ESQUERDA/DIREITA PERFEITO
   ========================================= */
@media (max-width: 1025px) {
  .footer-content {
    flex-direction: row !important; /* Linha horizontal */
    justify-content: space-between !important; /* Logo ESQUERDA + Redes DIREITA */
    align-items: flex-start !important; /* Alinha topo */
    gap: 0 !important; /* Sem espaço extra */
    padding: 40px 20px 30px !important; /* Padding interno */
  }

  .footer-info {
    max-width: 60% !important; /* 60% para endereço */
    text-align: left !important; /* Alinhado à esquerda */
    margin: 0 !important;
  }

  .footer-info h3 {
    font-size: 1.2rem !important;
    margin-bottom: 8px !important;
  }

  .footer-info p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
  }

  .footer-social {
    display: flex !important;
    flex-direction: column !important; /* Ícones na vertical */
    gap: 12px !important;
    text-align: right !important; /* Alinhado à direita */
    margin: 0 !important;
  }

  .footer-social a {
    font-size: 0.9rem !important;
    padding: 6px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .footer-social a:last-child {
    border-bottom: none !important;
  }

  .copyright {
    text-align: center !important;
    padding-top: 25px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-top: 25px !important;
  }
}

/* =========================================
   NOVO DESIGN DE DEPOIMENTOS (FOTO + TEXTO)
   ========================================= */

/* =========================================
   DEPOIMENTOS TIPO "STORY" (VERTICAL)
   ========================================= */

.testimonial-grid {
  display: grid;
  /* Define o tamanho das colunas */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

.testimonial-card {
  background: transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* A MOLDURA DO CELULAR (VERTICAL 9:16) */
.phone-frame {
  width: 100%;
  max-width: 280px; /* Largura de um celular padrão */
  aspect-ratio: 9 / 16; /* FORÇA O FORMATO VERTICAL */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 3px solid #d4af37; /* Borda Dourada Fina */
  margin-bottom: 25px;
  background: #000;
}

/* A Imagem dentro do celular */
.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que a foto preencha tudo sem distorcer */
  transition: transform 0.5s ease;
}

/* Efeito de Zoom ao passar o mouse */
.phone-frame:hover .story-img {
  transform: scale(1.05);
}

/* Gradiente leve na base da foto para dar acabamento */
.overlay-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  pointer-events: none;
}

/* Parte do Texto (Abaixo da Imagem) */
.testimonial-content {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  width: 100%;
  position: relative;
  border-top: 4px solid #d4af37; /* Detalhe dourado no topo do texto */
}

/* Seta apontando para cima (conectando texto à foto) */
.testimonial-content::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #d4af37;
}

.aluno-name {
  font-size: 1.2rem;
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.aluno-name small {
  color: #d4af37; /* Cargo em dourado */
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
}

.quote-box p {
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.stars-gold {
  color: #ffc107;
  font-size: 0.9rem;
}

/* =========================================
   ESTILO DO VÍDEO NOVO (EMBAIXO DO CARROSSEL)
   ========================================= */
.video-destaque-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 80px; /* Espaço antes do título */
  margin-top: 20px;
}

.video-container-highlight {
  position: relative;
  width: 100%;
  max-width: 320px; /* Tamanho estilo celular */
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 20px;
  border: 3px solid #d4af37;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.video-container-highlight video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================
   AJUSTE DO HERO (DESKTOP)
   ========================================= */
/* Mantém o grid de 3 colunas para deixar o meio vazio e mostrar a foto */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr; /* Coluna do meio larga para a foto */
  align-items: center;
  gap: 30px;
}
/* A coluna do meio fica vazia, mas ocupa espaço */
.hero-col-center {
  height: 100%;
  min-height: 1px;
}

/* =========================================
   AJUSTE DO HERO (MOBILE)
   ========================================= */
@media (max-width: 1025px) {
  .hero {
    /* Aumentei o padding-top para empurrar o texto para baixo */
    /* Isso faz o ROSTO da foto de fundo aparecer na parte de cima */
    padding-top: 280px !important;

    background-position: center top !important; /* Foca no topo da foto */
    padding-bottom: 60px !important;
    height: auto !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .hero-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }

  /* Esconde a coluna do meio vazia no mobile para não ocupar espaço à toa */
  .hero-col-center {
    display: none !important;
  }

  /* Ordem: Texto -> Cronômetro */
  .hero-col-left {
    order: 1;
    text-align: center !important;
    padding: 0 20px;
  }

  /* Sombra no texto para ler melhor em cima da foto se precisar */
  .hero-col-left h1,
  .hero-col-left p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  }

  .hero-col-right {
    order: 2;
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* Ajuste do vídeo novo no mobile */
  .video-destaque-wrapper {
    margin-top: 40px;
    padding: 0 20px;
  }
}
