body{
    background:#f4f6f9;
    font-family:'Montserrat', sans-serif;
    color:#2c3e50;
}

/* ===================================
   HEADER
==================================== */

.top-header{
    background:
            linear-gradient(135deg,#0b2c52,#124b8a);
    padding:60px 0;
    color:white;
    margin-bottom:40px;
}

.top-header h1{
    font-weight:700;
    margin-bottom:12px;
}

.top-header p{
    opacity:.9;
    margin-bottom:0;
}

/* ===================================
   FILTROS
==================================== */

.filter-box{
    background:white;
    border-radius:18px;
    padding:25px;
    margin-bottom:40px;
    box-shadow:0 4px 18px rgba(0,0,0,.05);
}

.form-control{
    height:48px;
    border-radius:12px;
    border:1px solid #dbe2ea;
}

/* ===================================
   TITULOS
==================================== */

.section-title{
    margin-bottom:25px;
}

.section-title h2{
    font-size:1.8rem;
    font-weight:700;
    color:#0b2c52;
    margin-bottom:5px;
}

.section-title p{
    color:#7b8794;
    margin-bottom:0;
}

/* ===================================
   CARD GENERAL
==================================== */

.academic-card{
    border:none;
    border-radius:18px;
    overflow:hidden;
    background:white;
    box-shadow:0 4px 18px rgba(0,0,0,.06);
    transition:.3s;
    height:100%;
}

.academic-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 24px rgba(0,0,0,.10);
}

.academic-header{
    display:flex;
    align-items:center;
    padding:18px;
    border-bottom:1px solid #eef2f6;
}

.academic-photo{
    width:75px;
    height:75px;
    object-fit:cover;
    border-radius:14px;
    margin-right:15px;
    border:3px solid #eef2f6;
}

.academic-name{
    font-size:1rem;
    font-weight:700;
    color:#0b2c52;
    margin-bottom:4px;
}

.academic-role{
    color:#124b8a;
    font-size:.88rem;
    font-weight:600;
}

.badge-cargo{
    display:inline-block;
    margin-top:7px;
    background:#e8f1ff;
    color:#0b57d0;
    padding:5px 12px;
    border-radius:30px;
    font-size:.74rem;
    font-weight:600;
}

.academic-body{
    padding:18px;
}

.academic-item{
    margin-bottom:10px;
    color:#51606f;
    font-size:.92rem;
}

.academic-item i{
    width:22px;
    color:#124b8a;
}

.study-title{
    font-weight:700;
    color:#0b2c52;
    margin-top:18px;
    margin-bottom:10px;
    font-size:.92rem;
}

.study-list{
    margin-bottom:0;
    padding-left:18px;
}

.study-list li{
    margin-bottom:6px;
    font-size:.88rem;
}

/* ===================================
   DECANO
==================================== */

.dean-card{
    margin-bottom:45px;
}

.dean-card .academic-photo{
    width:95px;
    height:95px;
}

.dean-card .academic-name{
    font-size:1.3rem;
}

.bg-8{
    background:
            linear-gradient(135deg,#046cae,#0faec0);
}
/* ===================================
   FOOTER
==================================== */

footer{
    background:#445267;
    color:white;
    margin-top:60px;
    padding:30px 0;
}

footer h5{
    font-weight:700;
}

@media(max-width:768px){

    .academic-header{
        align-items:flex-start;
    }

    .academic-photo{
        width:65px;
        height:65px;
    }

}