:root {
  --cor-rosa: #FF17C1;
  --cor-verde: #00FF5A;
  --whatsapp-green: #25d366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Otimização da renderização da fonte Poppins */
body {
  font-feature-settings: 'kern' 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  border: none;
  outline: none;
}

body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

/* Remove linhas indesejadas entre seções */
section {
  border: none;
  outline: none;
  margin: 0;
  box-shadow: none;
}

.hero {
  position: relative;
  background: url("../img/background-section1-p2.jpg") no-repeat top;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  margin-top: 30px;
  
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.tag,
.title,
.video-wrapper,
.cta,
.hero-promo-text,
.bloco-video-padrao {
  position: relative;
  z-index: 2;
}

.tag {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 14px;
  color: var(--cor-rosa);
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeIn 0.5s ease-in-out;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  width: 40%;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.title strong.green {
  color: #00ff5a;
}

.title strong {
  color: var(--cor-rosa);
}

.hero-promo-text {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 10px auto 30px;
  color: #f0f0f0;
  animation: fadeIn 2s ease-in-out;
}

.hero-promo-text strong.green {
  color: var(--cor-verde);
  font-weight: 600;
}

/* Estilo unificado para os blocos de vídeo */
.bloco-video-padrao {
  position: relative; /* Garante contexto de posicionamento para o loader */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95%;
  max-width: 600px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin: 0 auto 30px;
  border: 3px solid var(--cor-rosa);
}

/* Loader do Vídeo */
.video-loader {
  position: absolute;
  inset: 0;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 20; /* Acima do player */
  transition: opacity 0.5s ease, visibility 0.5s;
}

.video-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-loader .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid var(--cor-rosa);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

.video-loader p {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Garante que o vídeo ocupe todo o espaço do container */
.bloco-video-padrao .plyr,
.bloco-video-padrao video, 
.bloco-video-padrao iframe { 
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
}


.cta {
  margin-top: 20px;
}

.cta button {
  background: var(--cor-rosa);
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(230, 0, 165, 0.3);
  transition: all 0.3s ease;
}

.cta button:hover {
  background: #c50090;
  transform: translateY(-2px);
}

.cta button:active {
  transform: translateY(0px) scale(0.95);
}

/* Efeito Glow no Botão Hero */
.btn-glow-container {
  position: relative;
  padding: 3px;
  background: var(--cor-rosa);
  border-radius: 15px;
  transition: all 0.4s ease;
  display: inline-block;
  z-index: 1;
}

.btn-glow-container::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 15px;
  z-index: -1;
  background: var(--cor-rosa);
  filter: blur(0);
  transition: filter 0.4s ease;
}

.btn-glow-container .cta-btn {
  background: var(--cor-rosa);
  margin: 0;
  box-shadow: none;
}

.btn-glow-container .cta-btn:hover {
  background: var(--cor-rosa);
  box-shadow: 0 0 5px var(--cor-rosa), 0 0 10px var(--cor-rosa);
  transform: scale(1.05);
}

.cta .check-icon {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.cta .check-icon::after {
  content: "✔";
  color: var(--cor-rosa);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 14px;
}

/* Indicador de som */
#soundIndicator {
  animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  20% {
    opacity: 1;
    transform: translateY(0);
  }

  80% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* Responsividade para tablets - 1024px */
@media (max-width: 1024px) {
  .hero {
    padding: 0 60px;
    background: url("../img/background-section1-p2.jpg") no-repeat center center;
    background-size: cover;
    height: 100vh;
    margin-top: 50px;
  }

  .title {
    width: 100%;
    font-size: 1.8rem;
  }

  .bloco-video-padrao {
    max-width: 90vw;
    border-radius: 20px;
  }

  .cta button {
    font-size: 15px;
    padding: 14px 28px;
  }
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
  .hero {
    padding: 0 40px;
    background: url("../img/background-section1-p2.jpg") no-repeat center center;
    background-size: cover;
    height: 100vh;
    margin-top: 50px;
  }

  .title {
    width: 100%;
    font-size: 1.8rem;
  }

  .bloco-video-padrao {
    max-width: 95vw;
    border-radius: 16px;
  }

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

@media (max-width: 700px) {
  .bloco-video-padrao {
    max-width: 98vw;
    border-radius: 14px;
  }

  .hero {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: auto; /* Permite que a seção cresça conforme o conteúdo */
    min-height: 100vh;
    padding: 20px 16px;
    margin-top: 100px;
    background: url("../img/background-section1- mobile.png");
    background-position: top;
    background-size: cover;
    justify-content: center; /* Centraliza verticalmente */
    gap: 15px;
  }

  .tag {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 14px;
    margin-bottom: 10px;
  }

  .title {
    width: 100%;
    font-size: 1.7rem; /* Fonte menor */
    margin-top: 10px; /* Menos margem superior */
    line-height: 1.3;
  }

  .hero-promo-text {
    font-size: 0.9rem; /* Texto promocional menor */
    line-height: 1.4;
    margin: 10px auto 20px;
  }

  .bloco-video-padrao {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    margin: 10px auto; /* Menos margem */
    aspect-ratio: 16/9;
  }

  .cta {
    margin-top: 15px;
    width: 100%;
  }

  .cta button {
    font-size: 0.9rem;
    padding: 12px 15px;
    border-radius: 10px;
    width: 100%;
    justify-content: center;
  }
}

/* ===== SEÇÃO TARGET AUDIENCE ===== */
.target-audience {
  background-color: #000;
  color: #fff;
  padding: 80px 0;
  position: relative;
}

.target-audience .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.target-audience .section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.8s ease;
}

/* Animação para o título quando visível */
.target-audience .section-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.target-audience .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Estilo da imagem do ebook */
.target-audience .ebook-image {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease;
}

/* Animação para a imagem quando visível */
.target-audience .ebook-image.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.target-audience .ebook-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.target-audience .ebook-image img:hover {
  transform: scale(1.05);
}

/* Lista de público-alvo */
.target-audience .audience-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.target-audience .audience-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

/* Classe para ativar a animação quando visível */
.target-audience .audience-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Delays escalonados aplicados via JavaScript */
.target-audience .audience-item:nth-child(1).animate-in {
  transition-delay: 0.1s;
}

.target-audience .audience-item:nth-child(2).animate-in {
  transition-delay: 0.2s;
}

.target-audience .audience-item:nth-child(3).animate-in {
  transition-delay: 0.3s;
}

.target-audience .audience-item:nth-child(4).animate-in {
  transition-delay: 0.4s;
}

.target-audience .audience-item:nth-child(5).animate-in {
  transition-delay: 0.5s;
}

/* Ícone de check */
.target-audience .check-icon {
  background: linear-gradient(135deg, var(--cor-rosa), var(--cor-rosa));
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(var(--cor-rosa), 0.4);
  transition: all 0.3s ease;
}

.target-audience .check-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(var(--cor-rosa), 0.6);
}

/* Texto dos itens */
.target-audience .audience-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  margin: 0;
  font-weight: 400;
  animation: fadeInUp 1.5s ease-in-out;
}

/* Animação fadeInUp */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Responsividade específica para target-audience */
@media (max-width: 1024px) {
  .target-audience {
    padding: 70px 0;
  }

  .target-audience .section-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }

  .target-audience .content-wrapper {
    gap: 50px;
    max-width: 900px;
  }

  .target-audience .audience-item p {
    font-size: 1.05rem;
  }

  .target-audience .check-icon {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .target-audience {
    padding: 60px 0;
  }

  .target-audience .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .target-audience .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .target-audience .audience-item {
    text-align: left;
  }

  .target-audience .audience-item p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .target-audience .container {
    padding: 0 15px;
  }

  .target-audience .section-title {
    font-size: 1.5rem;
  }

  .target-audience .audience-item {
    gap: 15px;
  }

  .target-audience .check-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* ===== SEÇÃO DEPOIMENTOS ===== */
.depoimentos {
  position: relative;
  background: #111;
  padding: 80px 0 60px 0;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 0;
  border-bottom: none;
}

.depoimentos-bg {
  position: absolute;
  inset: 0;
  background: url('../img/background-section-depoimentos.png') no-repeat center center/cover;
  z-index: 0;
}

.depoimentos-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.depoimentos .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 0 20px;
  margin-bottom: 0;
}

.depoimentos-titulo {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 1.5px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.8s ease;
}

/* Animação para título dos depoimentos */
.depoimentos-titulo.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.depoimentos-subtitulo {
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 40px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.2s;
}

/* Animação para subtítulo dos depoimentos */
.depoimentos-subtitulo.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.depoimentos-subtitulo .destaque-verde {
  color: var(--cor-verde);
  font-weight: 700;
}

.depoimento-video {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 60px auto;
  width: 700px;
  max-width: 95vw;
  aspect-ratio: 16/9;
  background: #fff;
  border-radius: 16px;
  border: 4px solid var(--cor-rosa);
  box-shadow: 0 8px 32px rgba(var(--cor-rosa), 0.12);
  position: relative;
  transition: box-shadow 0.3s, opacity 0.8s ease, transform 0.8s ease;
  opacity: 0;
  transform: scale(0.8);
}

/* Animação para vídeo de depoimento */
.depoimento-video.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* Configuração dos vídeos gerenciada pelo Plyr.js */
.mais-depoimentos-titulo {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  margin: 40px 0 32px 0;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

/* Animação para título "MAIS DEPOIMENTOS" */
.mais-depoimentos-titulo.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.depoimentos-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
  align-items: stretch;
}

.depoimento-card {
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.8s ease, translate 0.8s ease;
  min-height: 480px;
  height: 100%;
  opacity: 0;
  transform: translateY(50px);
}

/* Animação para cards de depoimentos */
.depoimento-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Delays escalonados para os cards */
.depoimento-card:nth-child(1).animate-in {
  transition-delay: 0.1s;
}

.depoimento-card:nth-child(2).animate-in {
  transition-delay: 0.3s;
}

.depoimento-card:nth-child(3).animate-in {
  transition-delay: 0.5s;
}

.depoimento-foto {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: 24px 24px 0 0;
  background: #222;
  flex-shrink: 0;
  display: block;
}

.depoimento-conteudo {
  background: #ff3fcf;
  color: #fff;
  padding: 10px 10px 10px 10px;
  border-radius: 0 0 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 auto;
  min-height: 210px;
  justify-content: flex-start;
}

.depoimento-nome {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-align: center;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  line-height: 1.1;
}

.depoimento-texto {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: center;
  color: #000000;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.depoimento-estrelas {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: flex-end;
  margin-top: 5px;
}

.depoimento-estrelas .fa-star {
  color: #00ff5a;
  font-size: 1rem;
  filter: drop-shadow(0 1px 2px #2226);
}

.depoimento-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(var(--cor-rosa), 0.18);
}

@media (max-width: 1024px) {
  .depoimentos {
    padding: 70px 0 50px 0;
  }

  .depoimentos-titulo {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .depoimentos-subtitulo {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }

  .mais-depoimentos-titulo {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }

  .depoimentos-cards {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .depoimento-card {
    min-height: 420px;
    width: 100%;
    padding: 20px;
    margin: 0 auto;
  }

  .depoimento-foto {
    height: 380px;
  }

  .depoimento-nome {
    font-size: 1.1rem;
  }

  .depoimento-texto {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .depoimentos {
    padding: 50px 0 0 0;
  }

  .depoimentos-titulo {
    font-size: 1.5rem;
  }

  .mais-depoimentos-titulo {
    font-size: 1.2rem;
  }

  .depoimentos-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .depoimento-video {
    width: 100%;
    min-width: 0;
  }

  .depoimento-card {
    min-height: 400px;
  }

  .depoimento-foto {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .depoimentos .container {
    padding: 0 5px 40px 5px;
  }

  .depoimento-foto {
    height: 120px;
  }

  .depoimento-card {
    padding: 10px;
    min-height: 320px;
  }

  .depoimento-foto {
    height: 300px;
  }

  .depoimento-estrelas {
    margin-top: 10px;
  }
}

/* ===== SEÇÃO RESULTADOS ===== */
.resultados {
  background: #000;
  padding: 0px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.resultados .section-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;

}

 .destaque-verde {
  color: var(--cor-verde);
  font-weight: 700;
}

.resultados .section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: #ddd;
}

.carousel-container {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 40px; /* Espaço lateral para os botões não ficarem em cima */
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}

.carousel-slide {
  min-width: calc(33.333% - 14px); /* 3 slides visíveis com gap */
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 2px solid var(--cor-rosa);
  transition: transform 0.3s ease;
  position: relative;
}

.carousel-slide:hover {
  transform: scale(1.02);
  z-index: 5;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 23, 193, 0.2);
  color: white;
  border: 2px solid var(--cor-rosa);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.carousel-btn:hover {
  background: var(--cor-rosa);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 15px var(--cor-rosa);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #555;
}

.dot.active {
  background: var(--cor-verde);
  transform: scale(1.2);
  border-color: var(--cor-verde);
  box-shadow: 0 0 10px rgba(0, 255, 90, 0.5);
}

@media (max-width: 1024px) {
  .carousel-slide {
    min-width: calc(50% - 10px); /* 2 slides visíveis */
  }
}

@media (max-width: 768px) {
  .carousel-container {
    padding: 20px 0;
  }
  
  .carousel-slide {
    min-width: 100%; /* 1 slide visível */
    height: 400px;
  }
  
  .carousel-track {
    gap: 0;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
    background: rgba(0,0,0,0.5);
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }
}

/* ===== SEÇÃO OFERTA LANÇAMENTO ===== */
.oferta-lancamento {
  position: relative;
  background: #000 url("../img/background-section-oferta.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  border: none;
  border-top: none;
  border-bottom: none;
  margin: 0;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: none;
  outline: none;
}

/* Remove qualquer linha entre seções */
.oferta-lancamento::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
  z-index: 3;
}

/* Overlay escuro sobre a imagem de background */
.oferta-lancamento::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
  border: none;
  margin: 0;
  padding: 0;
}

/* Container sobre o overlay */
.oferta-lancamento .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Título da seção sobre o overlay */
.oferta-lancamento .section-title {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.8s ease;
  margin: 20px 0 20px 0;
}

.oferta-lancamento .section-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Descrição da oferta sobre o overlay */
.oferta-descricao {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fff;
  max-width: 800px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.2s;
}

.oferta-descricao.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Reutiliza a classe destaque-verde existente */
.oferta-descricao .destaque-verde {
  color: var(--cor-verde);
  font-weight: 700;
}

/* Showcase do produto sobre o overlay */
.produto-showcase {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.9);
  transition: all 1s ease 0.4s;
}

.produto-showcase.animate-in {
  opacity: 1;
  transform: scale(1);
}

.produto-imagens {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 40px 0 40px 0;
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
  height: 400px;
}

.produto-principal {
  max-width: 400px;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(var(--cor-rosa), 0.3);
  transition: transform 0.3s ease;
}

.produto-principal:hover {
  transform: translateY(-10px) scale(1.05);
}

/* Preço em destaque sobre o overlay */
.preco-destaque {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.6s;
}

.preco-destaque.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.preco-valor {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 255, 90, 0.3);
  letter-spacing: 2px;
  display: block;
  text-transform: uppercase;
}

/* CTA sobre o overlay */
.oferta-lancamento .cta {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.8s;
}

.oferta-lancamento .cta button {
  margin: 0 auto;
  display: block;
}

.oferta-lancamento .cta.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsividade para oferta-lancamento */
@media (max-width: 1024px) {
  .oferta-lancamento {
    padding: 60px 0;
    min-height: 90vh;
  }

  .oferta-lancamento .section-title {
    font-size: 2.2rem;
    margin: 15px 0;
  }

  .oferta-descricao {
    font-size: 1.15rem;
    margin: 25px auto 35px auto;
    max-width: 700px;
  }

  .produto-principal {
    max-width: 350px;
    height: 350px;
  }

  .produto-imagens {
    height: 350px;
    margin: 35px 0;
  }

  .preco-valor {
    font-size: 2.3rem;
  }

  .oferta-lancamento .cta button {
    padding: 16px 32px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .oferta-lancamento {
    padding: 40px 0;
    min-height: 80vh;
  }

  .oferta-descricao {
    font-size: 1.1rem;
    margin: 30px auto 40px auto;
    padding: 0 10px;
  }

  .produto-principal {
    max-width: 300px;
  }

  .preco-valor {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .oferta-lancamento {
    min-height: 70vh;
    padding: 30px 0;
    margin: 0;
  }

  .oferta-lancamento .container {
    padding: 0 15px;
  }

  .oferta-lancamento .section-title {
    font-size: 1.5rem;
  }

  .oferta-descricao {
    font-size: 1rem;
    margin: 20px auto 30px auto;
  }

  .produto-principal {
    max-width: 350px;
  }

  .preco-valor {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .produto-showcase {
    margin: 40px 0;
  }

  .preco-destaque {
    margin: 30px 0 20px 0;
  }
}

/* ===== SEÇÃO DÚVIDAS FREQUENTES ===== */
.duvidas-frequentes {
  background: #000;
  color: #fff;
  padding: 80px 0;
  position: relative;
}

/* Container e título reutilizam padrões existentes */
.duvidas-frequentes .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.duvidas-frequentes .section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.8s ease;
}

.duvidas-frequentes .section-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Lista de dúvidas com borda rosa */
.lista-duvidas {
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid var(--cor-rosa);
  border-radius: 15px;
  padding: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.2s;
}

.lista-duvidas.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Item individual de dúvida */
.item-duvida {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
}

.item-duvida:last-child {
  border-bottom: none;
}

/* Botão da pergunta */
.pergunta-botao {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  padding: 5px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  outline: none;
}

.pergunta-botao:hover {
  color: var(--cor-rosa);
}

.pergunta-botao:focus {
  outline: 2px solid var(--cor-rosa);
  outline-offset: 2px;
  border-radius: 5px;
}

/* Numeração das perguntas */
.numero-pergunta {
  font-weight: 700;
  color: var(--cor-rosa);
  margin-right: 10px;
  flex-shrink: 0;
}

/* Texto da pergunta */
.texto-pergunta {
  flex: 1;
  line-height: 1.4;
}

/* Ícone de expandir */
.icone-expandir {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cor-rosa);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

/* Rotação do ícone quando expandido */
.item-duvida.ativo .icone-expandir {
  transform: rotate(45deg);
}

/* Conteúdo da resposta */
.resposta-conteudo {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 30px;
}

.resposta-conteudo.mostrar {
  max-height: 200px;
  padding: 0 0 20px 30px;
}

.resposta-conteudo p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* Responsividade para dúvidas frequentes */
@media (max-width: 1024px) {
  .duvidas-frequentes {
    padding: 70px 0;
  }

  .duvidas-frequentes .section-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }

  .lista-duvidas {
    max-width: 700px;
    padding: 18px;
  }

  .pergunta-botao {
    font-size: 0.95rem;
    padding: 18px 0;
  }

  .resposta-conteudo {
    padding: 0 0 0 28px;
  }

  .resposta-conteudo.mostrar {
    max-height: 250px;
    padding: 10px 0 18px 28px;
  }

  .resposta-conteudo p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .duvidas-frequentes {
    padding: 60px 0;
  }

  .duvidas-frequentes .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .lista-duvidas {
    padding: 15px;
  }

  .pergunta-botao {
    font-size: 0.9rem;
    padding: 15px 0;
  }

  .resposta-conteudo {
    padding: 0 0 0 20px;
  }

  .resposta-conteudo.mostrar {
    padding: 0 0 15px 20px;
  }
}

@media (max-width: 480px) {
  .duvidas-frequentes .container {
    padding: 0 15px;
  }

  .duvidas-frequentes .section-title {
    font-size: 1.5rem;
  }

  .lista-duvidas {
    padding: 10px;
  }

  .pergunta-botao {
    font-size: 0.85rem;
    padding: 12px 0;
  }

  .numero-pergunta {
    margin-right: 8px;
  }

  .icone-expandir {
    font-size: 1.3rem;
    margin-left: 10px;
  }

  .resposta-conteudo {
    padding: 0 0 0 15px;
  }

  .resposta-conteudo.mostrar {
    padding: 0 0 12px 15px;
  }

  .resposta-conteudo p {
    font-size: 0.9rem;
  }
}

/* ===== RODAPÉ ===== */
.rodape {
  background: #000;
  color: #fff;
  padding: 40px 0 30px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  height: 200px;
}

.rodape .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Redes sociais */
.redes-sociais {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.redes-sociais.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.rede-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 2px solid var(--cor-rosa);
  border-radius: 10px;
  color: var(--cor-rosa);
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  background: transparent;
}

.rede-social-link:hover {
  background: var(--cor-rosa);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 23, 193, 0.4);
}

.rede-social-link:focus {
  outline: 2px solid var(--cor-rosa);
  outline-offset: 3px;
}

/* Copyright */
.copyright {

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.2s;
}

.copyright.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.copyright p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.5px;
}

