/*=========================================================
HALL DE ENTRADA
=========================================================*/

#hall-campus{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:100px 20px;

    background:linear-gradient(180deg,#ffffff 0%,#f5f8fc 100%);

}


.hall-contenedor{

    max-width:900px;

    width:100%;

    text-align:center;

}


.hall-etiqueta{

    display:inline-block;

    padding:8px 18px;

    background:#0A4F9E;

    color:#FFF;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

}


#hall-campus h2{

    font-size:48px;

    color:#0A4F9E;

    margin-bottom:25px;

}


#hall-campus p{

    font-size:22px;

    line-height:1.7;

    color:#555;

    max-width:760px;

    margin:auto;

}


.hall-botones{

    margin-top:60px;

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}


.btn-campus{

    background:#0A4F9E;

    color:#FFF;

    padding:18px 40px;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;

    font-weight:bold;

    transition:.30s;

}


.btn-campus:hover{

    transform:translateY(-4px);

}


.btn-conocer{

    border:2px solid #0A4F9E;

    color:#0A4F9E;

    padding:18px 40px;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;

    font-weight:bold;

    transition:.30s;

}


.btn-conocer:hover{

    background:#0A4F9E;

    color:#FFF;

}


#hall-campus small{

    display:block;

    margin-top:45px;

    color:#777;

    font-size:15px;

}