.modulo-header {
    position: relative;
    height: 100vh;
    background: url('../img/eventos/eventos-bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 9 / 6;
    max-height: 960px;
    width: 100%;



        .header-background {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }


        .header-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            width: 100%;
            align-content: flex-start;
            flex-wrap: wrap;
            padding: 0 0 270px 100px;
        }

        .web-titulo{
            color: #FFF;
            font-family: "Neue Montreal";
            font-size: clamp(5rem, 3.2394rem + 5.6338vw, 10rem);
            font-style: normal;
            font-weight: 700;
            line-height: normal;
        }


}

/* Responsive Pôrtadas*/
@media (max-width: 768px) {

    .modulo-header{
        .header-content {
            justify-content: center;
            padding: 0 3rem;
            }
    }
    
}






/* MODULO CALENDARIO */

.modulo-day{
    margin: 200px 0 112px 0;

    .textos-day{
        display: flex;
        flex-direction: column;
        justify-content: flex-end;

        .bg-titulo-color{
            background: #FF0;
        }

        h2{
            color: #000;
            font-family: "Neue Montreal";
            font-size: clamp(1.875rem, 0.7746rem + 3.5211vw, 5rem);
            font-style: normal;
            font-weight: 700;
            line-height: normal;

            
        }

        p{
            color: #000;
            text-align: justify;
            font-family: "Neue Montreal";
            font-size: clamp(1rem, 0.7139rem + 0.9155vw, 1.8125rem);
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            width: 70%;
            margin: 20px 0
        }
    }

    .contenedor-img-day1 img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contenedor-img-day2{
        text-align: center;

        img{
            width: 100%;
            height: 100vh;
            object-fit: cover;
        }
    }

    .margenes-style{
        margin: 112px 0 206px 0;
    }
    

}


/* Responsive Pôrtadas*/
@media (max-width: 768px) {

    .modulo-day {
        margin: 100px 0 100px 0;

        .textos-day {
            p {
                width: 100%;
            }
        }

    .contenedor-img-day1{
        margin-bottom: 20px;
    }

    .contenedor-img-day2{
        margin-bottom: 20px;
    }

    .size-imagenes{
        padding: 0;
        margin-bottom: 20px;
    }

    .margenes-style {
        margin: unset;
    }

    }
    
    
}



/* Modulo CONTACTOS*/

.modulo-contacto {
    margin-bottom: 200px;

    .contenedor-elementos-contacto{
        display: flex;
        align-items: end;
        justify-content: space-between;
    }

    .titulo-contacto{
        color: #000;
        font-family: "Neue Montreal";
        font-size: clamp(1.875rem, 0.7746rem + 3.5211vw, 5rem);
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
        width: 60%;
    }

    .margenes-contactos{
        margin-top: 157px;
    }

    .contenedor-contacto{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 100px;

        h2{
            color: #000;
            text-align: center;
            font-family: "Neue Montreal";
            font-size: clamp(1rem, 0.7139rem + 0.9155vw, 1.8125rem);
            font-style: normal;
            font-weight: 700;
            line-height: normal;
        }

        p{
            color: #000;
            text-align: center;
            font-family: "Neue Montreal";
            font-size: clamp(1rem, 0.7139rem + 0.9155vw, 1.8125rem);
            font-style: normal;
            font-weight: 300;
            line-height: normal;
        }
    }

    .img-influencer{
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }

}

/* Responsive Pôrtadas*/
@media (max-width: 768px) {
    
    .modulo-contacto{
        margin-bottom: 100px;

        .margenes-contactos {
            margin-top: 50px;
        }

        .contenedor-elementos-contacto {
            display: flex;
            align-items: end;
            flex-direction: column;
        }

        .contenedor-contacto {
            margin-bottom: 30px;
        }

        .titulo-contacto {
            width: 60%;
            text-align: left !important;
        }

    }
}










/* Modulo FOOTER*/



.modulo-footer {
    color: #000;
    padding: 0 5rem;
    padding-bottom: 94px;


    .footer-logo {
        text-align: left;
    }

    .footer-logo img {
        margin-bottom: 25px;
    }

    .footer-logo p {
        color: #000;
        font-family: "Neue Montreal";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: -0.4px;
    }


    .footer-social {
        text-align: right;

    }

    .social-icons {
        display: flex;
        justify-content: flex-end;
        gap: 15px;
        margin-bottom: 10px;
    }


}


/* Responsive FOOTER*/
@media (max-width: 768px) {
    .modulo-footer{
        padding: 0px 1rem;

        .footer-logo img {
            width: 50%;
            margin-bottom: 31px;
        }

        .footer-social {
            text-align: right;
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;

        }

        .social-icons {
            gap: 10px;
            margin: 30px 0 30px 0;
        }

    }
}