.elementor-778 .elementor-element.elementor-element-9372da0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:100px;--padding-bottom:44px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for container, class: .elementor-element-9372da0 *//* =========================
   EVENTOS
========================= */

#eventos{
    padding: 100px 20px;
    background: #f7eff2;
}

#eventos .eventos-header{
    max-width: 850px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;
}

#eventos .subtitulo{
    display: inline-block;
    color: #ff8a00;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

#eventos h2{
    font-size: 58px;
    line-height: 1.1;
    color: #e64781;
    margin-bottom: 25px;
    font-weight: 700;
}

#eventos .eventos-header p{
    font-size: 20px;
    line-height: 1.8;
    color: #4d4d4d;
}

/* GRID */

#eventos .eventos-grid{
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */

#eventos .evento-card{
    background: #FFF;
    border-radius: 35px;
    overflow: hidden;

    box-shadow: 0 20px 40px rgba(0,0,0,0.06);

    transition: 0.3s;
}

#eventos .evento-card:hover{
    transform: translateY(-10px);
}

/* IMAGEN */

#eventos .evento-card figure{
    height: 320px;
    overflow: hidden;
}

#eventos .evento-card figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: 0.5s;
}

#eventos .evento-card:hover figure img{
    transform: scale(1.08);
}

/* CONTENIDO */

#eventos .evento-info{
    padding: 35px;
    position: relative;
}

#eventos .evento-icono{
    width: 80px;
    height: 80px;

    border-radius: 50%;

    background: linear-gradient(135deg,#ff4f8b,#ff9800);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #FFF;
    font-size: 30px;

    margin-top: -75px;
    margin-bottom: 25px;

    box-shadow: 0 15px 30px rgba(230,71,129,0.25);
}

#eventos .evento-info h3{
    font-size: 36px;
    line-height: 1.1;
    color: #e64781;
    margin-bottom: 20px;
}

#eventos .evento-info p{
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 17px;
}

/* LISTA */

#eventos .evento-info ul{
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

#eventos .evento-info ul li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;

    color: #444;
    font-size: 16px;
}

#eventos .evento-info ul li::before{
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: #e64781;
    font-weight: bold;
}

/* BOTON */

#eventos .btn-evento{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 30px;

    border-radius: 50px;

    background: linear-gradient(135deg,#ff4f8b,#ff9800);

    color: #FFF;
    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
}

#eventos .btn-evento:hover{
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(230,71,129,0.25);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 1024px){

    #eventos .eventos-grid{
        grid-template-columns: repeat(2,1fr);
    }

    #eventos h2{
        font-size: 46px;
    }

}

@media(max-width: 767px){

    #eventos{
        padding: 70px 20px;
    }

    #eventos .eventos-grid{
        grid-template-columns: 1fr;
    }

    #eventos h2{
        font-size: 38px;
    }

    #eventos .eventos-header p{
        font-size: 17px;
    }

    #eventos .evento-card figure{
        height: 260px;
    }

    #eventos .evento-info{
        padding: 30px;
    }

    #eventos .evento-info h3{
        font-size: 30px;
    }

}/* End custom CSS */