
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #0e1015, #1a1d23, #292b34);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
}

.container {
  width: 90%;
  max-width: 600px;
}

.headline {
  font-size: 1.6em;
  margin-top: 20px;
  margin-bottom: 30px;
}

.destaque {
  color: #b38ced;
  font-weight: bold;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.audio-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.7);
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.1em;
  animation: pulseOverlay 2s infinite;
  z-index: 3;
}

@keyframes pulseOverlay {
  0% { box-shadow: 0 0 0 0 rgba(179,140,237, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(179,140,237, 0); }
  100% { box-shadow: 0 0 0 0 rgba(179,140,237, 0); }
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0%;
  z-index: 4;
  background: linear-gradient(to right, #6b66ff, #b38ced);
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.cta-button {
  display: block;
  margin: 20px auto 10px;
  padding: 16px 30px;
  background: linear-gradient(135deg, #4c469e, #7e6bbe);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1.15em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease forwards, spamPulse 2s infinite ease-in-out;
  animation-delay: 0.3s, 1.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spamPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(126,107,190, 0.4); }
  50% { transform: scale(1.06); box-shadow: 0 0 22px rgba(126,107,190, 0.7); }
}

.subcta {
  font-size: 0.9em;
  color: #ccc;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInSub 1s ease forwards;
  animation-delay: 0.9s;
}

@keyframes fadeInSub {
  to { opacity: 1; transform: translateY(0); }
}

.microcopy {
  font-size: 0.95em;
  color: #aaa;
  margin-top: -10px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.3s;
}

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

.rodape {
  margin-top: 40px;
  font-size: 0.9em;
  color: #888;
}

/* RESPONSIVO */
@media (max-width: 480px) {
  .headline {
    font-size: 1.3em;
    padding: 0 10px;
  }

  .cta-button {
    font-size: 1em;
    padding: 14px 24px;
  }

  .subcta {
    font-size: 0.85em;
  }

  .microcopy {
    font-size: 0.9em;
  }

  .rodape {
    font-size: 0.8em;
    padding: 0 10px;
  }
}


.carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  margin: 30px 0;
  padding-bottom: 10px;
}
.depoimento {
  min-width: 250px;
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 10px;
  font-style: italic;
  flex-shrink: 0;
}
.mockup {
  margin-top: 30px;
  font-size: 1.2em;
  color: #aaa;
  font-style: italic;
}
.seguranca {
  margin-top: 40px;
  font-size: 0.9em;
  color: #888;
  font-style: italic;
}
.cta-button {
  transition: all 0.3s ease-in-out;
}
.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px #b38ced;
}


@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeInUp 1s ease-out both;
}

.container > * {
  opacity: 0;
}

body.loaded .container > * {
  opacity: 1;
  animation: fadeInUp 1s ease-in-out forwards;
}


.depoimentos-carousel {
  margin: 80px auto;
  max-width: 960px;
  text-align: center;
}
.carousel-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 30px;
  color: #f2f2f2;
}
.carousel-container {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.carousel-img {
  flex: 0 0 auto;
  width: 320px;
  max-height: 540px;
  border-radius: 16px;
  scroll-snap-align: center;
  box-shadow: 0 0 18px rgba(0,0,0,0.45);
  transition: transform 0.3s ease;
}
.carousel-img:hover {
  transform: scale(1.03);
}
