* {
    padding: 0;
    margin: 0;
}

h2 {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 33px;
}

.titulo::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #006FB9;
    margin: 0 auto;
    margin-top: 4px;
}

h3 {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 18px;
    max-width: 385px;
}

h4 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 16px;
}

h5 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 12px;
    max-width: 265px;
    letter-spacing: 0.4px;
}

a {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
    font-style: normal;
}

header {
    background-image: url(../img/banners/banner-header.png);
    background-repeat: no-repeat;
    background-size: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    height: 500px;
}

nav {
    display: flex;
    flex-direction: row;
    gap: 32px;
    background: #2D647C;
    padding: 16px 46px;
    align-items: center;
    justify-content: center;
    max-width: 810px;
}

.nosotros {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    margin: 80px 0 80px 0;
}

.noso-item {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
}

.servicios {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.conj-serv {
    display: flex;
    flex-direction: row;
    max-width: 1250px;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    justify-content: center;
}

.item-serv {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.text-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.clientes {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.finan-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.contenedor {
    border: 1px solid #ccc;
    padding: 10px;
    max-width: 1920px;
    height: 600px;
    overflow: auto;
    margin: 80px 10% 80px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

#nav-mob {
    display: none;
}

@media (max-width:800px) {
    header {
        height: auto;
    }

    #nav-desk {
        display: none;
    }

    #nav-mob {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: -webkit-fill-available;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 50%;
        background-color: #18D5B7;
        position: absolute;
        top: 68px;
        right: 0;
        padding: 8px;
    }

    .menu-icon {
        display: block;
    }

    .menu.show {
        display: flex;
    }

    .logo {
        margin-right: auto;
    }

    a {
        font-size: 12px;
        color: #000;
    }

    .logo-tuana {
        width: 200px;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 27px;
    }

    h3 {
        font-size: 16px;
    }

    .noso-item{
        flex-direction: column-reverse;
        gap: 24px;
        text-align: center;
    }

    .servicios img{
        width: 65px;
    }

    .text-item{
        gap: 4px;
    }
}