
/*======================================================
    UNIVERSIDAD
    STYLE.CSS
======================================================*/
/*==========================
    GOOGLE FONT
==========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
/*==========================
    VARIABLES
==========================*/
:root{
    --primary:#0d3b66;
    --secondary:#1d70b8;
    --accent:#f4b400;
    --white:#ffffff;
    --light:#f8f9fa;
    --gray:#6c757d;
    --dark:#202124;
    --shadow:0 10px 35px rgba(0,0,0,.08);
    --radius:16px;
    --transition:.35s;
}
/*==========================
    RESET
==========================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    color:var(--dark);
    overflow-x:hidden;
    padding-top:80px
}
a{
    text-decoration:none;
}
img{
    max-width:100%;
}
/*==========================
    NAVBAR
==========================*/
.navbar{
    background:#fff;
    min-height:90px;
    transition:.4s;
    box-shadow:var(--shadow);
    z-index:999;
}
.navbar.scrolled{
    min-height:75px;
    background:rgba(255,255,255,.97);
    backdrop-filter:blur(12px);
}
/*==========================
    LOGO
==========================*/
.navbar-brand{
    font-size:30px;
    font-weight:800;
    color:var(--primary)!important;
    letter-spacing:1px;
    transition:var(--transition);
}
.navbar-brand:hover{
    transform:scale(1.03);
}
/*==========================
    MENU
==========================*/
.navbar-collapse{
    justify-content:center;
}
.navbar-nav{
    gap:12px;
    align-items:center;
}
.nav-item{
    position:relative;
}
/*==========================
    LINKS
==========================*/
.nav-link{
    font-size:16px;
    font-weight:500;
    color:#404040!important;
    padding:14px 18px!important;
    transition:.3s;
    position:relative;
}
/*==========================
    LINEA ANIMADA
==========================*/
.nav-link::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:6px;
    width:0;
    height:3px;
    border-radius:30px;
    background:var(--secondary);
    transform:translateX(-50%);
    transition:.35s;
}
.nav-link:hover{
    color:var(--secondary)!important;
}
.nav-link:hover::after{
    width:70%;
}
.nav-link.active{
    color:var(--secondary)!important;
}
.nav-link.active::after{
    width:70%;
}
/*==========================
    DROPDOWN
==========================*/
.dropdown-menu{
    border:none;
    border-radius:18px;
    padding:12px;
    min-width:280px;
    margin-top:18px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
    animation:menuFade .25s;
}
.dropdown-item{
    border-radius:12px;
    padding:12px 18px;
    transition:.25s;
    font-size:15px;
    font-weight:500;
}
.dropdown-item:hover{
    background:var(--secondary);
    color:#fff;
    transform:translateX(8px);
}
/*==========================
    SUBMENU
==========================*/
.dropdown-submenu{
    position:relative;
}
.dropdown-submenu>.dropdown-menu{
    left:100%;
    top:0;
    display:none;
    margin-left:8px;
}
.dropdown-submenu:hover>.dropdown-menu{
    display:block;
}
/*==========================
    BOTON PORTAL
==========================*/
.btn-alumnos{
    background:linear-gradient(135deg,#0d6efd,#0048ff);
    color:white;
    border-radius:40px;
    padding:12px 28px;
    font-weight:600;
    transition:.35s;
    box-shadow:0 8px 25px rgba(13,110,253,.25);
}
.btn-alumnos:hover{
    color:white;
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(13,110,253,.35);
}
/*==========================
    HAMBURGUESA
==========================*/
.navbar-toggler{
    border:none;
    box-shadow:none!important;
}
/*==========================
    ANIMACIONES
==========================*/
@keyframes menuFade{
    from{
        opacity:0;
        transform:translateY(-12px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/*==========================
    UTILIDADES
==========================*/
.section-title{
    font-size:40px;
    font-weight:700;
    color:var(--primary);
}
.section-subtitle{
    color:var(--gray);
    font-size:18px;
}
/*======================================================
    HERO
======================================================*/
.hero{
    min-height:650px;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#0d3b66 0%,#1d70b8 100%);
    color:#fff;
    overflow:hidden;
    position:relative;
}
.hero::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-250px;
    right:-150px;
}
.hero::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.03);
    bottom:-150px;
    left:-80px;
}
.hero h1{
    font-size:60px;
    font-weight:700;
    line-height:1.2;
}
.hero p{
    font-size:20px;
    margin-top:25px;
    color:rgba(255,255,255,.85);
}
.hero .btn{
    margin-top:35px;
}
/*======================================================
    BOTONES
======================================================*/
.btn-primary{
    border:none;
    border-radius:40px;
    padding:14px 35px;
    font-weight:600;
    background:linear-gradient(135deg,#1d70b8,#0d3b66);
    transition:.35s;
}
.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(13,59,102,.35);
}
.btn-outline-primary{
    border-radius:40px;
    font-weight:600;
    padding:13px 32px;
}
/*======================================================
    SECCIONES
======================================================*/
section{
    padding:80px 0;
}
.section-title{
    text-align:center;
    margin-bottom:15px;
}
.section-subtitle{
    text-align:center;
    margin-bottom:60px;
}
/*======================================================
    CARDS
======================================================*/
.card{
    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}
.card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,0,0,.12);
}
.card img{
    transition:.5s;
}
.card:hover img{
    transform:scale(1.05);
}
.card-body{
    padding:30px;
}
.card-title{
    font-weight:600;
    color:#0d3b66;
}
.card-text{
    color:#6c757d;
}
/*======================================================
    OFERTA ACADÉMICA
======================================================*/
.oferta-card{
    background:#fff;
    border-radius:20px;
    padding:45px;
    text-align:center;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}
