@charset "utf-8";
/* CSS Document */
/* ESTILOS DE LA PÁGINA DE BIENVENIDA (SOBRE VIRTUAL)
   Proyecto: XV Valeria
   Fecha: Febrero 2026
*/
/* nunito-300 - latin */
/*@font-face {
  font-display: swap;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 300;
  src: url('/webfonts/nunito-v32-latin-300.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: url('/webfonts/nunito-v32-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 500;
  src: url('/webfonts/nunito-v32-latin-500.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: url('/webfonts/nunito-v32-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700;
  src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v316/kJEhBvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oFsI.woff2) format('woff2');
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}*/

/* Contenedor principal con fondo de pantalla completa */
.bg-personalizado {
  background-image: url('../recursos/valemisxv_entercard_back.jpg'); /* Ajustado para estar dentro de carpeta css/ */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Envoltorio para centrar el contenido verticalmente */
.wrapper-bienvenida {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* Imagen del logo superior (Valeria XV) */
.img-logo-top {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: -30px; /* Superposición sutil sobre el sobre */
  z-index: 1;
}
/* Contenedor del sobre interactivo */
.contenedor-sobre {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 320px;
  z-index: 2;
  margin: 0 auto;
}
/* Estilo de la imagen del sobre (Botón de entrada) */
.img-sobre-bottom {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
  cursor: pointer;
  transition: transform 0.3s ease;
  display: block;
}
.img-sobre-bottom:hover {
  transform: scale(1.05);
}
/* Capa para centrar el icono de "touch/click" sobre el sobre */
.capa-icono {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* Permite que el clic pase a través del icono hacia la imagen */
}
/* Icono pulsante de instrucción */
.icono-pulsante {
  color: rgba(255, 255, 255, 0.7);
  font-size: 60px !important;
  animation: pulseFade 2s infinite ease-in-out;
}
/* Animación de latido para el icono */
@keyframes pulseFade {
  0% {
    transform: scale(0.9);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.4;
  }
}
/* Texto de instrucción inferior */
.texto-instruccion {
  color: #784090; /* Color Palo Rosa / Púrpura */
  font-family: 'Nunito', sans-serif;
  margin-top: 30px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-align: center;
}
/*para que el cuerpo esté oculto mientras AOS carga:*/
[data-aos] {
  pointer-events: none;
}
.aos-animate {
  pointer-events: auto;
}