        /* Estilos globales para el body, hero, títulos, tarjetas de servicio y espacios */
        body {
            font-family: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        .hero-bg {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://placehold.co/1920x1080/333333/555555?text=Ambiente+Nocturno');
            background-size: cover;
            background-position: center;
        }

        .section-title {
            text-align: center;
            font-size: xx-large;
            margin-bottom: 25px;
            font-weight: bold;
            color: #1f2937;
            /* Color para los títulos de sección */
        }

        .service-card {
            background-color: #ffffff;
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: box-shadow 0.3s ease-in-out;
        }

        .service-card:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .venue-folder-card {
            background-color: #ffffff;
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease-in-out;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 280px;
            position: relative;
            /* Necesario para posicionar el fondo */
            overflow: hidden;
            /* Para que el fondo no se salga de los bordes redondeados */
            text-decoration: none;
            /* Asegura que el enlace no tenga subrayado */
        }

        .venue-folder-card:hover {
            transform: translateY(-5px);
        }

        /* Estilo para la imagen de fondo de la tarjeta */
        .venue-folder-card-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            filter: brightness(0.4) blur(3px);
            /* Oscurecer y difuminar la imagen */
            z-index: 0;
            /* Asegurarse de que el texto esté por encima */
            transition: filter 0.3s ease-in-out;
        }

        .venue-folder-card:hover .venue-folder-card-background {
            filter: brightness(0.6) blur(2px);
            /* Ligero cambio al pasar el ratón */
        }

        .venue-folder-card h3,
        .venue-features p,
        .venue-folder-card .view-more-button {
            position: relative;
            /* Asegurarse de que el texto y el botón estén por encima del fondo */
            z-index: 1;
            color: #ffffff;
            /* Color del texto para contrastar con el fondo oscuro */
        }

        .venue-folder-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .venue-features p {
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
        }

        .venue-features p strong {
            color: #f97316;
            /* Naranja para los strong en las características */
        }

        .contact-info a {
            color: #f97316;
            /* Naranja para enlaces de contacto */
            transition: color 0.3s ease-in-out;
        }

        .contact-info a:hover {
            color: #ea580c;
            /* Naranja más oscuro al pasar el ratón */
        }

        /* Estilos para el botón "Ver más" */
        .view-more-button {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            background-color: #f97316;
            /* Naranja */
            color: white;
            border-radius: 0.375rem;
            /* rounded-md */
            font-weight: 600;
            /* font-semibold */
            text-decoration: none;
            /* Quitar subrayado del enlace */
            transition: background-color 0.3s ease-in-out;
        }

        .view-more-button:hover {
            background-color: #ea580c;
            /* Naranja más oscuro al pasar el ratón */
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f9fafb;
        }

        .section-title {
            text-align: center;
            font-size: xx-large;
            margin-bottom: 25px;
            font-weight: bold;
            color: #1f2937;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            background-color: #f97316;
            color: white;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            transition: background-color 0.3s ease-in-out;
            margin-top: 2rem;
            text-decoration: none;
        }

        .back-button:hover {
            background-color: #ea580c;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
        }

        .feature-item svg {
            color: #f97316;
            margin-right: 0.5rem;
        }

        /* Estilos para el modal de imagen */
        .image-modal {
            display: none;
            /* Oculto por defecto */
            position: fixed;
            z-index: 100;
            /* Por encima de todo */
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            /* Habilitar scroll si la imagen es muy grande */
            background-color: rgba(0, 0, 0, 0.9);
            /* Fondo oscuro semitransparente */
            justify-content: center;
            align-items: center;
            flex-direction: column;
            /* Para centrar contenido verticalmente */
        }

        .image-modal-content {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            /* Asegura que la imagen se ajuste sin recortarse */
        }

        .close-button {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
        }

        .close-button:hover,
        .close-button:focus {
            color: #bbb;
            text-decoration: none;
            cursor: pointer;
        }

        /* Estilos para los botones de navegación del modal */
        .modal-nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 24px;
            user-select: none;
            /* Evita selección de texto */
            z-index: 101;
            /* Por encima de la imagen */
        }

        .modal-nav-button:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .prev-button {
            left: 20px;
        }

        .next-button {
            right: 20px;
        }

        /* Estilos para la transición de las alertas */
        .feedback-alert {
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }
        .feedback-alert.hidden {
            opacity: 0;
            transform: translateY(-20px);
        }

        #otroEventoContainer {
            transition: all 0.3s ease-in-out;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
        }
        #otroEventoContainer.visible {
            max-height: 100px;
            opacity: 1;
        }
        /* --- CORRECCIÓN DE ESTILO --- */
        /* Forzar el color de acento naranja en los checkboxes marcados */
        input[type="checkbox"]:checked {
            accent-color: #EA580C; /* Este es el color naranja-600 de Tailwind */
        }