/* --------- header__container -------------- */


.header__evento{
    container-type: inline-size;
    container-name: header;
    position: relative;
    z-index: 2;
}

.header__background-photos{
    max-width: 1300px;
    width: 100%;
    margin-bottom: 0px;
    height: 60vh;
}

.header__background-photos img{
    width: 100%;
    height: 100%;
    max-height: 1200px;
    object-fit: cover;
}

@container header (min-width:500px){
    .header__background-photos{
        max-width: 1300px;
        width: 100%;
        margin-bottom: 0px;
        height: 80vh;
    }
    
    .header__background-photos img{
        width: 100%;
        height: 100%;
        max-height: 1200px;
        object-fit: cover;
    }
}


/* ---------- inicio evento__expositores ------------ */


.evento{
    display: flex;
    flex-direction: column;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    container-type: inline-size;
    container-name: evento;
    background-color: #fff;
    overflow: hidden;
}

.evento__expositores-container{
    background-color: #5881be;
}

.evento__expositores{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    max-width: 100%;
    padding: 0 10px 20px 10px;
    gap: 20px;
    position: relative;
    z-index: 1;
    max-width: 1300px;
}

@keyframes aparicionFondo{
    from{
        transform: translateX(100%);
        opacity: 0;
    }

    to{
        transform: translateX(0%);
        opacity: 1;
    }
}

.evento__expositores-title{
    padding: 10px;
    background-color: #ff904d;
    width: 110%;
    text-align: center;
    color: #fff;
    animation: aparicionArriba 1.5s 1 both;
    z-index: 20;
}

@keyframes aparicionArriba{
    from{
        transform: translateY(-100%);
        opacity: 0;
    }

    to{
        transform: translateY(0%);
        opacity: 1;
    }
}

.evento__expositores-img{
    max-width: 600px;
    width: 100%;
    padding: 20px 0;
    transform: translateY(40%);
    transition: transform 1s ease;
}

.evento__expositores-img.visible{
    transform: translateY(0);
}

/* .evento__expositores-grid{
    display: grid;
    grid-template-columns: repeat(1, minmax(200px, 1fr));
    justify-content: center;
    justify-items: center;
    align-content: center;
    width: 100%;
    z-index: 20;
    gap: 20px;
    padding: 20px 0;
}

.evento__expositores-grid img{
    width: 100%;
    max-width: 250px;
    transition: transform 1s ease, opacity 2s ease;
}

.evento__expositores-grid img:nth-child(odd){
    transform: translateX(100px);
    opacity: 0;
}

.evento__expositores-grid img:nth-child(even){
    transform: translateX(-100px);
    opacity: 0;
}

.evento__expositores-grid img.visible{
    transform: translateX(0);
    opacity: 1;
} */


/* -------- evento__expositores queries ------- */

/* @container evento (min-width:650px){

    .evento__expositores-grid{
        display: grid;
        grid-template-columns: repeat(2, minmax(125px, 300px));
        grid-template-areas: "img1 img1"
        "img2 img3"
        "img4 img5";
        justify-content: space-evenly;
        height: auto;
        gap: 20px 0;
    }

    .evento__expositores-grid img{
        width: 100%;
        max-width: 300px;
        transition: transform 1s ease, opacity 2s ease;
    }

    .img1{
        grid-area: img1;
    }
    .img2{
        grid-area: img2;
    }
    .img3{
        grid-area: img3;
    }
    .img4{
        grid-area: img4;
    }
    .img5{
        grid-area: img5;
    }

    .evento__expositores-title{
        font-size: 1.9rem;
    }


} */

/* -------- Fin evento__expositores ------- */

/* ------- Inicio evento__us --------- */

