/* importar fuente logo */
@font-face {
    font-family: 'FuenteLogo';
    src: url('../fonts/BASKVILL.ttf') format('truetype');
}

/* import poppins */
@font-face {
    font-family: 'Poppins';
    src: url('https://fonts.gstatic.com/s/poppins/v20/XXXXX.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
}

body {
    background: #f8f8f8 0% 0% no-repeat padding-box;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* clases genericas */
.d-flex {
    display: flex;
}

.alignCenter {
    align-items: center;
}

.justifyCenter {
    justify-content: center;
}

.justifyBetween {
    justify-content: space-between;
}


/* width */
.w-auto {
    width: auto;
}

/* Header */
header {
    height: 100px;
    width: 100vw;
    opacity: 1;
    padding-left: 2vw;
    padding-right: 2vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 114px;
    height: 114px;
}

h1 {
    text-align: left;
    font: normal normal normal 43px/49px Baskerville Old Face;
    font-family: 'FuenteLogo', serif !important;
    letter-spacing: 0px;
    color: #58686D;
    opacity: 1;
}

.subtituloHeader {
    text-align: left;
    font: normal normal normal 17px/19px Baskerville Old Face;
    font-family: 'FuenteLogo', serif !important;
    letter-spacing: 1.7px;
    color: #58686D;
    opacity: 1;
}

.listHeader {
    list-style: none;
    gap: 53px;
    display: flex;
    justify-content: center;
}

.listHeader li {
    width: auto;
}

.aHeader {
    text-decoration: none;
    text-align: left;
    letter-spacing: 0px;
    color: #B6B6B7;
    opacity: 1;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

.activeHeader {
    color: #464646 !important;
    text-decoration: underline #8ECCAB !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 5px !important;
}

.contenedorBotonHeader {
    display: flex;
    justify-content: flex-end;
    gap: 31px;
}

.botonHeader {
    width: 130px;
    height: 38px;
    border: 2px solid #53B493;
    border-radius: 9px;
    opacity: 1;
    color: #53B493;
    font-size: 9px;
    font-weight: 700;
    line-height: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.btnHeaderVerde {
    background-color: #53B493 !important;
    color: #FFFFFF !important;
    border: none !important;
}

.btnHeaderGris {
    background-color: #8D8D8D !important;
    color: #FFFFFF !important;
    border: none !important;
}


.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    z-index: 1000;
    width: auto;
}

.bar {
    width: 29px;
    height: 4px;
    border-radius: 5px;
    background-color: #494949;
}

.menu-container {
    right: -100%;
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #FFFFFF;
    transition: right 0.3s ease;
    z-index: 999;
    box-sizing: border-box;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-container.active {
    right: 0;
}

@media (max-width: 1200px) {
    .logo {
        width: 100px;
        height: 100px;
    }

    h1 {
        font-size: 30px;
        line-height: 38px;
    }

    .subtituloHeader {
        font-size: 10px;
    }

    .listHeader {
        gap: 30px;
    }

    .contenedorBotonHeader {
        gap: 15px;
    }

    .botonHeader {
        width: 100px;
        font-size: 8px;
        height: 38px;
    }
}

@media (max-width: 768px) {
    .logo {
        width: 100px;
        height: 100px;
    }

    .logoMovil {
        width: 120px;
        height: 120px;
    }

    h1 {
        font-size: 30px;
        line-height: 38px;
    }

    .subtituloHeader {
        font-size: 10px;
    }

    .h1Movil {
        font-size: 30px;
        line-height: 38px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .subtituloHeaderMovil {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav {
        display: none;
    }

    .navBurger {
        display: block !important;
        margin-top: 30px;
    }

    .contenedorBotonHeader {
        display: none;
    }

    .burger {
        display: flex;
        margin-right: auto;
    }

    .menu-container {
        right: -100%;
    }

    .navBurger {
        display: block !important;
    }

    .contenedorBotonHeaderBurger {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .listHeader {
        list-style: none;
        display: inline;
    }

    .aHeader {
        text-decoration: none;
        text-align: left;
        letter-spacing: 0px;
        color: #B6B6B7;
        opacity: 1;
        font-size: 18px;
        font-weight: 500;
        line-height: 27px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .botonHeader {
        margin-bottom: 20px;
        width: 130px;
        height: 38px;
        font-size: 9px;
    }
}

@media (max-width: 500px) {
    .menu-container {
        width: 50%;
    }
}

/* Seccion 1 */
.fondo1 {
    height: calc(100vh - 100px);
    width: 100%;
    background: linear-gradient(88deg, #1D3D38BF 0%, #E5E5E500 80%, #C0C0C000 49%, #80808000 100%), url('../images/imagen2.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    padding-left: 2vw;
    padding-top: 113px;
    padding-bottom: 90px;
    display: flex;
    flex-direction: column;
}

.fondo1Movil {
    display: none;
}

.subtituloFondo1 {
    text-align: left;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    font-size: 78px;
    font-weight: 700;
    line-height: 117px;
}

.subtitulo3Fondo1 {
    text-align: left;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 30px;
}

.contenedorIconosSeccion1 {
    display: flex;
    gap: 72px;
    margin-top: auto;
}

.circuloIconoSeccion1 {
    width: 40px;
    height: 40px;
    background: #69D9A9 0% 0% no-repeat padding-box;
    border-radius: 20px;
    opacity: 1;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iconoBanner {
    height: 16px;
    width: 16px;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 0;
}

.textoCirculoIconoSeccion1 {
    padding-left: 12px;
    text-align: left;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    font-size: 16px;
    font-weight: 16px;
    line-height: 25px;
}

@media (max-width: 1200px) {
    .subtituloFondo1 {
        font-size: 60px;
        line-height: 60px;
    }

    .subtitulo3Fondo1 {
        font-size: 20px;
        line-height: 30px;
    }

    .contenedorIconosSeccion1 {
        gap: 50px;
    }

    .textoCirculoIconoSeccion1 {
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .fondo1 {
        display: none;
    }

    .fondo1Movil {
        height: 395px;
        width: 100%;
        background: linear-gradient(88deg, #1D3D38BF 0%, #E5E5E500 80%, #C0C0C000 49%, #80808000 100%), url('../images/imagen2.png');
        background-size: cover;
        background-position: center right;
        background-repeat: no-repeat;
        padding-left: 2vw;
        padding-top: 10px;
        display: flex;
        flex-direction: column;
    }

    .subtituloFondo1 {
        font-size: 42px;
        font-weight: 700;
        line-height: 63px;
    }

    .subtitulo3Fondo1 {
        font-size: 9px;
        line-height: 13px;
    }

    .contenedorIconosSeccion1 {
        gap: 26px;
        margin: 0;
        margin-bottom: 70px;
    }

    .circuloIconoSeccion1 {
        width: 26px;
        height: 26px;
    }

    .textoCirculoIconoSeccion1 {
        font-size: 9px;
    }

    .iconoBanner {
        height: 10px;
        width: 10px;
        font-size: 10px;
    }
}

@media (max-width: 400px) {
    .contenedorIconosSeccion1 {
        display: block;
    }

    .circuloIconoSeccion1 {
        margin-bottom: 10px;
    }

}





/* Article 1 */
.article1 {
    width: 1280px;
    height: 896px;
    background: #FEFEFE 0% 0% no-repeat padding-box;
    border-radius: 8px;
    opacity: 1;
    margin: auto;
    margin-top: 84px;
    padding-top: 50.9px;
    padding-left: 89px;
    padding-right: 64px;
}

.subtituloArticle {
    text-align: center;
    letter-spacing: 0px;
    color: #53B493;
    opacity: 1;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
}

.tituloArticle1 {
    text-align: center;
    letter-spacing: 0px;
    color: #404040;
    opacity: 1;
    padding-top: 4.1px;
    font-size: 50px;
    font-weight: 700;
    line-height: 76px;
}

.textoArticle1 {
    margin-top: 62px;
    text-align: left;
    letter-spacing: 0px;
    color: #404040;
    opacity: 1;
    font-size: 23px;
    font-weight: 400;
    line-height: 34px;
}


@media (max-width: 1200px) {
    .article1 {
        width: 90%;
        padding-left: 40px;
        padding-right: 40px;
        height: auto;
        padding-bottom: 30px;
    }

    .textoArticle1 {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .article1 {
        width: 90%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .textoArticle1 {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 500px) {
    .article1 {
        width: 100%;
        height: auto;
        background: #FEFEFE 0% 0% no-repeat padding-box;
        margin: auto;
        padding-top: 50.9px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .subtituloArticle {
        font-size: 10px;
        line-height: 16px;
    }

    .tituloArticle1 {
        font-size: 28px;
        font-weight: 700;
        line-height: 42px;
    }

    .textoArticle1 {
        margin-top: 30px;
    }
}

/* Article 2 */
.article2 {
    width: 1280px;
    height: 896px;
    background: #FEFEFE 0% 0% no-repeat padding-box;
    border-radius: 8px;
    opacity: 1;
    margin: auto;
    margin-top: 40px;
    padding-top: 50.9px;
    padding-left: 89px;
    padding-right: 64px;
}

.subArticle2 {
    text-align: left !important;
}

@media (max-width: 1200px) {
    .article2 {
        width: 90%;
        padding-left: 40px;
        padding-right: 40px;
        height: auto;
        padding-bottom: 30px;
    }

    .tituloArticle2 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .article2 {
        width: 90%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .tituloArticle2 {
        font-size: 42px;
    }
}

@media (max-width: 500px) {
    .article2 {
        width: 100%;
        height: auto;
        background: #FEFEFE 0% 0% no-repeat padding-box;
        margin: auto;
        padding-top: 50.9px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .subtituloArticle {
        font-size: 7px;
        line-height: 10px;
    }

    .tituloArticle1 {
        font-size: 24px;
        font-weight: 700;
        line-height: 42px;
    }

    .textoArticle1 {
        margin-top: 30px;
    }
}

/* Article 3 */
.article3 {
    width: 1280px;
    height: 1553px;
    background: #FEFEFE 0% 0% no-repeat padding-box;
    border-radius: 8px;
    opacity: 1;
    margin: auto;
    margin-top: 40px;
    padding-top: 50.9px;
    padding-left: 89px;
    padding-right: 64px;
}

@media (max-width: 1200px) {
    .article3 {
        width: 90%;
        padding-left: 40px;
        padding-right: 40px;
        height: auto;
        padding-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .article3 {
        width: 90%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 500px) {
    .article3 {
        width: 100%;
        height: auto;
        background: #FEFEFE 0% 0% no-repeat padding-box;
        margin: auto;
        padding-top: 50.9px;
        padding-left: 5%;
        padding-right: 5%;
    }
}


.article4 {
    width: 1280px;
    height: 725px;
    background: #FEFEFE 0% 0% no-repeat padding-box;
    border-radius: 8px;
    opacity: 1;
    margin: auto;
    margin-top: 40px;
    padding-top: 50.9px;
    padding-left: 89px;
    padding-right: 64px;
}

@media (max-width: 1200px) {
    .article4 {
        width: 90%;
        padding-left: 40px;
        padding-right: 40px;
        height: auto;
        padding-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .article4 {
        width: 90%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 500px) {
    .article4 {
        width: 100%;
        height: auto;
        background: #FEFEFE 0% 0% no-repeat padding-box;
        margin: auto;
        padding-top: 50.9px;
        padding-left: 5%;
        padding-right: 5%;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Footer */
footer {
    margin-top: 85px;
    max-width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding-right: 4%;
    padding-left: 5.56%;
    padding-top: 60px;
}

.footerMovil {
    display: none;
}

.footer100 {
    width: 100%;
}

.header-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    height: 80px;
}

.texto-footer {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #707070;
    width: 100%;
    line-height: 27px;
}

.borderFooter {
    border-right: 1px solid #707070;
    height: 40px;
}

.header-footer img {
    width: 280px;
}

.subheader-footer {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 70px;
}

.marginFooter {
    margin-top: 41px;
}

.aFooter {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
    color: #0D3DFF;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .texto-footer {
        font-size: 14px;
    }

    .header-footer img {
        width: 200px;
    }

    .aFooter {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .texto-footer {
        font-size: 12px;
    }

    .header-footer img {
        width: 200px;
    }

    .aFooter {
        font-size: 12px;
    }
}

@media (max-width: 500px) {
    footer {
        display: none;
    }

    .footerMovil {
        display: block;
        margin: 0;
        box-shadow: none;
        padding-left: 5.56%;
        padding-right: 5.56%;
    }

    .imagenSsn {
        height: 50px;
    }

    .aFooterMovil {
        font-family: 'Roboto', sans-serif;
        font-size: 20px;
        font-weight: 400;
        line-height: 27px;
        color: #0D3DFF;
        text-decoration: none;
        padding-top: 30px;
    }

    .textoFooterMovil {
        padding-top: 30px;
        font-family: 'Roboto', sans-serif;
        font-size: 20px;
        font-weight: 400;
        color: #707070;
        width: 100%;
        line-height: 27px;
        display: block;
    }
}