html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
}

body {
    font-family: 'Nunito', sans-serif;
}

header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 100;

    min-height: 110px;
    max-height: 110px;
    background-color: #f5f9ff;
}

.menu {
    font-size: 2rem !important;
    padding: 10px;
    border-radius: 50%;
    color: #000;
}

.menu:hover {
    background-color: #b9b9b93b;
}

.menu:active {
    background-color: #8b8b8b3b;
}

.navbar {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 7%;
}

.navbar__img {
    width: 170px;
}

.navbar__ul {
    display: flex;
    column-gap: 40px;
    list-style: none;
}

.navbar__li {
    display: flex;
    align-items: center;
}

li a {
    text-decoration: none;
    font-size: clamp(1.1rem, 1.2vw, 1.2rem);
    font-weight: 500;
    color: #000;
    transition: all .2s ease;
}

.navbar-button {
    background-color: #0fb1a9;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 5px 10px;
    cursor: pointer;
    white-space: nowrap;
}

.navbar-button:hover {
    background-color: #0fb1a9;
    color: #fff;
}

.btn-conoce-la-plataforma {
    background-color: #0361E8;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border: none;
    height: 44px;
    border-radius: 10px;
    padding: 5px 10px;
    cursor: pointer;
}

.container-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 7rem;
    max-width: 1920px;
    margin: 0 auto 12rem;

    background-image: url('assets/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100vh;
}

.container-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1920px;
    margin: 0 auto 2rem;
    width: 90%;
}

.info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 0 auto 15rem;
    width: 90%;
}

.container-ofrecemos {
    margin-bottom: 15rem;
    width: 90%;
    max-width: 1100px;
}

.container-ofrecemos_titulo {
    color: #012F76;
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    padding-top: 0px;
    line-height: 50px;
    margin-bottom: 60px;
}

.container-cards-blancas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.card-blanca {
    box-shadow: 3px 3px 9.9px 0px rgba(1, 110, 236, 0.25);
    border-radius: 17px;
    display: flex;
    padding: 40px;
    gap: 20px;
}

.card-blanca_img {
    width: 30%;
}

.card-blanca_contenido {
    width: 70%;
}

.card-blanca-h4 {
    font-size: 24px;
    font-weight: 800;
    color: #012F76;
}

.card-blanca-p {
    font-size: 20px;
    font-weight: 400;
    color: #012F76;
}

.card-h4 {
    font-size: 24px;
    font-weight: 800;
    color: #012F76;
}

.card-p {
    font-size: 20px;
    font-weight: 400;
    color: #012F76;
}

.cards-vertical {
    display: flex;
    border-radius: 15px;
    overflow: auto;
}

.card-vertical {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 40px 20px;
}

.container-nuestros-clientes {
    max-width: 1100px;
    margin-bottom: 20rem;
    width: 90%;
}

.input-contactanos:focus {
    border: 1px solid #012F76;
    outline: none;
    box-shadow: 0 0 5px #012F76;
}

.container-footer {
    background-color: #0361E8;
    padding: 50px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
}

@media (max-width: 1190px) {
    .img-macbook {
        display: none;
    }

    .container-mac {
        display: flex !important;
    }
}

@media (max-width: 1041px) {
    .card-blanca {
        align-items: center;
    }
}

@media (max-width: 1000px) {
    .cards-vertical {
        flex-direction: column;
    }

    .card-vertical {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: start;
        padding: 40px 20px;
    }

    .img-contenedor-nuestros-clientes {
        width: 50% !important;
    }
}

@media (max-width: 900px) {
    .info {
        flex-direction: column;
    }

    .container-cards-blancas {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)) !important;
    }
}

@media (max-width: 800px) {
    .text-mac {
        display: none !important;
    }
}

@media (max-width: 720px) {
    .card-blanca {
        flex-direction: column;
        align-items: start;
    }

    .card-blanca_contenido {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .container-footer {
        flex-direction: column;
        gap: 25px;
    }
}