@media (max-width: 900px) {
    body {
        max-width: 100%;
        overflow-x: hidden; /* Propriedade utilizada devido a erro no código não detectado ainda */
    }
    nav.navbar {
        padding: 0;
        background-color: var(--azul-marinho);
        height: 70px;
    }
    
    img.LogoMenu {
        display: block;
        max-height: 50px;
        margin: 5px 0px;
    }

    button.navbar-toggler, button.navbar-toggler::after {
        border-color:white;
    }

    i.MenuHamburguer {
        color:white;
        font-size: 30px;
    }

    .navbar-collapse {
        padding: 20px 15px;
        margin: 0px -15px;
        background-color: var(--azul-marinho);
    }

    li.nav-item {
        color:white;
        padding: 5px 15px;
    }

    li.nav-item a{
        color:white;
        text-decoration: none;
    }


/* Bloco Capa */

.BlocoCapa {
    display: block;
    max-width: 70%;
    width: 100%;
    margin: auto;
    text-align: center;
}

.BlocoCapa h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
}


section.Capa {
    width: 100%;
    min-height: 90vh;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Quem Somos */
section.QuemSomos {
    padding: 100px 20px;
}

.TextoSobre .primary-btn{
    display: table;
    margin: auto;
}
.TextoSobre {
    padding-top: 40px;
}

.TituloQuemSomos {
    text-align: left;
    margin-bottom: 60px;
}

.ItemQuemSomos {
    margin-bottom: 65px;
}

.ImagemQuemSomos img{

    border-radius: 2px;
    margin-top: 30px;
}

    /* Bloco Serviços */

    .ItemServicos {
    width: 100%;
    float: left;
    height: 480px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

/* Bloco Notícias */
section.Noticias {
    padding: 100px 0px;
}

.BlocoNoticia {
    display:block;
    margin:auto;
    height: 100%;
    position:relative;
    }
    
.BlocoNoticia a {
    position: initial;
    bottom:0px;
}

.NoticiasCol .col-12 {
    margin-bottom: 50px;
}

.LeiaMais h3 {
    text-align: center;
    color: var(--azul-marinho);
    font-size: 2.5rem;
    font-weight: 600;
}
 
img.FotoBlogLista {
    display:block;
    max-height: 300px;
    margin:auto;
    overflow-y:hidden;
    max-width: 96%;
    width: 100%;
    border-radius: .25rem;
}

/* Section Video Abertura */

section.VideoAbertura {
    padding: 100px 0px;
    background-image: url(../Images/FundoVideoApresentacao.png);
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

iframe.Youtube {
    max-width:100%;
    margin:0px auto;
    width: 90%;
    height:300px;
}
/* Contato */

.ContatoWhatsapp {
    display: block;
    text-align: center;
    margin: 100px auto 0px auto;
    padding: 70px 0px;
    height: auto;
    width: 100%;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../Images/FundoCapa.jpg);
}

.BlocoContatoWhatsapp {
    display: block;
}
.ContatoWhatsapp h3 {
    text-align: center;
    color: white;
    font-size: 2.3rem;
    line-height: 2.5rem;
    font-weight: 600 !important;
    margin-bottom: 20px;
}

.ContatoWhatsapp h4 {
    text-align: center;
    color: white;
    font-size: 1.0rem;
    line-height: 1.2rem;
    font-weight: 600;
}

/* Footer */
.FooterServicos{
    margin-bottom: 50px;
}

.FooterCopy {
    height: auto;
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
}

.FooterCopy h5 {
    display: table;
    font-size: 15px;
    font-weight: 400;
    color: white;
}

.FooterCopy a{
    color: white;
    transition: all 0.3s ease-in-out;
}

.FooterCopy a:hover{
    color: #87b038;
}

/* LGPD */

/* LGPD */

.BlocoLGPD {
    max-width: 100%;
    min-height: 100px;
    align-items: center;
    justify-content: center;
    background-color: rgb(34, 34, 59);
    position: fixed;
    z-index: 99;
    bottom: 0px;
    padding: 25px 10px;
}

.BlocoLGPD p {
    display: table;
    padding: 10px;
    font-size: 1rem;
    line-height: 1.1rem;
    color: white;
    text-align: left;
    margin-bottom: 0px;
}


a.ConfigCookie{ 
    color: white;
    font-size: 1rem;
    text-decoration: none;
    display: inline-table;
    padding: 5px;
    transition: all 0.3s ease-in-out;
    margin: 5px auto;
}
a.ConfigCookie:hover{ 
    color: white;
    font-size: 1rem;
    text-decoration: none;
    display: inline-table;
    padding: 5px;
    text-decoration: underline;
}

a.ConfigCookieBotao{ 
    border: solid 1px white;
    border-radius: 0.25rem;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    display: inline-table;
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
    margin: 5px auto;
}
a.ConfigCookieBotao:hover{ 
    border: solid 1px var(--laranja);
    border-radius: 0.25rem;
    color: var(--laranja);
    font-size: 1rem;
    text-decoration: none;
    display: inline-table;
    opacity: 0.8;
}


}