
body {
    background: radial-gradient(circle at top, #1e1b2e, #2a273f);
    color: #f2f2f2;
    font-family: "Segoe UI", sans-serif;
}

.container {
    max-width: 95vw;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.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);
}

/* Fundo simbólico (sem imagem) */
body {
    background: radial-gradient(circle at top, #1e1b2e, #2a273f);
    color: #f2f2f2;
    font-family: "Segoe UI", sans-serif;
}

/* Fade-in animado com classe */
.fade-in-delayed {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}
.fade-in-delayed.show {
    opacity: 1;
    transform: translateY(0);
}

/* Carrossel horizontal dos prints */
.carousel-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
}
.carousel-img {
    flex: 0 0 auto;
    width: 250px;
    height: auto;
    scroll-snap-align: start;
    border-radius: 10px;
}

/* CTA flutuante após o delay */
.cta-sticky {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: none;
}

/* Botão CTA flutuante refinado */
.cta-sticky {
    position: fixed;
    bottom: clamp(20px, 5vw, 40px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: none;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.4s ease;
}
.cta-sticky:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-50%) scale(1.02);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    z-index: 1;
}

/* Bloqueio visual caso o YouTube tente exibir overlays ou telas finais */
.video-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
    z-index: 2;
    pointer-events: none;
}

#overlayBlocker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.5));
    z-index: 9999;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.interactive-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.88);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 9999;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.video-container iframe {
    pointer-events: none;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.interactive-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.88);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.overlay-blocker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.8));
    z-index: 3;
    display: none;
}

/* Correção CTA centralizado */
.cta-sticky {
    position: fixed;
    bottom: clamp(20px, 5vw, 40px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: none;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.4s ease;
}

.interactive-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.92);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    z-index: 2;
    cursor: pointer;
    text-align: center;
    transition: opacity 0.3s ease;
    animation: pulse-glow 2s infinite;
    backdrop-filter: blur(8px);
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.25);
    }
    100% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0.1);
    }
}

#overlayBlocker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.65); /* Mais transparente */
    z-index: 2;
    cursor: pointer;
    animation: pulse-fade 2.5s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

@keyframes pulse-fade {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.65;
    }
    100% {
        opacity: 0.8;
    }
}


.cta-button {
  margin: 24px auto;
  padding: 16px 32px;
  font-size: 1.15em;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #4c469e, #7e6bbe);
  border: none;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(126,107,190,0.6);
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
  max-width: fit-content;
}

.cta-button.show {
  display: inline-block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}


.neuro-bloco {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  animation: neuroFade 1.2s ease forwards;
}

.neuro-bloco:nth-child(1) { animation-delay: 0.2s; }
.neuro-bloco:nth-child(2) { animation-delay: 0.5s; }
.neuro-bloco:nth-child(3) { animation-delay: 0.8s; }

.neuro-efeito {
  color: #b38ced;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(179,140,237, 0.5);
}

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


.neuro-efeito {
  display: inline;
  font-weight: 600;
  opacity: 0;
  animation: fadeInSoft 1.2s ease forwards;
}

.neuro-efeito:nth-child(1) { animation-delay: 0.2s; }
.neuro-efeito:nth-child(2) { animation-delay: 0.5s; }
.neuro-efeito:nth-child(3) { animation-delay: 0.8s; }

.destaque-final {
  color: #b38ced;
  text-shadow: 0 0 8px rgba(179,140,237, 0.4);
}

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


.copy-emocional {
  text-align: center;
  font-size: 1rem;
  color: #d4d4d4;
  margin: 1.5rem auto;
  max-width: 90%;
  font-style: italic;
  opacity: 0.85;
  transition: all 0.6s ease-in-out;
}


.container-video {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  text-align: center;
}
.copy-emocional {
  font-size: 1rem;
  color: #dddddd;
  margin-top: 1rem;
  font-style: italic;
  opacity: 0.9;
  transition: all 0.5s ease-in-out;
}


.copy-emocional {
  font-size: 1rem;
  color: #dddddd;
  margin-top: 1rem;
  font-style: italic;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  text-align: center;
  position: relative;
  z-index: 2;
}


/* Carrossel estilo Instagram stories */
.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 1rem;
  padding: 1rem 0;
}
.carousel-container::-webkit-scrollbar {
  display: none;
}
.carousel-img {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 250px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.carousel-img:hover {
  transform: scale(1.03);
}


@media (max-width: 1024px) {
  .video-wrapper {
    padding: 0 1rem;
  }
  .cta-button {
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
  }
  .carousel img {
    width: 100%;
    max-width: 320px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    padding: 0 1rem;
  }
  .video-wrapper {
    margin: 0 auto;
  }
  .prints-container {
    padding: 1rem 0;
    text-align: center;
  }
  .carousel {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
  }
  .carousel img {
    flex: 0 0 auto;
    scroll-snap-align: start;
    margin-right: 1rem;
  }
}


/* Correções para centralização */
.container, .print-section {
    text-align: center;
}

/* Responsividade para prints */
.prints img {
    max-width: 100%;
    height: auto;
    margin: 10px auto;
    display: block;
    border-radius: 10px;
}

/* Transição suave para elementos com delay */
.fade-in-delayed {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-delayed.show {
    opacity: 1;
    transform: translateY(0);
}

/* Animação sutil no CTA */
#ctaButton.show {
    animation: pulseCTA 2s infinite;
}

@keyframes pulseCTA {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}


/* Prevenir rolagem extra */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100%;
    height: auto;
}

/* Garantir que partículas não quebrem o layout */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Garantir que container tenha apenas o necessário */
.container {
    overflow: hidden;
    padding-bottom: 2rem;
}


/* CORRIGE TEXTO SOBREPOSTO AO VÍDEO */
.video-wrapper + .copy-emocional-top {
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

/* CENTRALIZA "O que elas disseram" */
.testemunhos h2, .print-title {
    text-align: center;
    margin: 0 auto;
    font-size: 1.3rem;
}

/* GARANTE QUE NÃO HÁ OVERFLOW OCULTO */
body, html {
    overflow-x: hidden;
    overflow-y: auto;
}

/* AJUSTE FINAL NO CONTAINER PARA NÃO ESTICAR A PÁGINA */
.container {
    padding-bottom: 1.5rem;
    max-width: 100%;
    box-sizing: border-box;
}
