/* ========================================
   HERO GLOBAL - BASE TÉCNICA
======================================== */

.hero {
    position: relative;
    overflow: hidden;
    background: #F4F4F2;
}


/* ========================================
   CAPA DE CONTENIDO
======================================== */

.hero-content {
    position: relative;
    z-index: 2;
}


/* ========================================
   CAPA DE IMAGEN
======================================== */

.hero-image {
    position: relative;
    z-index: 1;
}


/* ========================================
   SLIDES
======================================== */

.hero-slide {
    position: absolute;
    inset: 0;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    opacity: 0;

    transition: opacity .8s ease;
}

.hero-slide.active {
    opacity: 1;
}


/* ========================================
   LAYOUT GLOBAL
======================================== */

.hero-layout {
    width: min(1290px, 90%);
    margin: 0 auto;
}