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

    section {
        /* height: 100%; */
        width: 100vw;
        display: block;
        padding: 30px 128px;
    }

    button {
        /* retira borda do botão */
        border: none;
        cursor: pointer;
        padding: 2px 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: 14px;
        color: var(--hover-gray);
        font-weight: 500;
    }

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