        /* Variables de Color (Inspiradas en el Cacao) */
        :root {
            --color-cacao-oscuro: #5D4037; /* Marrón Chocolate */
            --color-cacao-claro: #A1887F; /* Marrón Claro */
            --color-cta: #FFC107; /* Amarillo Dorado/FITVEN */
            --color-fondo: #FAFAFA;
            --color-texto: #333333;
            --color-secundario: #E67E22; /* Naranja/Tostado */
            --color-titulos-oscuro: #2C3E50; /* Azul oscuro para títulos, similar al de las imágenes */
        }

        /* Estilos Generales y Mobile-First */
        body {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--color-fondo);
            color: var(--color-texto);
            line-height: 1.6;
            //opacity: 0; 
            transition: opacity 0.5s; 
        }

        .container {
            width: 90%;
            max-width: 600px; 
            margin: 0 auto;
            padding: 10px 0; 
        }

        /* --- CABECERA Y LOGOS AJUSTADOS (COMO EN LA IMAGEN) --- */
        .header {
            padding-bottom: 5px; 
        }

        .logo-title-wrapper {
            display: flex; 
            flex-direction: row; 
            align-items: center; 
            gap: 15px; 
            margin-bottom: 20px; 
            padding: 15px 0; /* Padding superior e inferior para el área del encabezado */
        }
        
        .title-group {
            flex-grow: 1; 
            text-align: left; 
        }

        .logo-cacao {
            width: 100px; 
            height: auto;
            min-width: 90px; /* Un poco más pequeño si es necesario */
            max-width: 120px; /* Asegura que no crezca demasiado */
        }
        
        h1 {
            color: var(--color-titulos-oscuro);
            font-size: 1.6em; /* Ajuste para que se parezca al tamaño de la imagen */
            font-weight: 700;
            margin: 0; 
            line-height: 1.2;
            text-align: left; 
        }

        /* El h2 ya no se usa en este encabezado, solo el h1 con el texto de la imagen */
        h2 { 
            display: none; /* Ocultar el h2 ya que no está en la imagen de referencia */
        }
        /* --- FIN AJUSTES DE CABECERA --- */

        /* Video Principal - AJUSTADO PARA ETIQUETA <video> VERTICAL */
        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 177.78%; /* 9:16 (vertical video) */
            height: 0;
            overflow: hidden;
            background-color: #000;
            margin-bottom: 15px; 
            border-radius: 8px;
        }

        .video-wrapper video {
            position: absolute; 
            top: 0;
            left: 0;
            width: 100%;
            height: 100%; 
            display: block;
            border: none;
            object-fit: cover; 
            cursor: pointer; 
        }
        
        /* Overlay del Botón de Play/Pause */
        #playPauseOverlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 20; 
            display: none; 
            justify-content: center;
            align-items: center;
            cursor: pointer;
            background-color: rgba(0, 0, 0, 0.2); 
        }

        #playPauseOverlay .play-icon {
            font-size: 4em;
            color: white;
            padding: 20px 25px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.5); 
            transition: transform 0.2s;
        }
        
        #playPauseOverlay:hover .play-icon {
            transform: scale(1.1);
        }

        /* Botón de Llamada a la Acción (CTA) */
        .cta-button {
            animation: none; 
            display: block; 
            width: 100%;
            padding: 15px 10px;
            background-color: #F8B400; 
            color: var(--color-cacao-oscuro);
            text-align: center;
            font-size: 1.1em;
            font-weight: 900; 
            text-decoration: none;
            border-radius: 8px; 
            margin-bottom: 30px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s;
            line-height: 1.3;
        }

        .cta-button:hover {
            background-color: #FFC107;
        }

        /* --- ESTILOS DE LA SECCIÓN DE RUTAS Y GALERÍA --- */
        .routes-section h3 {
            text-align: center;
            font-size: 1.4em;
            color: var(--color-cacao-oscuro);
            margin-top: 30px;
            margin-bottom: 20px;
        }
        
        .route-card {
            background-color: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            transition: transform 0.3s;
        }

        .route-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        /* Contenedor de la Galería */
        .route-card-image {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
        }
        
        /* Estilos de las imágenes de la galería */
        .gallery-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: none; 
            opacity: 0;
            transition: 0.8s ease-in-out; 
            object-fit: cover;
        }
        
        .gallery-image.active {
            display: block; 
            opacity: 1;
        }

        .route-card-content {
            padding: 20px;
        }
        
        .route-name {
            color: var(--color-cacao-oscuro);
            font-size: 1.4em;
            margin: 0 0 10px 0;
            line-height: 1.2;
        }

        .route-description {
            font-size: 0.95em;
            color: var(--color-texto);
            margin-bottom: 20px;
        }
        
        .route-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            margin-bottom: 20px;
        }

        .info-item {
            text-align: center;
            flex: 1;
            padding: 0 5px;
        }

        .info-label {
            font-size: 0.75em;
            color: var(--color-cacao-claro);
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 3px;
        }

        .info-value {
            font-size: 1.1em;
            font-weight: 700;
            color: var(--color-cacao-oscuro);
        }
        
        .includes-title {
            font-size: 1em;
            font-weight: 700;
            color: var(--color-secundario); 
            margin-bottom: 10px;
        }

        .includes-list {
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.9em;
        }

        .includes-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 5px;
        }
        
        .includes-list li::before {
            content: "\f00c"; 
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #4CAF50; 
        }
        
        .route-cta {
            margin-top: 20px;
        }
        
        .reserve-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 12px 0;
            background-color: #25D366; 
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: 700;
            cursor: pointer;
            gap: 10px;
            transition: background-color 0.3s;
        }
        
        .reserve-btn:hover {
            background-color: #1DA851;
        }
        
        /* Pie de Página */
        .footer {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid #ccc;
        }
        
        .logo-re { max-width: 100px; opacity: 0.8; }
        .social-links { margin-top: 20px; margin-bottom: 15px; padding: 15px 0; border-top: 1px solid #ddd; display: flex; justify-content: center; gap: 30px; align-items: center; }
        .social-links a { color: var(--color-cacao-oscuro); text-decoration: none; font-size: 1.8em; transition: color 0.3s, transform 0.3s; display: flex; align-items: center; justify-content: center; }
        .social-links a:hover { color: var(--color-cta); transform: scale(1.1); }
        .social-links a span { display: none; margin-left: 8px; font-size: 0.6em; font-weight: 700; }
        @media (min-width: 480px) { .social-links a span { display: inline-block; } .social-links a { font-size: 1.6em; } }
        
        /* Splash Screen */
        @keyframes fade-in-up { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }
        #splashScreen {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background-color: var(--color-fondo); z-index: 9999; 
            display: flex; flex-direction: column; justify-content: center;
            align-items: center; text-align: center; opacity: 1;
            transition: 3s ease-out; padding: 20px; box-sizing: border-box;
        }
        #splashScreen.fade-out { opacity: 0; visibility: hidden; }
        #splashScreen .splash-logo { max-width: 160px; margin-bottom: 25px; animation: fade-in-up 0.5s ease-out forwards; }
        #splashScreen h2, #splashScreen p { color: var(--color-cacao-oscuro); font-weight: 700; opacity: 0; animation: fade-in-up 0.5s ease-out forwards; transform: translateY(20px); }
        #splashScreen .line-1 { font-size: 1.3em; animation-delay: 0.8s; }
        #splashScreen .line-2 { font-size: 1.1em; color: var(--color-cta); margin-top: 15px; animation-delay: 1.5s; }
        #splashScreen .line-3 { font-size: 1.1em; color: var(--color-cta); animation-delay: 2.0s; }
        
        /* Botón de Audio */
        .audio-toggle {
            position: absolute; top: 250px; left: 50%; transform: translateX(-50%); 
            z-index: 30; 
            background-color: var(--color-cta); color: var(--color-cacao-oscuro);
            padding: 8px 15px; border: 2px solid var(--color-cacao-oscuro); border-radius: 20px; 
            font-size: 1em; font-weight: 700; cursor: pointer; display: flex;
            justify-content: center; align-items: center; gap: 8px; 
            transition: opacity 0.3s, transform 0.3s;
        }
        .audio-toggle:hover { background-color: #FFD740; }

        /* --- ESTILOS DEL MODAL DE RESERVA --- */
        .modal {
            display: none; 
            position: fixed; 
            z-index: 1000; 
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto; 
            background-color: rgba(0,0,0,0.6); 
            padding-top: 30px; 
        }

        .modal-content {
            background-color: #fefefe;
            margin: 5% auto; 
            padding: 30px 20px; 
            border: none; 
            width: 90%; 
            max-width: 400px; 
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); 
            animation-name: animatetop;
            animation-duration: 0.4s;
            position: relative; 
        }
        
        .modal-content h3 {
            color: var(--color-cacao-oscuro);
            font-size: 1.8em; 
            font-weight: 900;
            text-align: center;
            margin-top: 0;
            margin-bottom: 25px;
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .close-button {
            color: #5D4037; 
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 36px;
            font-weight: 300; 
        }

        .close-button:hover,
        .close-button:focus {
            color: var(--color-secundario);
            text-decoration: none;
            cursor: pointer;
        }
        
        .modal-content label {
            display: block;
            margin-top: 15px; 
            font-weight: 700;
            font-size: 1em;
            color: var(--color-cacao-oscuro);
        }
        
        .modal-content input[type="text"],
        .modal-content input[type="number"] {
            width: 100%; 
            padding: 12px;
            margin-top: 5px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
            font-size: 1em;
            text-indent: 5px; 
        }

        .modal-content input::placeholder {
            color: #bbb;
            font-weight: 300;
        }

        .radio-group {
            margin-top: 15px;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .radio-group label {
            font-weight: 400;
            font-size: 1em;
            color: var(--color-texto);
            display: flex;
            align-items: center;
            margin-top: 0;
        }

        .radio-group input[type="radio"] {
            margin-right: 8px;
            width: auto;
            height: auto;
        }
        
        .modal-content button[type="submit"] {
            display: block;
            width: 100%;
            padding: 15px 0;
            background-color: var(--color-cta); 
            color: var(--color-cacao-oscuro);
            border: none;
            border-radius: 8px;
            font-size: 1.2em;
            font-weight: 900;
            cursor: pointer;
            margin-top: 25px;
            transition: background-color 0.3s;
        }

        .modal-content button[type="submit"]:hover {
            background-color: #F8B400;
        }
        
        @keyframes animatetop {
            from {top: -300px; opacity: 0}
            to {top: 0; opacity: 1}
        }

