/*
==========================================================
Eventos
==========================================================
*/

.events{

    padding:120px 0;

    background:#F8F5EF;

}

.events .section-header{

    text-align:center;

    margin-bottom:70px;

}

.events-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.event-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.event-card:hover{

    transform:translateY(-10px);

}

.event-image{

    position:relative;

}

.event-image img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.event-date{

    position:absolute;

    top:20px;

    left:20px;

    width:70px;

    height:70px;

    background:var(--color-primary);

    border-radius:18px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:#fff;

}

.event-date strong{

    font-size:26px;

    line-height:1;

}

.event-date span{

    font-size:.8rem;

    letter-spacing:1px;

}

.event-content{

    padding:35px;

}

.event-content h3{

    margin-bottom:20px;

}

.event-content p{

    margin-bottom:30px;

}