.oferta-card:hover{
    transform:translateY(-10px);
}
.oferta-card i{
    font-size:60px;
    color:#1d70b8;
    margin-bottom:20px;
}
.oferta-card h4{
    color:#0d3b66;
    font-weight:600;
}
/*======================================================
    FORMULARIOS
======================================================*/
.form-control,
.form-select{
    border-radius:12px;
    border:1px solid #d9d9d9;
    padding:12px 15px;
    transition:.3s;
}
.form-control:focus,
.form-select:focus{
    box-shadow:none;
    border-color:#1d70b8;
}
/*======================================================
    MODAL CONTACTO
======================================================*/
.modal-content{
    border:none;
    border-radius:20px;
    overflow:hidden;
}
.modal-header{
    border:none;
    padding:22px 30px;
}
.modal-title{
    font-weight:600;
}
.modal-body{
    padding:35px;
}
.modal-body h4{
    color:#0d3b66;
}
.modal-body h6{
    font-weight:600;
}
.modal-body iframe{
    border-radius:15px;
}
/*======================================================
    FOOTER
======================================================*/
footer{
    background:#0d3b66;
    color:white;
    padding:60px 0 30px;
}
footer h5{
    font-weight:700;
    margin-bottom:20px;
}
footer p{
    opacity:.85;
}
footer a{
    color:white;
    transition:.3s;
}
footer a:hover{
    color:#f4b400;
}
.footer-copy{
    margin-top:30px;
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:20px;
    font-size:14px;
    text-align:center;
}
/*======================================================
    SOMBRAS
======================================================*/
.shadow-custom{
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}
/*======================================================
    TRANSICIONES
======================================================*/
.transition{
    transition:.35s;
}
/*======================================================
    BOTÓN FLOTANTE WHATSAPP
======================================================*/
.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    z-index:9999;
    text-decoration:none;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
    transition:.35s;
    animation:pulse 2s infinite;
}
.whatsapp:hover{
    color:#fff;
    transform:scale(1.1);
    animation:none;
}
@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.45);
    }
    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}
