.banner {
    height: 67vh;
    padding: 180px 0 180px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.16)),
        url(../imagestotal/images/background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.texto .titulo {
    color: #ffffff;
    font-size: 60px;
    font-weight: 600;
}

.texto .botoes {
    margin-top: 30px;
}

.texto .botoes button {
    height: 55px;
    width: 170px;
    border-radius: 5px;
    border: 0;
    margin: 0 10px;
    font-size: 20px;
    font-weight: 500;
    padding: 0 10px;
    cursor: pointer;
    outline: none;
    transition: 0.3s;
}

.texto .botoes button.n-overlay {
    color: #fff;
    background: none;
    border: 2px solid white;
}

.texto .botoes button.n-overlay:hover {
    color: black;
    background-color: white;
}

.texto .botoes button.overlay {
    background: white;
    color: black;
    animation: pulse 0.5s ease-in-out infinite both;
}

/* Banner Responsive */
@media screen and (min-height: 920px) {
    .banner {
        height: 80vh;
        padding: 180px 0 180px 0;
        background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.16)),
            url(../imagestotal/images/background.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

@media screen and (min-height: 1150px) {
    .banner {
        height: 95vh;
        padding: 180px 0 180px 0;
        background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.16)),
            url(../imagestotal/images/background.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

/* Responsivo pro celular do Enzo :) */
@media (max-width: 384px) {
    .texto .botoes button {
        height: 55px;
        width: 170px;
        border-radius: 5px;
        border: 0;
        margin: 10px 10px;
        font-size: 20px;
        font-weight: 500;
        padding: 0 10px;
        cursor: pointer;
        outline: none;
        transition: 0.3s;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}
