    /* Estilos específicos para la sección del Hero Slider */
    .hero-slider-section {
        position: relative;
        width: 100%;
        height: 100vh; /* Ocupa toda la altura de la pantalla */
        overflow: hidden;
        color: white;
    }

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
        z-index: 1;
    }

    .hero-slide.active {
        opacity: 1;
        z-index: 2;
    }

    /* Superposición oscura para mejorar la legibilidad del texto */
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Oscurece la imagen */
        z-index: 3;
    }

    .hero-content {
        position: relative;
        z-index: 4;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        text-align: center;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 3.5rem; /* Tamaño de fuente grande */
        font-weight: bold;
        margin-bottom: 20px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }

    .hero-button {
        padding: 15px 30px;
        background-color: var(--primary-color); /* Usamos el color primario de tu config */
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: bold;
        border: 2px solid white;
        border-radius: 5px;
        transition: background-color 0.3s, transform 0.3s;
    }

    .hero-button:hover {
        background-color: var(--secondary-color);
        color: var(--primary-color);
        border-color: var(--primary-color);
        transform: scale(1.05);
    }

    /* Responsive para el título en móviles */
    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2.5rem;
        }
        .hero-button {
            padding: 12px 25px;
            font-size: 1rem;
        }
    }
