/* styles.css refinado: visual moderno, animado e responsivo */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #0c0c0c 0%, #1a1a1a 100%);
  color: #f4f4f4;
  overflow-x: hidden;
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
  transition: transform 0.4s ease;
}

img:hover {
  transform: scale(1.02);
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

p {
  font-size: 1.1em;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 25px;
}

/* ANIMAÇÕES */
.animate-fade {
  animation: fadeIn 1.5s ease-in forwards;
}

.animate-slide {
  animation: slideUp 1.5s ease-in forwards;
}

.animate-rise {
  animation: riseUp 1.5s ease-in forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes riseUp {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* HEADER */
header.glow-header {
  text-align: center;
  padding: 60px 20px 30px;
  background: linear-gradient(90deg, #1c1c1c, #292929);
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255,255,255,0.2);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
  position: relative;
}

header.glow-header::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, transparent, #ffd900, transparent);
  animation: pulse-bar 2s infinite ease-in-out;
}

@keyframes pulse-bar {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* CONTAINER PRINCIPAL */
main.content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  position: relative;
  min-height: 100vh;
}

.vsl-container {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  border: 6px solid #ff0000;
  border-radius: 20px;
  box-shadow: 0 0 45px rgba(255, 0, 0, 0.6);
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.audio-warning-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  text-align: center;
  padding: 30px;
  color: #fff;
  backdrop-filter: blur(6px);
}

.audio-warning-overlay p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.audio-warning-overlay button {
  padding: 15px 30px;
  font-size: 1.1em;
  border: none;
  border-radius: 8px;
  background: #ff0000;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: bold;
}

.audio-warning-overlay button:hover {
  background: #cc0000;
}

.falsa-barra-tempo {
  width: 100%;
  max-width: 960px;
  height: 8px;
  background-color: #2b2b2b;
  border-radius: 50px;
  margin-top: 15px;
  overflow: hidden;
  position: relative;
}

.tempo-progressivo {
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, #ff0000, #ff4d4d);
  border-radius: 50px;
  transition: width 1s ease-in-out;
}

.highlighted-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 20px 50px;
  font-size: 1.5em;
  font-weight: bold;
  color: white;
  background: linear-gradient(to right, #66ff00, #c00000);
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(255, 187, 0, 0.6);
  transition: all 0.3s ease-in-out;
}

.highlighted-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 230, 0, 0.8);
}

section.visuals,
section.proofs,
section.about-book,
section.visuals-fundo {
  text-align: center;
  padding: 60px 20px;
}

.visual-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  width: 100%;
}

.visual-step p {
  max-width: 700px;
  text-align: center;
  font-size: 1.1em;
}

.visual-bg {
  width: 100%;
  max-width: 1024px;
  aspect-ratio: 1024 / 402;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}

/* Adaptação para desktop: imagens de provas sociais e capa menores */
@media screen and (min-width: 1025px) {
  .proofs img,
  .about-book img {
    max-width: 60%;
    margin: 30px auto;
  }

  .visual-bg {
    max-width: 80%;
  }

  .video-wrapper {
    max-width: 800px;
  }
}

@media screen and (max-width: 768px) {
  .visual-step p {
    font-size: 1em;
    padding: 0 10px;
  }

  .visual-bg {
    width: 100%;
    aspect-ratio: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: auto;
    padding-top: 40%;
  }

  p {
    font-size: 1em;
    padding: 0 10px;
  }

  .benefits ul {
    font-size: 1em;
  }

  .highlighted-btn {
    font-size: 1.2em;
    padding: 15px 30px;
  }

  .audio-warning-overlay p {
    font-size: 1em;
  }

  .audio-warning-overlay button {
    font-size: 1em;
    padding: 12px 20px;
  }

  section.visuals img,
  section.proofs img,
  section.about-book img {
    width: 95%;
    margin: 10px auto;
    display: block;
  }
}
.duvida-section {
  background: linear-gradient(to bottom, #0e0e0e, #1a1a1a);
  color: #f4f4f4;
  padding: 80px 20px;
  text-align: center;
}

.duvida-container {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.duvida-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.duvida-section h3 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-top: 30px;
}

.duvida-section blockquote {
  margin: 30px auto;
  font-style: italic;
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-left: 4px solid #ffd700;
  font-size: 1.2rem;
}

.highlighted-btn {
  display: inline-block;
  margin-top: 40px;
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
}

.highlighted-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ffd70080;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}


@media screen and (min-width: 1025px) {
  .video-wrapper {
    max-width: 60%;
    margin: 0 auto 40px;
  }

  .video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
  }

  img {
    max-width: 45%;
    margin: 25px auto;
    display: block;
  }
}
.carrossel-provas img {
  width: 80%;
  max-width: 400px;
  margin: 20px auto;
  display: block;
}
.comprador-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 14px;
  backdrop-filter: blur(10px);
  display: none;
}
