/* ------------------------------------- */
/* ESTILOS DEL PRELOADER (MANTENIDOS)    */
/* ------------------------------------- */

.hidden {
display: none;
}

#preloader {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    z-index: 1000;
    transition: opacity 0.5s ease-out; 
}

#logo-preloader {
    width: 220px; 
    height: 150px;
    border-radius: 50%; 
    animation: spin 1.5s linear infinite; 
}

#company-name {
    margin-top: 60px; 
    font-size: 1.5em; 
    
    color: #333333; 
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.main-header.scrolled .company-name {
    color: #ffffff;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Restablecer */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
}

/* ------------------------------------- */
/* ESTILOS DEL ENCABEZADO (Header Fijo)  */
/* ------------------------------------- */

.main-header {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    padding: 5px 30px; 
    background-color: transparent; 
    color: rgb(255, 255, 255);
    transition: background-color 0.3s ease; 
    display: flex;
    justify-content: space-between; 
    align-items: center; 
}

.main-header.scrolled {
    background-color: #000000; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); 
}

.menu-toggle {
    display: none;
}

/* Logo y Nombre */
.logo-container h1 {
    margin: 0;
    font-size: 100%; 
}

.logo-container h1 a {
    display: flex; 
    align-items: center; 
    color: inherit;
    text-decoration: none;
}

.my-company-logo {
    height: 90px;
    width: auto;
    margin-right: 10px; 
}

.company-name {
    font-size: 1.7em; 
    font-weight: 300; 
    letter-spacing: 1px;
    color: #e0e0e0; 
    font-family:Georgia, 'Times New Roman', Times, serif;
}

.main-header.scrolled .company-name {
    color: #ffffff;
}



/* Navegación */
.main-nav ul {
    list-style: none;
    display: flex; 
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.main-nav a:hover,
.main-nav a.active { 
    background-color: #ff1900;
    color: white;
}


/* -------------------------------------------------- */
/* ✅ videoooooooooooooooooooooooo        */
/* -------------------------------------------------- */

/* Eliminamos cualquier margen que pueda tener el body o la sección */
.bio-section {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* ------------------------------------- */
/* 1. SECCIÓN VIDEO HERO (FULL WIDTH)    */
/* ------------------------------------- */
.video-hero-full {
    position: relative;
    width: 100%;            /* Ocupa el 100% del contenedor padre */
    height: 100vh;           /* 80% del alto de la pantalla */
    min-height: 400px;
    background-color: #000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;       /* Corta cualquier exceso del video */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%; 
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%); /* Centra el video perfectamente */
    object-fit: cover;                /* Cubre todo el espacio sin deformar */
}

/* Capa oscura para que el texto sea legible */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Ajusta el 0.4 para más o menos oscuridad */
    z-index: 2;
}

/* Contenido sobre el video */
.video-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    width: 90%;;
    padding-bottom: 80px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.hero-title {
    font-family: Georgia, serif;
    font-size: clamp(4rem, 6vw, 5rem); /* Tamaño fluido */
    margin-bottom: 10px;
    text-transform: none;
}

.hero-subtitle {
    font-size: clamp(4.2rem, 5vw, 4.2rem);
    font-weight: 300;
    margin-bottom: 15px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.hero-description {
    font-size: 2.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Icono de flecha hacia abajo (opcional, como en tu foto) */
.scroll-down-icon {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* ------------------------------------- */
/* 2. SECCIÓN BIOGRAFÍA (BAJO EL VIDEO)  */
/* ------------------------------------- */
.bio-section {
    background-color: #f4f4f4;
    padding: 80px 20px;
}

.bio-container {
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

.bio-name {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 5px;
    color: #6f0101; 
    text-align: center;
}

.bio-title {
    font-size: 1.3em;
    font-weight: 300;
    margin-bottom: 40px;
    color: #9a0202;
    text-align: center;
}

.bio-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
    text-align: left;
}

/* ------------------------------------- */
/* 3. ANIMACIONES Y RESPONSIVE           */
/* ------------------------------------- */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translate(-50%, 0);}
    40% {transform: translate(-50%, -10px);}
    60% {transform: translate(-50%, -5px);}
}

@media (max-width: 768px) {
    .video-hero-full {
        height: 95vh; /* Un poco más corto en móviles */
    }
    .bio-section {
        padding: 50px 15px;
    }
}






/* -------------------------------------------------- */
/* ✅ BOTÓN WHATSAPP: VERSIÓN GRANDE + EFECTOS         */
/* -------------------------------------------------- */

.whatsapp-float {
    position: fixed;
    bottom: 30px; /* Separación del borde inferior */
    right: 30px;  /* Separación del borde derecho */
    width: 90px;  /* Tamaño del círculo */
    height: 90px; 
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.4);
    
    /* Z-INDEX: Máxima prioridad sobre cualquier elemento */
    z-index: 999999; 
    
    /* Estado inicial invisible para el JS */
    opacity: 0;
    visibility: hidden;
    text-decoration: none;
    
    /* Suavidad para el cambio de color al pasar el mouse */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* --- 🔥 ANIMACIONES DE ENTRADA Y ESTADO ACTIVO --- */
.whatsapp-float.activo {
    opacity: 1;
    visibility: visible;
    /* Ejecuta rebote al entrar y pulso infinito */
    animation: bounceIn 0.8s both, pulse-green 2s infinite;
}

/* Efecto Hover (PC y Celular) */
.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1); /* Crece un poco más al tocarlo */
}

