/* RESET SIMPLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* HERO / TÍTULO */
.hero {
  text-align: center;
  padding: 32px 16px 8px;
  max-width: 900px;
}

.hero h1 {
  font-size: 1.7rem;
  line-height: 1.3;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.1rem;
  }
}

.highlight-red {
  color: #ff0000;
  font-weight: 700;
}

.hero-subtitle {
  margin-top: 12px;
  color: #d0d0d0;
  font-size: 0.95rem;
}

/* CONTEÚDO CENTRAL */
.content {
  width: 100%;
  max-width: 1000px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* VÍDEO */
.video-wrapper {
  width: 100%;
  max-width: 640px;
  margin: 16px auto 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Mensagem acima */
.video-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #f5f5f5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.video-hint-arrow {
  font-size: 1.2rem;
  animation: arrowBounce 1s ease-in-out infinite;
}

.video-placeholder {
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.video-thumbnail {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Play pulsante */
.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: none;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 0, 0, 0.9);
  color: #fff;
  cursor: pointer;
  animation: pulsePlay 1.3s ease-in-out infinite;
  box-shadow: 0 0 22px rgba(255, 0, 0, 0.7);
}

#vslVideo {
  display: none;
  width: 100%;
  height: auto;
}

.video-warning {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #bbbbbb;
}

/* CTA – começa invisível e NÃO ocupa espaço */
.cta-section {
  width: 100%;
  max-width: 640px;
  padding: 18px 16px 20px;
  text-align: center;
  background: #111;
  border-radius: 12px;
  border: 1px solid #222;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  margin-top: 0;
  display: none;
}

.cta-section.is-visible {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* BOTÃO VERDE */
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  background: #00c853;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  animation: pulseCta 1.4s ease-in-out infinite;
  box-shadow: 0 0 18px rgba(0, 200, 83, 0.6);

  /* 🔥 Ajuste de espaçamento mais confortável */
  margin-top: 16px;

}

.cta-button:hover {
  transform: scale(1.02);
  background: #00e676;
  box-shadow: 0 0 22px rgba(0, 230, 118, 0.75);
}

.cta-guarantee {
  font-size: 0.8rem;
  color: #b3b3b3;
  margin-top: 6px;
}

/* BLOCO DO PERSONAGEM */
.author {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
}

.author-image-wrapper {
  flex: 0 0 160px;
}

.author-image {
  width: 160px;
  height: auto;
  border-radius: 8px;
  border: 2px solid #ff0000;
  object-fit: cover;
}

.author-text {
  flex: 1;
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.5;
}

.author-text h2 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .author {
    flex-direction: row;
  }

  .author-image-wrapper {
    flex: 0 0 120px;
  }

  .author-image {
    width: 120px;
  }

  .author-text {
    font-size: 0.9rem;
  }
}

/* RODAPÉ */
.footer {
  margin-top: 40px;
  padding: 24px 16px 32px;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}

/* ====================== ANIMAÇÕES ====================== */

@keyframes pulsePlay {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes arrowBounce {
  0% { transform: translateY(0); }
  50% { transform: translateY(5px); }
  100% { transform: translateY(0); }
}

@keyframes pulseCta {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
