#banner {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
   }
   
   #banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://draiararoque.com.br/imagens/fundo-banner.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
   }
   
   #banner .container {
    position: relative;
    z-index: 1;
   }
   
.banner-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(232, 232, 227, 0.9));
}

#banner .container {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.banner-logo {
    max-width: 400px;
    width: 90%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

#banner p {
    font-size: 1.8em;
    color: #30503a;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

#banner .btn {
    font-size: 1.2em;
    padding: 15px 35px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#banner .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    #banner {
        height: 500px; /* Altura ajustada para telas menores */
    }

    .banner-logo {
        max-width: 280px;
    }

    #banner p {
        font-size: 1.4em;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    #banner {
        height: 400px; /* Altura ajustada para telas ainda menores */
    }

    .banner-logo {
        max-width: 220px;
    }

    #banner p {
        font-size: 1.2em;
    }

    #banner .btn {
        font-size: 1.1em;
        padding: 12px 28px;
    }
}