.vsl-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

  video {
  width: 100%;
  max-width: 800px;
   height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 10px;
  margin: 0 auto;
}

.video-wrapper {
  overflow: hidden; /* 👈 adiciona isso */
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}

 .custom-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
    width: 60px;
    height: 60px;
  background-color: rgba(255, 204, 0, 0.9); /* amarelo */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px black;
  animation: pulse 1.5s infinite ease-in-out; /* 👈 Adicionado aqui */
}

  .custom-controls::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 16px solid black;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  background-color: #ffcc00;
  width: 0%;
  z-index: 2;
  border-radius: 0 0 10px 10px;
}

  #ctaButton {
    display: none;
    margin-bottom: 15px;
    background-color: #ffcc00;
    color: #000;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

.volume-hint {
  position: absolute;
  top: 30%; /* Levemente acima do botão de play */
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffcc00;
  font-size: 22px;
  font-weight: bold;
  text-shadow: 1px 1px 3px #000;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap; /* Impede quebra de linha */
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* Botão ao FIM do VÍDEO */
#hireButton {
  display: none;
  position: absolute;
  bottom: 20px; /* posiciona no rodapé do vídeo */
  left: 50%;
  transform: translateX(-50%);
  background-color: #28a745;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10; /* Garantir que o botão esteja acima de outros elementos */
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  animation: pulseGreen 1.6s infinite ease-in-out;
  transition: background-color 0.3s ease;
}

#hireButton:hover {
  background-color: #218838; /* verde mais escuro */
}
@keyframes pulseGreen {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scale(1.05);
    opacity: 0.85;
  }
}

.vsl-section {
  background-color: #000;
  text-align: center;
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

vsl-headline {
  position: relative; /* 👈 Mude de fixed para relative por padrão */
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  z-index: 999;
  text-align: center;
  padding: 20px 10px;
}

.vsl-headline h1 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  padding: 20px;
  border-radius: 10px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

body.lock-scroll {
  overflow: hidden;
}
/* OCULTA AS SEÇÕES E SÓ APRESENTA AO TÉRMINO DA VSL - TODAS AS SECTIONS A SEREM OCULTAS PRECISAM DA CLASS .site-content */
.site-content {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.site-content.show {
  opacity: 1;
}

.site-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.site-content.show {
  opacity: 1;
  transform: translateY(0);
}
/* FIM CSS OCULTA AS SEÇÕES E SÓ APRESENTA AO TÉRMINO DA VSL */

/* CONFIGURAÇÕES HEADLINE CELULAR */
@media (max-width: 768px) {
  .vsl-headline {
    position: relative !important; /* ✅ Tira o fixed */
    z-index: 1;
     padding: 0 !important;
    background-color: #000;
  }

  .vsl-headline h1 {
    font-size: 16px !important; /* ✅ Reduz a fonte */
    line-height: 1.3;
    padding: 4px 8px !important;
  }

  .vsl-section {
    padding-top: 0 !important; /* ✅ Remove espaço desnecessário */
    padding-bottom: 20px;
  }

  .video-wrapper {
    aspect-ratio: 9 / 16;
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  video {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
  }

  .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background-color: #ffcc00;
    z-index: 10;
    border-radius: 0 0 10px 10px;
  }

  #hireButton {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    font-size: 14px;
    padding: 10px 18px;
    z-index: 11;
  }

  .volume-hint {
    font-size: 14px;
    top: 36%;
  }

  .volume-hint i {
    font-size: 18px;
  }
}
/* FIM CONFIGURAÇÕES HEADLINE CELULAR */