/* BANNER STYLES */
#banner {
    background-image: url('../../img/banner01.jpg'); /* Substitua pela sua imagem de banner */
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.banner-content {
    width: 100%;
    height: 100%;
}

.banner-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
    margin-top: 160px;
    color: #fff;
}

.banner-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.banner-btn {
    background: #062367;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

@media only screen and (max-width: 750px) {
    #banner {
        height: 400px;
    }
}

@media only screen and (max-width: 650px) {
    #banner {
        height: 350px;
    }
}

@media only screen and (max-width: 500px) {
    #banner {
        height: 280px;
    }
}

@media only screen and (max-width: 400px) {
    #banner {
        height: 230px;
    }
}

@media only screen and (max-width: 350px) {
    .banner-btn {
        font-size: 0.8em;
    }
}

@media only screen and (max-width: 300px) {
    .banner-btn {
        font-size: 0.7em;
    }
}

.banner-btn:hover {
    background: #082c80;
    color: #fff;
}