section.Banner {
    background-image: url(../img/BG/BannerFinal.webp);
    background-position: center;
    background-size: cover;
    height: 100vh;
    color: white;
    position: relative;
    padding: 0;
}

section.Banner .row {
    height: 100vh;
    width: 85%;
    margin: 0 auto;
}

section.Banner .aside-txt {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.Banner .aside-img {
    text-align: center;
    margin-top: 10%;
}

section.Banner .aside-img img {
    max-height: 40%;

}

section.Banner h2 {
    font-family: "Titulos", sans-serif;
    font-size: 5em;
    color: var(--Branco);
    position: relative;
    margin-bottom: 30px;
    
}

section.Banner h2::before {
    content: " ";
    width: 150px;
    height: 3px;
    background-color: var(--AzulEscuro);
    position: absolute;
    bottom: -8px;
}

section.Banner p {
    line-height: 1.3em;
    font-size: 1.5em;
    color: var(--PretoClaro);
    margin-right: 20px;
    text-align: center;
}
.marcacao {
    color: var(--AzulEscuro);
}

.btn-banner {
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 500;
    color: var(--PretoClaro);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 5%;
    left: 15%;
}

.btn-banner:hover {
    color: var(--PretoClaro);
}


@media (max-width: 1000px) {
    section.Banner {
        background-image: url(../img/BG/BannerFinalMob.webp);
        background-position: center;
        background-size: cover;
        height: 100vh;
    }

    section.Banner .row {
        height: 100vh;
        width: 90%;
        margin: 0 auto;
    }

    section.Banner .aside-txt {
        height: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0;
        margin: auto;
    }

    section.Banner h2 {
        font-size: 2.9rem;
        font-weight: 400;
    }
    section.Banner h2::before {
        content: " ";
        width: 33%;
        height: 3px;
        background-color: var(--AzulEscuro);
        position: absolute;
        left: 33%;
        bottom: -8px;
    }

    section.Banner p {
        font-size: 1.4rem;
        line-height: 1em;
    }

    .btn-banner {
        bottom: 1%;
        left: 31%;
    }
}


@media (max-width: 400px) {
    @media (max-height: 900px) {
        section.Banner .row {
            height: 100vh;
            width: 95%;
            margin: 0 auto;
        }
        section.Banner h2 {
            margin: 5px 0 15px 0;
        }
        section.Banner p {
            margin: 0;
        }
    }

    @media (max-height: 750px) {
        section.Banner .row {
            height: 100vh;
            width: 95%;
            margin: 0 auto;
        }

        section.Banner h2 {
            margin: 15 0px;
            font-size: 2.2rem;
        }

        section.Banner p {
            font-size: 1.2rem;
        }

        .btn-banner {
            font-size: 1.1em;
            left: 33%;
        }
    }
}