/* ===============================
   ESTILOS GERAIS DO SITE
   =============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url('../img/background/grey2.jpg');         /* Fundo preto */
  color: white;                   /* Letras brancas */
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Links padrão */
a {
  color: #d62473;
  text-decoration: none;
}

/* ===============================
   CABEÇALHO (header fixo)
   =============================== */

header {
  background-color: #000;
  padding: 15px 30px;
  position: fixed;       /* Mantém o cabeçalho fixo no topo */
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #69244c;
}

.logo img {
  height: 70px;  /* Tamanho da logo */
  cursor: pointer;
}

/* Menu para desktop */
.desktop-menu a {
  margin-left: 20px;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s;
}

.desktop-menu a:hover {
  color: #d62473;
}

/* Menu hamburguer (mobile) */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

/* Menu lateral mobile (escondido por padrão) */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 30px;
  background: #111;
  padding: 15px;
  border: 1px solid #69244c;
  border-radius: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  margin: 10px 0;
}


/* ===============================
   HERO / CHAMADA PRINCIPAL
   =============================== */

.hero {
  margin-top: 100px;
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(145deg, #1a001f, #3c003f); /* tons escuros com roxo */
  border-bottom: 2px solid #69244c;
}


.hero h1 {
  font-size: 2.5em;
  color: white;
  margin-bottom: 20px;
}
.hero p {
  margin-bottom: 20px; /* afasta o texto do botão */
}

.hero button {
  background-color: #d62473;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.hero button:hover {
  background-color: #a91f5a;
}

/* ===============================
   PLANOS
   =============================== */

.planos-section {
  text-align: center;
  padding: 60px 20px;
  background-image: url('../img/background/grey2.jpg'); /* fundo diferenciado */
  border-top: 2px solid #69244c;
  border-bottom: 50px solid #000;
}


.planos-section h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #d62473;
}

.planos-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.plano {
  border: 2px solid #69244c;
  padding: 30px;
  width: 220px;
  border-radius: 12px;
  background-color: #111;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plano:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px #d62473;
}

.plano h3 {
  color: white;
  margin-bottom: 10px;
}

.plano span {
  display: block;
  margin-top: 10px;
  font-size: 1.3em;
  font-weight: bold;
}

/* ===============================
   MULHERES (Carrossel horizontal)
   =============================== */

.mulheres-section {
  padding: 60px 20px;
}

.mulheres-section h2 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 30px;
  color: #d62473;
}

.carrossel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 0 20px;
  scroll-behavior: smooth;
}

.card-mulher {
  background-color: #111;
  border-radius: 15px;
  border: 2px solid transparent;
  width: 280px; /* 🔹 Largura maior */
  height: 480px; /* 🔹 Altura maior para mais texto */
  padding: 20px;
  flex-shrink: 0;
  transition: border 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-mulher:hover,
.card-mulher:focus-within {
  border: 2px solid #d62473;
  box-shadow: 0 0 15px #d62473;
}

/* 🔹 Área da imagem com tamanho fixo */
.card-mulher .carousel {
  position: relative;
  width: 100%;
  height: 220px; /* Mantém sempre este tamanho */
  overflow: hidden;
  border-radius: 16px;
}

.card-mulher .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover; /*deixa a imagem preenchida sem distorção*/
}


/* Fotos da mulher (mini carrossel interno) */
.carrossel-fotos {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin-bottom: 15px;
}

.carrossel-fotos img {
  width: 100%;
  border-radius: 10px;
  max-height: 200px;
  object-fit: cover;
}

/* Nome, jogos e áudio */
.card-mulher h3 {
  margin-top: 10px;
  color: #fff;
}

.card-mulher p {
  font-size: 14px;
  color: #ccc;
  margin: 10px 0;
}

.card-mulher audio {
  flex-shrink: 0; /*impede o encolhimento*/
  width: 100%;
  min-width: 180px;
  height: 28px; /* compacto */
  margin-bottom: 10px;
  display: block;
}

.audio-label {
  font-size: 12px; 
  color: #d62473;
  margin-bottom: 5px;
  display: block;
}