/* 🟢 EL CUADRO DIAGONAL (Tamaño Grande) */
.whatsapp-tooltip {
    position: absolute;
    right: 110px; /* Posicionado a la izquierda del botón */
    background-color: #ffffff;
    color: #333333;
    padding: 15px 25px; 
    border-radius: 35px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 18px;    /* Texto grande y legible */
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #f0f0f0;
    
    /* EFECTO DIAGONAL INICIAL */
    opacity: 0;
    visibility: hidden;
    transform: translateX(25px) translateY(15px) rotate(-12deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

/* Mostrar Tooltip al hacer Hover */
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0) rotate(0deg);
}

/* Icono Grande */
.whatsapp-icon {
    width: 60px; 
    height: 60px;
    object-fit: contain;
    z-index: 2;
}

/* --- 🎭 KEYFRAMES (LAS ANIMACIONES) --- */

/* 1. Rebote de entrada */
@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* 2. Pulso Verde (Aura circular expansiva) */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 25px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- AJUSTE RESPONSIVO PARA CELULARES --- */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 75px; /* Un poco más pequeño en móvil para no estorbar tanto */
        height: 75px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
    .whatsapp-tooltip {
        right: 90px;
        font-size: 15px;
        visibility: visible; /* Se activa al tocar el botón */
    }
}





/* ------------------------------------- */
/* 🎯 ESTILOS DE LA NUEVA PORTADA (#anfitriones) */
/* ------------------------------------- */

#anfitriones {
    /* Nueva URL de la imagen */
    background: linear-gradient( rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)), url("../IMG/bIo-Ninosha.png");
    background-size: cover;
    background-position: center 40%; 
    background-attachment: fixed;
    min-height: 70vh; /* Altura de la portada ajustada */
    display: flex;
    justify-content: center; 
    align-items: center; 
    flex-direction: column; 
    text-align: center;
    color: white; 
}

.presentacion {
    max-width: 800px; 
    padding: 20px;
    margin-top: 0;
}

.presentacion .bienvenida {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 2px;
}

.presentacion h2 {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
}
/*
.social-icons a {
    color: white;
    font-size: 1.5em;
    margin: 0 10px;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: #ff1900;
}
*/
/* ----------------------------------- */
/* RESPONSIVIDAD (MÓVIL) */
/* ----------------------------------- */

@media (max-width: 768px) {
    /* Ajuste para la nueva portada en móvil */
    #anfitriones {
        min-height: 70vh; 
        background-position: center 30%;
    }
    
    .main-header {
        display: grid;
        grid-template-columns: 1fr auto; 
        padding: 15px 20px;
    }

    .menu-toggle {
        
        display: block;
        background: transparent;
        border: none;
        color: white;
        font-size: 2em;
        cursor: pointer;
        line-height: 1; 
        outline: none; 
    }

    .main-nav {
        grid-column: 1 / 3; 
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .main-nav.open {
        max-height: 300px; 
        padding-top: 10px;
    }

    .main-nav ul {
        flex-direction: column; 
    }

    .main-nav li {
        margin: 5px 0; 
        text-align: center;
    }

    .main-nav a {
        display: block; 
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .my-company-logo {
        height: 50px;
    }

    /* Ajuste de Texto de Portada en móvil */
    .presentacion {
        margin-top: 50px; 
    }
    .presentacion h2 {
        font-size: 2em;
    }
    .presentacion .bienvenida {
        font-size: 1.2em;
    }
}


* ------------------------------------- */
/* 📋 ESTILOS DE LA BIO (SECCIÓN NOSOTROS) */
/* ------------------------------------- */

.bio-section {
    background-color: #f4f4f4; /* Fondo claro */
    padding: 80px 20px;
    text-align: center;
}

.bio-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 110px 20px;
    color: #333;
}

