.banner{
    width: 100%;
    max-height: 300px;
    position: relative;
    overflow: hidden;
}
.banner-img__img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    filter: brightness(0.2);
    z-index: 1;
}
.banner-info{
    position: absolute;
    z-index: 11;
    color: white;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items:center;
    text-align: center;
    flex-direction: column;
    font-size: var(--fz-subtitle);
    font-family: var(--font-secundaria);
}
.banner-info__title{
    font-size: var(--fz-title);
}
.contacto{
    display: flex;
    min-height: 500px;
    gap: 20px;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 10px;
    flex-wrap: wrap;
}
.contact-item{
    width: 150px;
    height: 150px;
    background-color:var(--bg-primario);
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.377);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primario);
    font-size: 70px;
    cursor: pointer;
}
.contact-item:hover{
    background-color: var(--c-primario);
    color: white;
    box-shadow: 0 4px 10px 5px rgba(156, 0, 0, 0.377);
    font-size: 80px;
    transition: color, background-color,font-size ease-in 0.3s;
}
.contact-item:hover i{
     background-color:transparent;
     filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.342));
    }