/* Créditos */
.creditos {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.4s;
}

.creditos {
  opacity: 1;
  transform: translateY(0);
}

.creditos p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  padding: 0 0 20px 0;
}

.coracao {
  color: #ff0000;
  font-size: 1rem;
  animation: batimentoCoracao 1.5s ease-in-out infinite;
}

.nome-desenvolvedor {
  color: var(--cor-rosa);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nome-desenvolvedor:hover {
  color: #fff;
  text-shadow: 0 0 10px var(--cor-rosa);
}

/* Animação do coração */
@keyframes batimentoCoracao {

  0%,
  100% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(1);
  }

  75% {
    transform: scale(1.05);
  }
}

/* Responsividade do rodapé */
@media (max-width: 1024px) {
  .rodape {
    padding: 50px 0 25px 0;
    height: auto;
  }

  .redes-sociais {
    gap: 25px;
    margin-bottom: 30px;
  }

  .rede-social-link {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .copyright p {
    font-size: 0.95rem;
  }

  .creditos p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .rodape {
    padding: 30px 0 20px 0;
  }

  .redes-sociais {
    gap: 15px;
    margin-bottom: 20px;
  }

  .rede-social-link {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .copyright p {
    font-size: 0.9rem;
  }

  .creditos p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .rodape .container {
    padding: 0 15px;
  }

  .redes-sociais {
    gap: 12px;
    margin-bottom: 15px;
  }

  .rede-social-link {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    border-radius: 8px;
  }

  .copyright {
    margin-bottom: 10px;
  }

  .copyright p {
    font-size: 0.85rem;
  }

  .creditos p {
    font-size: 0.75rem;
  }

  .coracao {
    font-size: 0.9rem;
  }
}

/* ===== CUSTOMIZAÇÃO PLYR.JS ===== */
/* Player de vídeo profissional customizado */
.plyr__poster {
  border-radius: 32px !important;
  margin-top: 10px !important;
}

.plyr {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.plyr--video {
  background: #000;
}

/* Customização dos controles com as cores da marca */
.plyr--video .plyr__control--overlaid {
  background: var(--cor-rosa);
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.plyr--video .plyr__control--overlaid:hover {
  background: #c50090;
}

/* Barra de progresso */
.plyr__progress__value {
  background: var(--cor-rosa) !important;
}

.plyr__progress__played {
  background: var(--cor-rosa) !important;
}

/* Controles da barra inferior */
.plyr__controls {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)) !important;
  color: white !important;
}

.plyr__control {
  color: white !important;
}

.plyr__control:hover {
  background: var(--cor-rosa) !important;
  color: white !important;
}

.plyr__control[aria-pressed="true"] {
  background: var(--cor-rosa) !important;
  color: white !important;
}

/* Botão de volume */
.plyr__volume {
  max-width: 100px;
}

.plyr__volume input[type="range"] {
  color: var(--cor-rosa) !important;
}

/* Tooltip customizado */
.plyr__tooltip {
  background: var(--cor-rosa) !important;
  color: white !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}

/* Loading spinner */
.plyr__spinner {
  border-color: var(--cor-rosa) transparent transparent transparent !important;
}

/* Responsividade para o player */
@media (max-width: 1024px) {
  .plyr {
    border-radius: 12px;
  }

  .plyr__control--overlaid {
    width: 70px !important;
    height: 70px !important;
  }

  .plyr__controls {
    padding: 8px 12px !important;
  }
}

@media (max-width: 768px) {
  .plyr {
    border-radius: 10px;
  }

  .plyr__control--overlaid {
    width: 60px !important;
    height: 60px !important;
  }
}

@media (max-width: 480px) {
  .plyr {
    border-radius: 8px;
  }

  .plyr__control--overlaid {
    width: 50px !important;
    height: 50px !important;
  }
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded="true"] {
  background: var(--cor-rosa);
}

/* Cor da barra de progresso */
.plyr__progress input[type="range"] {
  color: var(--cor-rosa);
}

/* Cor do buffer da barra de progresso */
.plyr__progress__buffer {
  color: rgba(255, 255, 255, 0.25);
}

/* Cor do tooltip */
.plyr__tooltip {
  background: var(--cor-rosa);
  color: #fff;
}

.whatsapp-float-container {
        position: fixed;
        bottom: 70px;
        right: 30px;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: flex-end;
      }

      .whatsapp-btn {
        background-color: var(--whatsapp-green);
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        animation: pulse 2s infinite;
      }

      .whatsapp-btn:hover {
        background-color: #1ebe57;
        transform: scale(1.1);
      }

      /* Tooltip Styling */
      .whatsapp-tooltip {
        background-color: #333;
        color: #fff;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 14px;
        margin-right: 15px; /* Espaço entre tooltip e botão */
        position: relative;
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition: all 0.3s ease;
        white-space: nowrap;
        font-weight: 500;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      }

      /* Seta do tooltip */
      .whatsapp-tooltip::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -6px;
        transform: translateY(-50%);
        border-width: 6px 0 6px 6px;
        border-style: solid;
        border-color: transparent transparent transparent #333;
      }

      /* Mostrar tooltip no hover do container */
      .whatsapp-float-container:hover .whatsapp-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
      }

      /* Animação sutil de pulso para chamar atenção */
      @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
        70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
        100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
      }

      /* Responsividade para o botão */
      @media (max-width: 768px) {
        .whatsapp-float-container {
          bottom: 20px;
          right: 20px;
        }
        .whatsapp-btn {
          width: 55px;
          height: 55px;
          font-size: 28px;
        }
        /* Em mobile, as vezes o tooltip pode atrapalhar ou não caber, 
           mas vamos mantê-lo visível por enquanto */
      }
