@media only screen and (min-width: 1700px) {
    body {
        height: 100vh;
        overflow-x: hidden;
        width: 100%;
    }

    section {
        width: 100vw;
        display: block;
        padding: 60px 170px;
    }

    button {
        /* retira borda do botão */
        border: none;
        cursor: pointer;
        padding: 5px 25px;

        /* estilos retirados do figma */
        box-shadow: 7px 7px 20px rgba(0, 0, 0, 0.15);
        border-radius: 6px;
        background-color: var(--default-green);

        line-height: 26px;
        font-size: 16px;
        color: var(--hover-gray);
        font-weight: 500;
    }

    button:hover {
        background-color: var(--hover-green);
        transform: translateY(2px);
    }
}