.bio-name {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 5px;
    color: #6f0101; /* Un tono gris para el nombre */
}

.bio-title {
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 30px;
    color: #9a0202;
}

.bio-about {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #666;
    text-transform: uppercase;
}

.bio-text p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
    text-align: left; /* Alineación del texto de la biografía */
}


/* ----------------------------------- */
/* RESPONSIVIDAD (MÓVIL) */
/* ----------------------------------- */

@media (max-width: 768px) {
    /* ... (Estilos de menú y portada móvil anteriores se mantienen) ... */

    #anfitriones {
        min-height: 70vh; 
        background-position: center 30%;
    }
    
    .bio-section {
        padding: 50px 15px;
    }
    
    .bio-name {
        font-size: 2em;
    }
    
    .bio-title {
        font-size: 1.2em;
    }
}









___________________________________________________________________

/* 1. SECCIÓN PRINCIPAL (El escenario) */
.experience-section {
    position: relative;
    width: 100%;
    background-color: #e5d5c5; /* Color crema de la foto */
    /* Textura sutil de papel para que no sea un color plano */
    background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png'); 
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

/* 2. CONTENEDOR DEL ENCABEZADO (La clave del centrado) */
.experience-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;    /* Centra horizontalmente el h3 */
    justify-content: center; /* Centra verticalmente */
    margin-bottom: 80px;
    width: 100%;            /* Ocupa el ancho para que el centro sea real */
    margin-top: 100px;
}

/* 3. TEXTO "VIVÍ UNA EXPERIENCIA" */
.experience-header h3 {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #000000;
    margin: 0;
    position: relative;
    z-index: 1; /* Queda por detrás de la imagen */
}

/* 4. IMAGEN "UNICA" (Superpuesta y centrada) */
.img-unica {
    position: absolute;  /* Flota sobre el contenedor */
    top: 50%;            /* Se mueve al centro vertical */
    left: 50%;           /* Se mueve al centro horizontal */
    /* translate(-50%, -50%) es lo que garantiza el centrado milimétrico */
    transform: translate(-50%, -30%); 
    width: 320px;        /* Ajusta este tamaño según tu archivo original */
    height: auto;
    z-index: 2;          /* Queda por delante del texto h3 */
    pointer-events: none; /* Evita que la imagen interfiera con clics */
}



/* 6. RESPONSIVO (Para que en celular no se vea mal) */
@media (max-width: 768px) {
    .img-unica {
        width: 280px;   /* Imagen más pequeña en móviles */
        transform: translate(-50%, -20%);
    }
    
    .ratings-grid {
        flex-direction: column; /* Se apilan uno abajo del otro */
        gap: 50px;
    }
    
    .score {
        font-size: 2.5rem;
    }
}















/* 1. LETRAS ABAJO DE  LA IMAGEN  */
.booking-section {
    margin-top: 60px; /* Espacio respecto a los laureles/ratings */
    padding-bottom: 40px;
    text-align: center;
}

/* --- EFECTO DE BRILLO (SHIMMER) --- */
.shimmer-text {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 8px;
    
    
    /* Creamos un degradado: Color base -> Brillo Blanco -> Color base */
    background: linear-gradient(
        to right, 
        #000000 20%, 
        #ffffff 50%, 
        #000000 80%
    );
    background-size: 200% auto; /* El fondo es el doble de ancho que el texto */
    
    /* Este truco hace que el fondo solo se vea "dentro" de las letras */
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    
    /* Ejecuta la animación infinitamente */
    animation: shimmerEffect 9s linear infinite;
}

/* Texto de horarios */
.schedule-text {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    color: #5d534a; /* Tono café oscuro para legibilidad */
    letter-spacing: 1px;
}

/* --- LA ANIMACIÓN --- */
@keyframes shimmerEffect {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .shimmer-text { font-size: 1.4rem; }
    .schedule-text { font-size: 0.9rem; }
}

























/* ----------------------------------------------------------- */
/* 1. CONTENEDOR PRINCIPAL (Con textura de papel como el video) */
/* ----------------------------------------------------------- */
/* Contenedor para centrar */
/* Nuevo contenedor para alinear los tickets */
/* ----------------------------------------------------------- */
/* 1. CONTENEDOR PADRE (Para alinear uno al lado del otro)     */
/* ----------------------------------------------------------- */
.ticket-container {
  display: flex;
  flex-wrap: wrap;         /* Permite que los tickets bajen si no hay espacio */
  justify-content: center; /* Centra los tickets horizontalmente */
  gap: 40px;               /* Espacio entre tickets */
  padding: 60px 20px;
  background-color: #ffffff; /* Fondo neutro para resaltar el ticket */
  min-height: 100vh;
}

