/* Contenedor principal */
.hero-section {
    position: relative;
    height: 100vh;
    /* Ocupa toda la pantalla */
    min-height: 600px;
    overflow: hidden;
}

.hero-slider,
.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Efecto Ken Burns (Zoom suave) */
.slide-item {
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 6s linear;
    /* Más largo que el cambio de slide */
}

/* Cuando la slide está activa, se agranda */
.slick-active .slide-item {
    transform: scale(1.15);
}

/* Capa oscura para que el texto sea legible */
.slide-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Forzar que el contenido esté arriba */
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
}