#banner {
    width: 100%;
    height: 100vh;
    position: relative;
    background-image: url('/src/images/hero6.jpg') !important;
    background-size: cover;
    /* cobre todo o banner */
    background-position: center;
    /* centraliza a imagem */
    background-repeat: no-repeat;
    background-color: #01172F;
    /* cor de fallback */
}

#backgroung-banner {
    position: absolute;
    z-index: -1;
    width: 100%;
    top: 0;
}

#text-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

#home {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 76%;
    height: 90vh;
}

#cta {
    width: 100%;
    color: #fff;
    order: 2;
    text-align: center;

}


.up-title {
    color: #F7E5BF;
    font-size: 1rem;
}

#hero {
    width: 100%;
    min-height: 200px;
    order: 1;
}

.btn-cta {
    margin-top: 20px;
    background: linear-gradient(90deg, rgba(255, 216, 162, 1) 0%, rgba(255, 171, 77, 1) 100%);
    padding: 10px 35px;
    color: #1A1008;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid bisque;
}

@media screen and (max-width:1170px) {
    #banner {
        width: 100%;
        height: 600px;
        position: relative;
        background-image: url('/src/images/hero6.jpg') ;
        background-size: contain;
        /* cobre todo o banner */
        background-position: center;
        /* centraliza a imagem */
        background-repeat: no-repeat;
        background-color: #01172F
        /* cor de fallback */
    }

    #home {
        width: 100%;
        height: auto;
    }
    #text-banner{
        min-height: 400px;
    }
    #hero {
        min-height: 200px;
    }

    #cta {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 80%;
        color: #fff;
        gap:5px;
    }

    #title {
        font-size: 1.5rem;
        text-align: center;
    }

    .up-title {
        text-align: center;
    }

    .description {
        text-align: center;
        font-size: 1.3rem;
    }
}