*,
*::before,
*::after {
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    
}

main{
    padding-top: var(--header-height);
}

.whoAreWe {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 5% auto;
    max-width: 1600px;
}


.whoAreWe .text,
.whoAreWe h1 {
    text-align: left;
}

.whoAreWe h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #464646;
}

.whoAreWe p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 100;
    color: #464646;
    text-align: justify;
}

#btnVerMas {
    background: none;
    border: none;
    color: #0056b3;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    padding: 0;
}

#btnVerMas:hover {
    text-decoration: underline;
}

.imgWhoAreWeUAnorte{
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 15%;
}

.oculto {
    display: none;
}

.imgWhoAreWeUAnorte img {
    width: 50%;
    height: auto;
    margin-top: 0;
    margin-bottom: 2%;
}

.imgDevenirHistorico{
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
}

.imgDevenirHistorico img {
    width: 70%;
    height: auto;
    margin-top: 0;
    margin-bottom: 2%;
}

.misionVision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 5% auto;
    max-width: 1600px;
}


.misionVision .text,
.misionVision h1 {
    text-align: left;
}

.misionVision h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #464646;
}

.misionVision p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 100;
    color: #464646;
    text-align: justify;
}

.values h1.titleValue {
    font-size: 46px;
    margin-bottom: 15px;
    color: #464646;
    text-align: center;
}

.swiper {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    padding: 40px 0;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

.swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 5%;
    margin-top: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #32dbfd;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #fa4156;
}


.swiper-pagination-bullet {
    background: #32dbfd;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #fa4156;
    opacity: 1;
}

.campus h1 {
    font-size: 46px;
    margin-bottom: 15px;
    color: #464646;
    text-align: center;
}

.campusColumns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 0 auto;
    max-width: 1600px;
}


.campusColumns img {
    width: 100%;
    height: auto;
}

.campusColumns iframe {
    margin-top: 5%;
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 5%;
}

.footer{
    margin-top: 5%;
}

/* ===========================
   PANTALLAS GRANDES (1440px+)
=========================== */
@media (min-width: 1440px) {

    .whoAreWe h1,
    .misionVision h1 {
        font-size: 42px;
    }

    .whoAreWe p,
    .misionVision p {
        font-size: 19px;
    }

    .values h1.titleValue {
        font-size: 52px;
    }

    .swiper {
        max-width: 1300px;
    }

    .campus h1 {
        font-size: 52px;
    }

    .campusColumns iframe {
        height: 500px;
    }
}


/* ===========================
   RESPONSIVE - TABLETS
=========================== */
@media (max-width: 1024px) {
    .whoAreWe,
    .misionVision,
    .campusColumns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .whoAreWe p,
    .misionVision p {
        text-align: justify;
    }

    .imgWhoAreWeUAnorte img {
        margin: 20px auto 0;
    }

    .campusColumns iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {

    .swiper-slide img {
        width: 80%;
    }

    .values h1.titleValue,
    .campus h1 {
        font-size: 32px;
    }

    .imgWhoAreWeUAnorte img {
        width: 70%;
    }

    .imgDevenirHistorico img {
        width: 85%;
    }
}

@media (max-width: 480px) {
    .whoAreWe,
    .misionVision,
    .campusColumns {
        margin: 30px 20px;
    }

    .whoAreWe h1,
    .misionVision h1 {
        font-size: 28px;
    }

    .whoAreWe p,
    .misionVision p {
        font-size: 16px;
    }

    .values h1.titleValue {
        font-size: 28px;
    }

    .swiper-slide img {
        width: 90%;
    }

    .imgWhoAreWeUAnorte img {
        width: 85%;
    }

    .imgDevenirHistorico img {
        width: 90%;
    }

    .campusColumns iframe {
        height: 280px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        transform: scale(0.7);
    }
}

/* ===========================
   CELULARES PEQUEÑOS
=========================== */
@media (max-width: 400px) {

    .whoAreWe h1,
    .misionVision h1 {
        font-size: 24px;
    }

    .whoAreWe p,
    .misionVision p {
        font-size: 15px;
    }

    .values h1.titleValue,
    .campus h1 {
        font-size: 24px;
    }

    #btnVerMas {
        font-size: 14px;
    }

    .campusColumns iframe {
        height: 230px;
    }
}