/*=================================================
                BANNER NOSOTROS
=================================================*/

.banner-nosotros{
    width:100%;
    height:380px;
    background:
    linear-gradient(rgba(0,40,85,.60),rgba(0,40,85,.60)),
    url("../img/banner-nosotros.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
}

.banner-nosotros .overlay{

    text-align:center;
    color:#fff;
    padding:20px;

}

.banner-nosotros h1{

    font-size:48px;
    margin-bottom:15px;
    font-weight:700;

}

.banner-nosotros p{

    font-size:22px;
    font-weight:300;

}


/*=================================================
                SECCIONES
=================================================*/

.seccion{

    margin:70px auto;

}

.titulo-seccion{

    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;

}

.titulo-seccion i{

    font-size:34px;
    color:#003c78;

}

.titulo-seccion h2{

    font-size:34px;
    color:#003c78;

}


/*=================================================
                TARJETAS
=================================================*/

.tarjeta{

    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.4s;

}

.tarjeta:hover{

    transform:translateY(-6px);

}

.tarjeta h3{

    color:#003c78;
    margin-bottom:15px;
    font-size:26px;

}

.tarjeta p{

    text-align:justify;
    line-height:1.9;
    font-size:17px;
    color:#444;

}


/*=================================================
            MISION Y VISION
=================================================*/

.mision-vision{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-top:50px;
    margin-bottom:60px;

}

.card{

    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    transition:.4s;

}

.card:hover{

    transform:translateY(-8px);

}

.card i{

    font-size:50px;
    color:#003c78;
    margin-bottom:20px;

}

.card h2{

    color:#003c78;
    margin-bottom:20px;

}

.card p{

    line-height:1.8;
    text-align:justify;

}


/*=================================================
            PRINCIPIOS
=================================================*/

.titulo-principios{

    color:#003c78;
    margin-bottom:35px;
    font-size:34px;

}

.principios-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:28px;
    margin-bottom:70px;

}

.principio{

    background:#fff;
    padding:40px 20px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
    transition:.4s;

}

.principio:hover{

    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.principio i{

    font-size:55px;
    color:#003c78;
    margin-bottom:20px;

}

.principio h3{

    color:#222;
    font-size:28px;
    line-height:1.4;

}


/*=================================================
                GALERIA
=================================================*/

.galeria{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:18px;
    margin-top:35px;
    margin-bottom:80px;

}

.galeria img{

    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:15px;
    cursor:pointer;
    transition:.4s;
    box-shadow:0 8px 18px rgba(0,0,0,.15);

}

.galeria img:hover{

    transform:scale(1.04);

}


/*=================================================
                RESPONSIVE
=================================================*/

@media(max-width:900px){

.banner-nosotros{

height:260px;

}

.banner-nosotros h1{

font-size:34px;

}

.banner-nosotros p{

font-size:18px;

}

.mision-vision{

grid-template-columns:1fr;

}

.titulo-seccion h2{

font-size:28px;

}

.titulo-principios{

font-size:28px;

}

.principio h3{

font-size:22px;

}

}

/*==========================
VISOR DE GALERÍA
==========================*/

.visor{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.90);

display:flex;

justify-content:center;

align-items:center;

opacity:0;

visibility:hidden;

transition:.3s;

z-index:9999;

}

.visor.mostrar{

opacity:1;

visibility:visible;

}

.imagen-grande{

max-width:85%;

max-height:85%;

border-radius:15px;

box-shadow:0 0 30px rgba(255,255,255,.25);

}

.cerrar{

position:absolute;

top:25px;

right:40px;

font-size:45px;

color:#fff;

cursor:pointer;

}

.anterior,
.siguiente{

position:absolute;

top:50%;

transform:translateY(-50%);

font-size:55px;

color:#fff;

cursor:pointer;

padding:20px;

user-select:none;

}

.anterior{

left:25px;

}

.siguiente{

right:25px;

}