* {
    box-sizing: border-box;
    font-family: 'Nunito Sans', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fff;
}

button {
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    background-color: transparent;
}

button:disabled {
    cursor: not-allowed;
}

.app-wrapper {
    width: 100vw;
    height: 100vh;
}

.app-header {
    width: 100%;
    height: 64px;
    display: flex;
    padding: 10px 120px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #F1F9FF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.header-button {
    width: 146px;
    height: 44px;
    color: #fff;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    border-radius: 6px;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    background-color: #0A3FA8;
}

.app-render {
    width: 100%;
    overflow-y: scroll;
    height: calc(100% - 64px);
}

.app-render::-webkit-scrollbar {
    display: none;
}

.first-banner {
    width: 100%;
    height: 683px;
    display: flex;
    padding: 0 120px;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    background:
        radial-gradient(circle at bottom left,
            rgb(255, 255, 255) 0%,
            rgba(255, 255, 255, 0.9) 35%,
            rgba(242, 244, 247, 0.8) 60%),
        linear-gradient(135deg,
            rgb(64, 64, 64) 0%,
            rgb(67, 67, 67) 50%,
            rgb(74, 74, 74) 100%);
}

.first-box {
    gap: 40px;
    width: 540px;
    display: flex;
    flex-direction: column;
}

.title {
    font-size: 32px;
    font-weight: 800;
    color: #0A3FA8;
    line-height: 34px;
}

.description {
    font-size: 24px;
    font-weight: 500;
    line-height: 26px;
}

.description-aux {
    text-align: right;
}

.strong {
    color: #0A3FA8;
}

.content-stores {
    gap: 12px;
    display: flex;
    flex-direction: row;
}

.second-banner {
    width: 100%;
    height: 598px;
    display: flex;
    padding: 0 120px;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.btn-info {
    gap: 10px;
    width: 320px;
    height: 50px;
    color: #fff;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    border-radius: 6px;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    background-color: #0A3FA8;
}

.icon-whatsApp {
    width: 28px;
    height: 28px;
}

.second-box {
    gap: 40px;
    width: 540px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.third-banner {
    width: 100%;
    height: 685px;
    display: flex;
    padding: 0 120px;
    align-items: center;
    flex-direction: row;
    background-color: #F7FAFD;
    justify-content: space-between;
}

.footer {
    width: 100%;
    height: 244px;
    display: flex;
    padding: 0 120px;
    flex-direction: row;
    align-items: center;
    background-color: #0A3FA8;
    justify-content: space-between;
}

.first-box-footer {
    gap: 14px;
    display: flex;
    flex-direction: column;
}

.footer-wrapper {
    gap: 16px;
    display: flex;
    align-items: center;
    flex-direction: row;

}

.footer-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
}

.whatsApp-btn {
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.second-box-footer {
    gap: 6px;
    width: 250px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.icon-wiedii {
    width: 189px;
    height: 61px;
    margin-bottom: 8px;
}

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

.icon-phone,
.icon-location {
    width: 20px;
    height: 20px;
}

.icon-email {
    width: 18px;
    height: 18px;
}

.third-box-footer {
    gap: 8px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer-text {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
}

.icon-whatsApp-footer {
    width: 35px;
    height: 35px;
}

.icons-stores-footer {
    width: 150px;
    height: 44px;
}

.third-box {
    gap: 40px;
    width: 540px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .app-wrapper {
        height: 100dvh;
        width: 100dvw;
    }

    .app-header {
        padding: 10px 24px;
    }

    .first-banner {
        gap: 20px;
        width: 100%;
        display: flex;
        padding: 24px;
        height: max-content;
        align-items: center;
        background: #F7FAFD;
        flex-direction: column;
        justify-content: flex-start;
    }

    .first-box {
        gap: 20px;
        width: 100%;
    }

    .title {
        font-size: 20px;
        line-height: 22px;
    }

    .description {
        font-size: 16px;
        line-height: 18px;
    }

    .description-aux {
        text-align: left;
    }

    .content-stores {
        width: 100%;
        justify-content: space-between;
    }

    .icons-stores {
        height: 44px;
    }

    .icon-first-laptop {
        width: 100%;
    }

    .second-banner {
        width: 100%;
        height: max-content;
        justify-content: center;
        padding: 24px 24px 0 24px;
        flex-direction: column-reverse;
    }

    .btn-info {
        width: 100%;
        font-size: 18px;
        line-height: 20px;
    }

    .icon-second-laptop {
        width: 90%;
        height: 250px;
    }

    .second-box {
        gap: 20px;
        width: 100%;
        align-items: flex-start;
    }

    .third-banner {
        gap: 20px;
        width: 100%;
        height: max-content;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        padding: 24px 24px 24px 24px;
    }

    .third-box {
        gap: 20px;
        width: 100%;
    }

    .icon-phones {
        height: 320px;
    }

    .footer {
        gap: 40px;
        width: 100%;
        display: flex;
        padding: 52px 24px;
        height: max-content;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .first-box-footer {
        gap: 14px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .footer-wrapper {
        gap: 16px;
        display: flex;
        align-items: center;
        flex-direction: row;
    }

    .footer-title {
        font-size: 18px;
        line-height: 20px;
    }

    .whatsApp-btn {
        width: 33px;
        height: 33px;
    }

    .icons-stores-footer {
        height: 44px;
    }

    .second-box-footer {
        width: 100%;
    }

    .third-box-footer {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
    }
}