.banner {
    width: 100%;
    height: 70vh;
    background-image: url("../images/banner-safra.png");
    background-position: center;
    background-size: cover;
}

.desc-banner {
    position: relative;
    top: 8rem;
    left: 20rem;
    text-align: left;
    width: 100%;
}

.desc-banner h3 {
    color: #00003cff;
    font-size: 2rem;
}

.desc-banner h1 {
    font-size: 4rem;
    color: #00003cff;
}

.button-banner {
    background-color: #00003cff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 80px;
    width: 250px;
    border-radius: 5px;
}

.button-banner:hover {
    background-color: rgba(0, 0, 60, 0.785);
}

@media (max-width:986px) {
    .banner {
        width: 100%;
        height: 70vh;
        background-image: url("../images/banner-mobile.png");
        background-position: top;
        background-size: cover;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .banner::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Overlay escuro */
        z-index: 1;
    }

    .button-banner {
        background-color: #00003cff;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        padding: 15px 80px;
        border-radius: 5px;
    }

    .desc-banner {
        position: relative;
        top: 0rem;
        left: 0;
        text-align: center;
        width: 100%;
        padding: 0px;
        border-radius: 5px;
        z-index: 2;
    }

    .desc-banner h3 {
        color: #fff;
        font-size: 1.5rem;
        
    }
    
    .desc-banner h1 {
        font-size: 2rem;
        color: #fff;
        
    }
}