/* ========================================
   BANNER CONTADOR REGRESSIVO
   ======================================== */
.countdown-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(30, 30, 30, 0.98) 100%);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideDown 0.5s ease-out;
  border-bottom: 2px solid var(--cor-verde);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.countdown-banner.hidden {
  display: none;
}

.countdown-content {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.countdown-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.countdown-icon {
  font-size: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.countdown-message {
  flex: 1;
  max-width: 600px;
  font-size: 16px;
}

.countdown-message-banner{
  font-weight: 600;
  color: var(--cor-verde);
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 255, 90, 0.1);
  border: 1px solid var(--cor-verde);
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 60px;
  transition: transform 0.2s ease;
}

.time-block:hover {
  transform: scale(1.05);
}

.time-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--cor-verde);
  line-height: 1;
}

.time-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.time-separator {
  color: var(--cor-verde);
  font-size: 24px;
  font-weight: 700;
  padding: 0 4px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.3; }
}

.countdown-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  margin-left: 15px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.countdown-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

/* Responsividade do banner */
@media (max-width: 992px) {
  .countdown-content {
    gap: 20px;
  }
  
  .time-block {
    min-width: 50px;
    padding: 6px 10px;
  }
  
  .time-value {
    font-size: 20px;
  }
  
  .time-label {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .countdown-banner {
    padding: 12px 15px;
  }
  
  .countdown-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .countdown-text {
    font-size: 16px;
  }
  
  .countdown-icon {
    font-size: 20px;
  }
  
  .countdown-timer {
    margin-left: 0;
    gap: 6px;
  }
  
  .time-block {
    min-width: 45px;
    padding: 5px 8px;
  }
  
  .time-value {
    font-size: 18px;
  }
  
  .time-label {
    font-size: 9px;
  }
  
  .time-separator {
    font-size: 18px;
  }
  
  .countdown-close {
    position: absolute;
    top: 8px;
    right: 8px;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .countdown-message {
    white-space: normal;
    text-align: center;
    font-size: 15px;
  }
  
  .time-block {
    min-width: 40px;
    padding: 4px 6px;
  }
  
  .time-value {
    font-size: 16px;
  }
  
  .time-label {
    font-size: 8px;
  }
  
  .time-separator {
    display: none;
  }
  
  .countdown-timer {
    gap: 4px;
  }
}