/* .evento__us{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    max-width: 100%;
    gap: 30px;
    padding: 0 10px 20px 10px;
    position: relative;
    z-index: 1;
    max-width: 1300px;
    box-shadow: 0 0 10px #0003;
    background-color: #fff;
}

.evento__us-title{
    padding: 10px;
    background-color: #07134e;
    color: #fff;
    width: 110%;
    text-align: center;
    z-index: 20;
}



.evento__us-grid{
    display: grid;
    grid-template-columns: repeat(1, minmax(200px, 600px));
    width: 100%;
    justify-content: center;
    justify-items: center;
    align-items: center;
    gap: 30px;
}

.evento__us-grid-item{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 30px;
    color: #07134e;
    text-align: justify;
    text-wrap: pretty;
}

.evento__us-grid-item p{
    margin: 0;    
    padding: 0 10px;
}

.evento__us-grid-item img{
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 9px;
    box-shadow: 0 0 10px #0005;
    max-height: 300px;
    opacity: 0;
    transition: opacity 1s ease, transform .8s ease;
}

.evento__us-grid-item:nth-child(1) img {
    transform: translateX(100%);
}

.evento__us-grid-item:nth-child(2) img {
    transform: translateX(-100%);
}

.evento__us-grid-item img.visible {
    transform: translateX(0);
    opacity: 1;
}

.evento__us-grid-item:nth-child(3){
    transform: translateY(100%);
    transition: opacity 1.5s ease, transform 1s ease;
    opacity: 0;
}

.evento__us-grid-item:nth-child(3).visible{
    transform: translateY(0);
    opacity: 1;
} */

/* --------- evento__us queries -------- */

/* @container evento (min-width:56.25rem){

    .evento__us-grid{
        grid-template-columns: repeat(1, minmax(500px, 1fr));
        gap: 40px;
        padding: 0 15px 30px 15px;
    }

    .evento__us-grid::after{
        content: '';
        position: absolute;
        bottom: 20px;
        width: 80%;
        border-bottom: 3px solid #07134e;        
    }

    .evento__us-grid::before{
        content: '';
        position: absolute;
        bottom: 10px;
        width: 60%;
        border-bottom: 3px solid #07134e;        
    }

    .evento__us-grid-item{
        flex-direction: row;
        justify-content: space-evenly;
        gap: 10px;
        flex: 1;
        line-height: 24px;
    }

    .evento__us-grid-item:nth-child(2){
        flex-direction: row-reverse;
        justify-content: space-evenly;
        gap: 10px;
    }

    .evento__us-grid-item p{
        flex: 1;
        padding: 0 15px;
    }

    .evento__us-grid-item img{
        width: 0;
        aspect-ratio: 16 / 9;
        border-radius: 9px;
        box-shadow: 0 0 10px #0005;
        max-height: 300px;
        flex: 1;
        mix-blend-mode: multiply;
    }

    .evento__us-grid-item:last-child p{
        max-width: 700px;
    }
    
} */

.evento__topics-title{
    padding: 10px;
    background-color: #FFF;
    width: 110%;
    text-align: center;
    color: #ff904d;
    z-index: 20;
}

.evento__topics-grid{
    display: grid;
    grid-template-columns: repeat(1, minmax(250px, 450px));
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    gap: 30px;
    padding: 0 0 30px 0;
}

.evento__topics-grid-item{
    display: flex;
    align-items: center;
    justify-self: center;
    width: 100%;
    box-shadow: 0 0 2 #0005;
}

.evento__topics-grid-item:nth-child(odd){
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.evento__topics-grid-item:nth-child(even){
    transform: translateX(100%);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.evento__topics-grid-item.visible{
    opacity: 1;
    transform: translateX(0);
}

.evento__topics-grid-item img{
    width: 100%;
    object-fit: cover;
}

@container evento (min-width:600px){
    .evento__topics-grid{
        grid-template-columns: repeat(2, minmax(250px, 500px));
        justify-content: center;
        gap: 45px;
        padding: 15px 0 30px 0;
    }
}

/* --------- Fin evento__us ---------- */

/* ---------------- evento__panel1 */

.evento__panel1{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    max-width: 100%;
    padding: 0 10px 20px 10px;
    gap: 20px;
    position: relative;
    z-index: 1;
    max-width: 1300px;
}

.evento__panel1-title{
    padding: 10px;
    background-color: #ff904d;
    width: 110%;
    text-align: center;
    color: #fff;
    z-index: 20;
}

.imgPanel1{
    padding: 20px 0;
    width: 100%;
    max-width: 450px;
    opacity: 0;
    transition: opacity 1s ease;
}

.imgPanel1.visible{
    opacity: 1;
}

.evento__panel1-expositores{
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 45px;
    padding: 0 10px;
}

.evento__panel1-expositores img{
    min-width: 250px;
    width: 100%;
    max-width: 450px;
    transform: translateY(40%);
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.evento__panel1-expositores img.visible{
    transform: translateY(0);
    opacity: 1;
}

/* --------------- footer__extra ------------ */

.evento__footer{
    box-shadow: 0 0 10px #0003;
    z-index: 1;
}

