/**
 * Hero Section - Estilos para Escritorio
 * Configuración del carrusel para pantallas grandes
 */

/* Carrusel de fondo del hero - Visible en escritorio */
.hero-carousel {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-carousel-slide.active {
    opacity: 1;
}

/* Imagen fija - Ocultar en escritorio */
.hero-fixed-background {
    display: none;
}
