.hero-comollegar{
    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;
}


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

.directions{
    padding:120px 0;
    background:#f7f9fc;
}

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

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

.direction-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(15,23,42,.15);
}

.direction-card__icon{
    width:70px;
    height:70px;
    margin-bottom:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:#0056b3;
    color:#fff;
    font-size:2rem;
}

.direction-card h3{
    margin-bottom:15px;
    color:#0f172a;
    font-size:1.3rem;
}

.direction-card p{
    margin:0;
    color:#64748b;
    line-height:1.8;
}

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

.location-cta h2{
    font-size:2.6rem;
    margin-bottom:20px;
}

.location-cta p{
    max-width:760px;
    margin:0 auto 40px;
    line-height:1.8;
    opacity:.9;
}

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

.btn-primary_cta{
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    background: white;
    color: #0086D9;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.btn-primary_cta:hover{
    transform:translateY(-5px);
}

@media (max-width:1024px){

    .location-cta{
        padding:90px 20px;
    }
    
    .location-cta h2{
        font-size:2.3rem;
        line-height:1.25;
    }
    
    .location-cta p{
        max-width:700px;
        font-size:18px;
        margin-bottom:35px;
    }
    
    .location-cta__buttons{
        gap:18px;
    }
 }
 
@media (max-width:768px){
    .location-cta{
        padding:70px 20px;
    }
    
    .location-cta h2{
        font-size:clamp(2rem,8vw,2.7rem);
        line-height:1.2;
        margin-bottom:20px;
    }
    
    .location-cta p{
        font-size:16px;
        line-height:1.8;
        margin-bottom:35px;
    }
    
    .location-cta__buttons{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }
    
    .btn-primary_cta,
    .location-cta .btn-secondary{
        width:100%;
        max-width:320px;
        min-width:auto;
        min-height:56px;
        display:flex;
        align-items:center;
        justify-content:center;
        text-align:center;
        padding:16px 24px;
    }
}
