.contact-hero{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 0px;
    overflow: hidden;
    background-image:
        url("/images/fotos galeria 2026/Ingreso.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-hero .contenedor {
    position: relative;
    z-index: 2;
} 

.contact-info{
    padding:120px 0;
    background:#ffffff;
}

.contact-info__grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.contact-card{
    padding:35px;
    background:#fff;
    border-radius:20px;
    text-align:center;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    transition:.35s;
    border:1px solid #edf2f7;
}

.contact-card__icon{
    width:75px;
    height:75px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0056b3;
    color:#fff;
    border-radius:20px;
    font-size:2rem;
}

.contact-channels{
    padding:120px 0;
    background:#f8fafc;
}

.contact-channels__grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:60px;
}

.channel-card__icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    font-size:2.3rem;
}

.caracteristica-card p{
    margin-bottom:30px;
    line-height:1.8;
}

.contact-cta{
    padding:120px 0px;
    background: linear-gradient(135deg, #0074C8, #00AEEF);
    color:#fff;
    text-align: center;
}

.contact-cta__content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.contact-cta__subtitle{
    display:inline-block;
    padding:8px 20px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.9rem;
    margin-bottom:22px;
}

.contact-cta__title{
    font-size:3rem;
    margin-bottom:25px;
    line-height:1.2;
}

.contact-cta__description{
    max-width:760px;
    margin:0 auto 45px;
    line-height:1.9;
    font-size:1.15rem;
    opacity:.92;
}

.contact-cta__buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

