
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

 body {
     /* font-family: 'Segoe UI', sans-serif; */
     font-family: 'Montserrat', sans-serif;
      color: #333;
      text-align: center;
    }




section {
    padding: 60px 20px;
     opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-out, transform 2s ease-out;
  }

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






    .section p {
      font-size: 1.4rem;
      
    }

    .bg-gradient-pink {
      background:  #9c7b7b;
      color: white;
    }

    h2 {
      font-size: 1.8rem;
      margin-top: 20px;
      font-weight: bold;
    }

    .icon-box i {
      font-size: 2rem;
      margin-bottom: 15px;
    }

    .divider {
      border-top: 1px solid #ccc;
      width: 90%;
      margin: 15px auto;
    }

    .btn-outline-light {
      border-color: white;
      color: white;
    }

    .btn-outline-light:hover {
      background-color: white;
      color: #9c7b7b;
    }

.btn {
    background: white;
    color: black;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.4em;
}


.btn-whatsapp {
  background-color: #9c7b7b;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
   margin-top:10px;
}

.btn-whatsapp:hover {
  background-color: white;
  color: black;
  text-decoration: none;
}
#countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 1.6em;
    margin-top: 20px;
}
#countdown div {
    text-align: center;
}

.hero {
    color:  #9c7b7b; 
    background: url('img/LULA-XV2.jpg'); 
    /*background-size: 90%;*/ /* reduce un poco la escala de la imagen */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: black; /* o el color de fondo que prefieras */
    
    background-size: cover;
    
    height: 100vh; /* ocupa todo el alto de la pantalla */
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: white;
    text-align: center;
    padding: 20px;
}

section.bg-image {
    background: url('img/LULA-XV.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 60px 20px;
}


.time{
 font-size: 2.0em;
 
}

.time-text {
  font-size: 0.6em;
  color: #fff; 
 
}

#audio-toggle {
  position: fixed;
  bottom: 20px;
  right: 35px; /* Este es el valor clave */
  z-index: 99;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #9c7b7b;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.custom-select-style {
    background-color: #b79f9f;
    border: 1px solid #a88c8c;
    color: #ffffff;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 1.3rem;
    appearance: none;       /* quita el estilo nativo en algunos navegadores */
    -webkit-appearance: none;
    -moz-appearance: none;
}

.custom-select-style:focus {
    outline: none;
    border-color: #947d7d;  /* un poco más oscuro al enfocar */
    box-shadow: 0 0 0 2px rgba(183, 159, 159, 0.4);
}


/* Fondo del popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  opacity: 1;
  transition: opacity 1s ease;
}

/* Cuando el popup se está cerrando */
.popup-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Contenido del popup */
.popup-content {
  color: black;
  max-width: 90%;
  padding: 20px;
  animation: popupEnter 1s ease forwards;
}

@keyframes popupEnter {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Fade-in por texto */
.fade-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Botón personalizado */
#btnIngresar {
  background-color: black;
  color: white;
  border: none;
  padding: 12px 30px;
  margin-top: 30px;
  font-size: 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#btnIngresar:hover {
  background-color: #333;
}

/* Página oculta al principio */
body.page-hidden main {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

body.page-visible main {
  opacity: 1;
  transform: translateY(0);
}

 .scroll-down {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 0 6px rgba(0,0,0,0.8);
    z-index: 9;
    pointer-events: none; /* evita que interfiera con clicks si no querés */
  }

  .scroll-down small {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    opacity: 0.95;
  }

  /* <i> por defecto es inline; para transform/animation conviene inline-block */
  .scroll-down .arrow {
    display: inline-block;         /* clave para que transform funcione bien */
    font-size: 2rem;
    line-height: 1;
    margin-top: 6px;
    will-change: transform;
    animation: smooth-bounce 1.6s cubic-bezier(.4,0,.2,1) infinite;
    -webkit-animation: smooth-bounce 1.6s cubic-bezier(.4,0,.2,1) infinite;
  }

  @keyframes smooth-bounce {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); } /* sube 10px */
    100% { transform: translateY(0); }
  }