/* Botão de contratar */
.card-mulher button {
  background-color: #d62473;
  color: white;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.card-mulher button:hover {
  background-color: #a91f5a;
}

/* ===============================
   POPUPS FIXOS
   =============================== */

/* CONTÊINER PARA EMPILHAR OS POPUPS */
.popups-container {
  position: fixed;
  bottom: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Espaço entre os popups */
  z-index: 9999;
}

/* ESTILO INDIVIDUAL DOS POPUPS */
.popup {
  background-color: #222;
  color: white;
  padding: 15px;
  border: 2px solid #69244c;
  border-radius: 10px;
  max-width: 250px;
  box-shadow: 0 0 10px rgba(214, 36, 115, 0.3);
}


.popup button {
  margin-top: 10px;
  background: #d62473;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
}

/* ===============================
   RESPONSIVO - TELAS PEQUENAS
   =============================== */

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .planos-container {
    flex-direction: column;
    align-items: center;
  }

  .card-mulher {
    flex: 0 0 auto;
    scroll-snap-align: center; /* centraliza o card ao parar */
    width: 260px; /* mudar para deixar o tamanho do card utilizado */
  }

  .popup {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}  
  /* Responsividade dos popups no telefone, se necessario apagar até button */
@media (max-width: 768px) {
  .popups-container {
    right: 10px;
    left: 10px; /* ocupa toda a largura com margin lateral */
    bottom: 10px;
    gap: 10px;
    align-items: center;
  }

  .carrossel-nav {
  font-size: 20px;
  padding: 8px;
  }

  .popup {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    padding: 12px;
  }

  .popup button {
    font-size: 12px;
    padding: 6px 12px;
  }
 /* Para popups não empilharem */
 .popups-container {
  max-height: 90vh;
  overflow-y: auto;
  }

}

/* 🎠 Container do carrossel dentro do card */
.carousel {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 16px;
}

/* ✨ Cada imagem do carrossel */
.carousel-image {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  transition: opacity 0.4s ease-in-out;
  border-radius: 16px;
}

/* 👁️ Imagem visível */
.carousel-image.active {
  display: block;
}

/* ⬅️➡️ Botões de navegação */
.carousel-btn {
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(105, 36, 76, 0.7);
  border: none;
  color: white;
  font-size: 18px;
  padding: 5px 8px;
  cursor: pointer;
  border-radius: 6px;
  opacity: 0.3;
  transition: opacity 0.2s, background-color 0.2s;
}

.carousel-btn:hover{
    opacity: 1;
}
/* ⬅️ Botão anterior à esquerda */
.carousel-btn.prev {
  left: 10px;
  transform: translate(-100%, -50%);
}

/* ➡️ Botão seguinte à direita */
.carousel-btn.next {
  right: 10px;
  transform: translate(100%, -50%);

}

/* carrossel + */

/* 🎯 Carrossel horizontal de cards de mulheres (externo) */
.carrossel-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  padding: 0 10px;
}

.carrossel-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  
}

.carrossel-nav {
  background-color: rgba(105, 36, 76, 0.7);
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.carrossel-nav:hover {
  background-color: rgba(105, 36, 76, 0.9);
}


/* Scrollbar mais sutil para o carrossel de mulheres */
.carrossel-cards::-webkit-scrollbar {
  height: 6px; /* altura da barra */
}

.carrossel-cards::-webkit-scrollbar-track {
  background: transparent;
}

.carrossel-cards::-webkit-scrollbar-thumb {
  background-color: #69244c;   /* cor do scroll */
  border-radius: 4px;
  transition: background 0.3s;
}

.carrossel-cards::-webkit-scrollbar-thumb:hover {
  background-color: #d62473;  /* cor ao passar o mouse */
}

/* Para Firefox */
.carrossel-cards {
  scrollbar-width: thin;          /* fininha */
  scrollbar-color: #69244c transparent; /* cor do thumb e track */
}

footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  border-top: 2px solid #69244c;
  margin-top: 40px;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer-redes a {
  margin: 0 15px;
  color: #d62473;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-redes a:hover {
  color: #fff;
}

.footer-redes i {
  margin-right: 8px;
}

.footer-copy {
  font-size: 14px;
  margin-top: 15px;
}

/* mods */

/* Animação suave nos botões */
button {
  transition: transform 0.2s ease-in-out;
}
button:hover {
  transform: scale(1.05);
}

/* Sombra na logo */
.logo img {
  filter: drop-shadow(0 0 8px #d62473);
}

/* regra do popup desabilitado none/active */
#popup18 {
  display: none !important;
}

#popupCupom {
  display: none !important;
}

/* Botão Ser uma Queen Destaque */

/*  .desktop-menu .btn-queen {
  background: #a64ac9;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 8px;
  margin-left: 10px;
  transition: background 0.3s, transform 0.2s;
}

.desktop-menu .btn-queen:hover {
  background: #8e24aa;
  transform: translateY(-2px);
}*/


/* Garante que o footer fique sempre no rodapé, mesmo em páginas curtas */
html, body {
  height: 100%; /* Faz a tela inteira contar como altura */
}

body {
  display: flex;
  flex-direction: column; /* Organiza conteúdo em coluna */
}

main {
  flex: 1; /* Faz o conteúdo ocupar o espaço restante, empurrando o footer */
}

/* ✨ Animação de brilho somente no hover */
@keyframes brilho {
  0%   { text-shadow: 0 0 5px #d62473, 0 0 10px #69244c; color: #fff; }
  50%  { text-shadow: 0 0 15px #ff4da6, 0 0 30px #d62473; color: #ffb6d9; }
  100% { text-shadow: 0 0 5px #d62473, 0 0 10px #69244c; color: #fff; }
}

/* Só ativa a animação quando passar o mouse */
.desktop-menu a:hover,
.mobile-menu a:hover {
  animation: brilho 1.5s infinite alternate;
}