/*======================================================
    IMÁGENES
======================================================*/
img{
    max-width:100%;
    height:auto;
}
/*======================================================
    RESPONSIVE
======================================================*/
@media (max-width:991px){
    .navbar{
        padding:12px 0;
    }
    .navbar-collapse{
        margin-top:20px;
        background:#fff;
        border-radius:18px;
        padding:20px;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
    }
    .navbar-nav{
        gap:0;
        align-items:flex-start;
    }
    .nav-item{
        width:100%;
    }
    .nav-link{
        width:100%;
        padding:14px 10px !important;
    }
    .nav-link::after{
        display:none;
    }
    .btn-alumnos{
        margin-top:20px;
        width:100%;
        text-align:center;
    }
    /* HERO */
    .hero{
        min-height:auto;
        padding:80px 0;
        text-align:center;
    }
    .hero h1{
        font-size:40px;
    }
    .hero p{
        font-size:18px;
    }
    /* SUBMENÚ */
    .dropdown-submenu>.dropdown-menu{
        position:static;
        display:block;
        margin-left:0;
        margin-top:0;
        box-shadow:none;
        border-left:3px solid var(--secondary);
        padding-left:10px;
    }
    .dropdown-menu{
        width:100%;
        box-shadow:none;
        border-radius:12px;
        margin-top:0;
    }
    .dropdown-item{
        white-space:normal;
    }
    /* MODAL */
    .modal-body{
        padding:20px;
    }
}
@media (max-width:768px){
    section{
        padding:60px 0;
    }
    .section-title{
        font-size:32px;
    }
    .section-subtitle{
        font-size:16px;
    }
    .hero h1{
        font-size:34px;
    }
    .hero p{
        font-size:16px;
    }
    .card{
        margin-bottom:25px;
    }
    .oferta-card{
        margin-bottom:25px;
        padding:30px;
    }
    .modal-dialog{
        margin:10px;
    }
    .modal-title{
        font-size:22px;
    }
    iframe{
        min-height:250px;
    }
}
@media (max-width:576px){
    .navbar-brand{
        font-size:22px;
    }
    .hero{
        padding:60px 0;
    }
    .hero h1{
        font-size:28px;
    }
    .hero p{
        font-size:15px;
    }
    .btn-primary{
        width:100%;
    }
    .btn-outline-primary{
        width:100%;
    }
    .card-body{
        padding:22px;
    }
    .modal-body{
        padding:15px;
    }
    .modal-header{
        padding:18px;
    }
    .modal-title{
        font-size:20px;
    }
    .whatsapp{
        width:55px;
        height:55px;
        font-size:28px;
        right:18px;
        bottom:18px;
    }
}
/*======================================================
    SCROLLBAR
======================================================*/
::-webkit-scrollbar{
    width:10px;
}
::-webkit-scrollbar-thumb{
    background:#0d3b66;
    border-radius:30px;
}
::-webkit-scrollbar-track{
    background:#f2f2f2;
}
/*==========================
BOTÓN TOP
==========================*/
#btnTop{
    position:fixed;
    bottom:100px;
    right:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#0d3b66;
    color:#fff;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,.20);
}
#btnTop.show{
    opacity:1;
    visibility:visible;
}
#btnTop:hover{
    transform:translateY(-4px);
    background:#1d70b8;
}
/*==========================
ANIMACIÓN
==========================*/
.card,
.oferta-card,
.hero,
.section-title,
.scroll-reveal{
    opacity:0;
    transform:translateY(40px);
    transition:.8s;
}
.card.show,
.oferta-card.show,
.hero.show,
.section-title.show,
.scroll-reveal.show{
    opacity:1;
    transform:translateY(0);
}
.logo-navbar{
    height: 1px;
    width: auto;
}
#bannerUniversidad{
    width: 100%;
    height: 750px;
    overflow: hidden;
}
#bannerUniversidad .carousel-inner {
    height: 650px; /* Altura fija para el contenedor */
}
#bannerUniversidad .carousel-item{
    height: 600px;
}
#bannerUniversidad .carousel-item img{
    width: 100%;
    height: 650px;
    object-fit: contain;
    background: #ffff;
    
}
@media (max-width:768px){
    #bannerUniversidad .carousel-item{
        height:100px;
        height: 100%;
    }
    #bannerUniversidad .carousel-item img{
        height:100px;
        height: 100%;
    }
}
/*==================================================
=            SECCIONES INSTITUCIONALES             =
==================================================*/
html{
    scroll-behavior:smooth;
}
.section-title{
    font-size:2.4rem;
    font-weight:700;
    color:#0d6efd;
    margin-bottom:25px;
    position:relative;
}
.section-title::after{
    content:'';
    width:80px;
    height:4px;
    background:#0d6efd;
    display:block;
    margin-top:12px;
    border-radius:20px;
}
.section-text{
    font-size:1.05rem;
    line-height:1.9;
    color:#555;
    text-align:justify;
}
.section-img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
    transition:.4s;
}
.section-img:hover{
    transform:scale(1.03);
}
/*=========================================
=              HISTORIA                   =
=========================================*/
#historia{
    padding:100px 0;
    background:#fff;
}
/*=========================================
=              ESLOGAN                    =
=========================================*/
.linea-eslogan{
    width:120px;
    height:3px;
    background:#ffc107;
    margin:auto;
    border-radius:20px;
}
#eslogan h5{
    letter-spacing:4px;
    color:#ffc107;
    margin-top:18px;
    font-weight:600;
}
#eslogan h2{
    margin-top:20px;
}
/*=========================================
=             MISION / VISION             =
=========================================*/
#mision,
#vision{
    padding:100px 0;
}
#mision{
    background:#f8f9fa;
}
#vision{
    background:#fff;
}
/*=========================================
=               VALORES                   =
=========================================*/
#valores{
    padding:100px 0;
    background:#eef5ff;
}
.valor-card{
    background:#fff;
    border:none;
    border-radius:18px;
    overflow:hidden;
    padding:40px 25px;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    height:100%;
}
.valor-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}
.valor-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:40px;
    margin-bottom:25px;
    transition:.4s;
}
.valor-card:hover .valor-icon{
    background:#ffc107;
    color:#0d6efd;
    transform:rotate(360deg);
}
.valor-card h4{
    font-weight:700;
    margin-bottom:15px;
    color:#0d6efd;
}
.valor-card p{
    color:#666;
    line-height:1.8;
}
/*=========================================
=              FILOSOFIA                  =
=========================================*/
#filosofia{
    background:
    linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.70)),
    url("../img/filosofia.jpg") center center;
    background-size:cover;
    background-attachment:fixed;
    padding:100px 0;
    text-align:center;
    color:#fff;
}
#filosofia h2{
    font-size:3rem;
    font-weight:bold;
    margin-bottom:25px;
}
#filosofia p{
    font-size:1.2rem;
    line-height:2;
    max-width:900px;
    margin:auto;
}
/*=========================================
=           POR QUE ELEGIRNOS             =
=========================================*/
#porque{
    padding:100px 0;
    background:#fff;
}
.ventaja{
    display:flex;
    align-items:center;
    margin-bottom:25px;
}
.ventaja i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#0d6efd;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-right:20px;
}
.ventaja h5{
    margin:0;
    color:#0d6efd;
    font-weight:700;
}
.ventaja p{
    margin:0;
    color:#666;
}
/*=========================================
=              ANIMACIONES                =
=========================================*/
/* .fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:.8s;
}
.fade-left{
    opacity:0;
    transform:translateX(-60px);
    transition:.8s;
}
.fade-right{
    opacity:0;
    transform:translateX(60px);
    transition:.8s;
} */
.show-animation{
    opacity:1;
    transform:none;
}
/*=========================================
=             RESPONSIVE                  =
=========================================*/
@media(max-width:991px){
.section-title{
font-size:2rem;
text-align:center;
}
.section-title::after{
margin:auto;
margin-top:15px;
}
.section-text{
text-align:center;
}
#eslogan h2{
font-size:2.2rem;
}
#filosofia h2{
font-size:2.2rem;
}
.valor-card{
margin-bottom:30px;
}
}
@media(max-width:768px){
#eslogan{
padding:80px 20px;
background-attachment:scroll;
}
#filosofia{
padding:90px 20px;
background-attachment:scroll;
}
.section-title{
font-size:1.8rem;
}
}