/* ----------------------------------------------------------- */
/* 2. EL TICKET                                               */
/* ----------------------------------------------------------- */
.ticket {
  width: 380px;
  background-color: #fdf5e6; /* Color crema exacto */
  position: relative;
  padding: 25px;
  border: 1.5px solid #cdb17f;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  /* Variable para el brillo del JS */
  --mouse-x: 0px;
  --mouse-y: 0px;
}

/* EFECTO HOVER */
.ticket:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Línea interna decorativa */
.ticket-inner-border {
  border: 1px solid #f2e3c9;
  padding: 30px 20px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ----------------------------------------------------------- */
/* 3. EL TROQUELADO INFERIOR                                  */
/* ----------------------------------------------------------- */
.ticket-cutout {
  position: absolute;
  bottom: -20px;
  left: -1.5px;
  width: calc(100% + 3px);
  height: 30px;
  background: radial-gradient(circle at 15px 25px, transparent 12px, #fdf5e6 13px);
  background-size: 30px 40px;
  background-position: center bottom;
}

.ticket-cutout::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 15px 25px, transparent 12px, #f2e3c9 13px, #f2e3c9 14.5px, transparent 15px);
  background-size: 30px 40px;
}

/* ----------------------------------------------------------- */
/* 4. ESTILOS DE TEXTO                                        */
/* ----------------------------------------------------------- */
.ticket-title { 
  color: #4a2c2a; 
  font-family: 'Georgia', serif; 
  font-size: 26px; 
  margin: 0; 
}

.ticket-subtitle { 
  color: #888; 
  font-size: 14px; 
  margin: 10px 0 30px 0; 
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ticket-info { 
  text-align: left; 
  color: #444; 
  font-size: 14px; 
  line-height: 1.6; 
}

.highlight { 
  font-weight: bold; 
  color: #a67c27;
  margin-bottom: 15px; 
}

.ticket-price { 
  color: #4a2c2a; 
  font-size: 36px; 
  margin: 30px 0; 
  font-weight: bold; 
}

/* ----------------------------------------------------------- */
/* 5. BOTÓN TICKET                                            */
/* ----------------------------------------------------------- */
.ticket-button {
  background-color: #a67c27;
  color: white;
  border: none;
  padding: 14px 45px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  /* Forma de ticket en los bordes */
  clip-path: polygon(0% 20%, 5% 20%, 5% 0%, 95% 0%, 95% 20%, 100% 20%, 100% 80%, 95% 80%, 95% 100%, 5% 100%, 5% 80%, 0% 80%);
  transition: all 0.3s;
}

.ticket-button:hover {
  background-color: #8a6620;
  transform: scale(1.05);
}












/* ----------------------------------------------------------- */
/* 5. VENTANA MODAL                                            */
/* ----------------------------------------------------------- */

:root {
  --dark-red: #4a0e0e; /* El color bordó del botón */
  --border-gold: #d4b886; /* El color de los bordes de los inputs */
}

/* Estilos de la Ventana Modal */
   .modal-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.8); display: none; justify-content: center; align-items: center; z-index: 9999;
    }
    .modal-content {
        background: white; width: 90%; max-width: 400px; padding: 25px;
        border-radius: 15px; position: relative; text-align: center; font-family: sans-serif;
    }
    .close-btn { position: absolute; top: 10px; right: 15px; font-size: 25px; cursor: pointer; border: none; background: none; }
    .modal-header-title { font-family: serif; color: #1a1a1a; margin-bottom: 20px; font-size: 24px; }
    .form-group { margin-bottom: 12px; text-align: left; }
    .form-group label { display: block; font-size: 13px; color: #666; margin-bottom: 4px; font-weight: bold; }
    .modal-content input {
        width: 100%; padding: 10px; border: 1px solid #c56767; border-radius: 5px; box-sizing: border-box; font-size: 15px;
    }
    .row-flex { display: flex; gap: 10px; }
    .total-text { font-size: 20px; font-weight: bold; color: #4a0e0e; margin: 15px 0; display: block; }
    .btn-terminar {
        background: #4a0e0e; color: white; border: none; width: 100%; padding: 14px;
        font-size: 16px; font-weight: bold; border-radius: 5px; cursor: pointer; transition: 0.3s;
    }
    .btn-terminar:hover { background: #631212; }















