:root {
    --cor-primaria: #046EB3;
    --cor-secundaria: #08507F;
    --cor-branco: #ffffff;
    --cor-titulo: #585858;
    --cor-texto: #585858;
    --font-raleway: "Raleway", sans-serif;
    --fonte-titulo: "Poppins", sans-serif;
    --fonte-texto: "Inter", sans-serif;
    --transicao: all 0.3s ease-in-out;
}

body {
    background-color: #fff;
}

/*---------------TOPO------------------*/
.mostrar-mobile {
    display: none !important;
}

.erro-404 {
    height: 300px;
    line-height: 50px;
}

html {
    scroll-padding-top: 65px;
}

* {
    font-family: "Poppins", sans-serif;

    /* font-family: 'Open Sans', sans-serif; */
}

.texto-centro p {
    text-align: center;
}

.sombra {
    position: absolute;
    max-width: 100%;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%);
    height: 34px;
}


body {
    position: relative;
}

@media (max-width: 768px) {
    .titulo-area h2 {
        font-size: 1.8em;
    }

    .sombra {
        height: 18px;
        bottom: -18px;
    }

    footer {
        margin-top: 120px !important;
    }

}

@media(max-width:440px) {
    footer {
        margin-top: 110px !important;
    }
}

/* @media (max-width: 425px) {
    footer {
        margin-top: 150px !important;
    }
} */


/*  TOPO */

.topo .barra-menu {
    height: 50px;
    background-color: var(--cor-primaria);
    border-bottom: 3px solid var(--cor-branco);
}

.topo div.topo-itens {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 120px;
    padding-top: 15px;
}

.topo .center {
    display: flex;
    max-width: 1300px;
    /* max-width: 1100px; */
    height: 100%;
}

.topo.interno {
    height: 180px;
}

.barra-social {
    display: none;
}

.mostrar-login-form {
    top: -20px;
}

@media(max-width:425px) {
    .logo img {
        position: absolute;
        top: auto;
        left: 20px;
    }
}

/* NAVBAR */

.topo {
    border-top: 2px solid var(--cor-secundaria);
}

.topo .menu {
    text-align: center;
    list-style: none;
    align-items: center;
    display: flex;
    gap: 25px;
    width: 100%;
    justify-content: space-evenly;
}

.menu {
    list-style: none;
}

.menu li {
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.topo a.logo {
    background: url(../img/fundo.png) repeat-x;
    width: 100%;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topo a.logo img {
    width: 300px !important;
    height: min-content;
}

.menu li a {
    font-size: 16px;
    color: var(--cor-branco);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-family: var(--fonte-titulo);
    font-size: 1.25em;
}

.menu li.active {
    padding: 0 1.5%;
    height: 70px;
    background: #08507F;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    min-width: 80px;
    width: auto;
    z-index: 1;
}

.menu li.active::before {
    content: '';
    width: 18px;
    height: 11px;
    background: url(../img/ativo-before.png) center center no-repeat;
    position: absolute;
    top: 0px;
    left: -18px;
}

.menu li.active::after {
    content: '';
    width: 18px;
    height: 11px;
    background: url(../img/ativo-after.png) center center no-repeat;
    position: absolute;
    top: 0px;
    right: -18px;
}


@media (max-width: 1024px) {

    .menu li.active {
        height: 50px;
    }

    .menu li a {
        color: var(--cor-branco);
    }

    .menu li.active a {
        color: var(--cor-secundaria);
    }

    .menu li.active {
        border-radius: 5px;
        background-color: var(--cor-branco);
    }

    .menu li.active::before {
        content: none;
    }

    .menu li.active::after {
        content: none;
    }

    .topo {
        /* height: 100px; */
        margin-top: 0;
        top: 0;
    }

    .topo .center {
        width: 100%;
        display: block !important;
    }

    .menu-mobile-ativador {
        position: absolute;
        top: 20px;
        z-index: 2px;
        right: 30px;
        margin-top: 10px;
    }

    .topo .menu {
        position: absolute;
        flex-direction: column;
        top: 105px;
        align-items: center;
        width: 100%;
        left: -100%;
        transition: 0.5s;
        background: #ffffff;
        gap: 0;
    }

    .topo .mostrar-menu {
        left: 0%;
        z-index: 5;
        background: url(../img/fundo.png) repeat;
        position: relative;
    }

    .topo .mostrar-menu::before {
        position: absolute;
        top: 0;
        right: 0;
        content: '';
        width: 100%;
        height: 100%;
        background-color: var(--cor-primaria);
        opacity: 0.7;
    }

    .topo a.logo {
        height: 100px;
        position: absolute;
    }

    .topo a.logo img {
        width: 150px !important;
    }

    .menu li {
        flex-direction: column;
        width: 85%;
    }

    .topo .barra-menu {
        height: 100px;
        background-color: var(--cor-branco);
        border-bottom: 5px solid var(--cor-primaria);
    }

    .topo .barra-menu::before {
        position: absolute;
        top: 0;
        right: 0;
        content: '';
        width: 100%;
        height: 100%;
        /* background-color: var(--cor-secundaria); */
        opacity: 0.05;
    }

}

@media (max-width: 375px) {
    .topo a.logo img {
        width: 140px !important;
    }
}

/* BANNERS */

.banners {
    margin-bottom: 0px !important;
    /* height: 440px; */
    width: 100%;
    overflow: hidden;
}

.banners video {
    width: 100%;
    height: auto;
    /* object-fit: fill; */
    object-position: center;
    position: relative;
    top: 0;
    left: 0;
    display: block;
    /* height: 100%; */
    object-fit: cover;
}


.banners img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    /* margin-top: -2px; */
    object-fit: cover;
}

.banners .slick-active button::before, .banners button:hover:before {
    color: #3B457A !important;
}

.banners .slick-dots {
    background: rgb(200 64 64 / 80%);
    bottom: 35px;
}

.banners .item {
    position: relative;
}

.banner-extras {
    position: absolute;
    /* z-index: 3; */
    bottom: 50px;
    left: 50%;
    width: 100%;
    text-align: center;
    max-width: 560px;
    transform: translateX(-50%);
    padding-left: 100px;
    transition: 0.5s;
}

.banner-extras h2 {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 2.5em;
    line-height: 140%;
    text-align: left;
}

.banner-extras h4 {
    font-weight: 600;
    color: #FFFFFF;
    text-align: left;
    font-size: 1.125em;
    line-height: 165%;
}

.banner-extras .btns {
    display: flex;
}

.banner-extras .btns .btn1 {
    text-align: center;
    background: #C74040;
    color: #ffffff;
    padding: 14px 32px 14px 23px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.banner-extras .btns .btn2 {
    background: #4A407F;
    text-align: center;
    color: #ffffff;
    padding: 14px 23px;
    border-radius: 5px;
    position: relative;
    left: -10px;
}

.banner-extras .btns .btn1:hover {
    background: #a83434;
}

.banner-extras .btns .btn2:hover {
    background: #383062;
}

.texto-banner {
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 70%;
    z-index: 4;
}

.texto-banner h1 {
    font-size: 2.5em;
}

.texto-banner p {
    /* font-size:1.875em; */
    font-size: 2em;
}

.texto-banner.video {
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 70%;
    z-index: 4;
}

/* @media(max-width:1440px) {
    .texto-banner {
        position: absolute;
        top: 57%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 70%;
        z-index: 4;
    }

    .texto-banner.video {
        position: absolute;
        top: 57%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 70%;
        z-index: 4;
    }
} */


/* BANNER 1024 */
@media(max-width:1024px) {

    .item .texto-banner.imagem {
        top: 35%;
        left: 15%;
    }

    .texto-banner {
        transform: translate(0%, 0%);
    }

    /* .item .texto-banner .titulo h1 {
        font-size: 2em;
    }

    .texto-banner p{
        font-size: 1.75em;
    } */

    .banner .item-banner .texto-banner {
        width: 100%;
    }



}

/* BANNER 768 */
@media(max-width:768px) {
    .banner .item img {
        height: 100%;
    }

    .banner .item-banner .texto-banner {
        top: 10%;
        left: 0%;
        transform: translate(0%, 0%);
    }

    .banner .item .texto-banner {
        top: 460px;
    }

    .item .texto-banner .titulo h1 {
        font-size: 2em;
    }

    .texto-banner p {
        font-size: 1.75em;
    }

    /* .banner .item-banner .texto-banner {
         left: 10%;
     } */

    .banner .item-banner .texto-banner .descricao {
        margin-bottom: 30px;
        margin-top: 30px;
        font-size: 1.125em;
    }

}



@media(max-width:440px) {
    .banner .item-banner .texto-banner .titulo h1 {
        font-size: 1.5em;
        width: 300px;
    }

    .banner .item-banner .texto-banner .descricao {
        font-size: 1.125em;
        width: 320px;
    }

    .btn-banner a {
        padding: 15px 25px 15px 25px;
    }

    .banner .leia-mais-banner p {
        font-size: 1.125em;
    }

    .banner .item-banner .texto-banner {
        top: 7%;
    }

    .banner .item-banner .texto-banner {
        top: 10%;
        /* width: 290px; */
        width: 100%;
        left: 0%;
    }

    .banners .item .texto-banner .descricao p {
        width: auto;
        font-size: 1.5em;
    }


}



/* BANNER 392 */
@media(max-width:392px) {
    .banner .item .texto-banner {
        top: 40px;
    }
}

@media (min-width:376px) and (max-width:424px) {
    .banner .item-banner .texto-banner.video {
        top: 5%;
        left: 0%;
    }
}


/* BANNER 375 */
@media(max-width:375px) {
    .banner .item-banner .texto-banner .titulo h1 {
        font-size: 1em !important;
    }

    .btn-banner a {
        padding: 10px 20px 10px 20px;
    }


    .banner .item-banner .texto-banner {

        width: 100%;
        left: 1%;
    }

    .banner .item-banner .texto-banner.video {
        top: 5%;
    }

    .banner .item .texto-banner .titulo {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 80px;
    }

    .banner .item-banner .texto-banner .descricao {
        font-size: 0.875em;
        margin-top: 5px;
        margin-bottom: 5px;
    }

}


/* BANNER 320 */
@media(max-width:340px) {

    .banner .item-banner .texto-banner .titulo h1 {
        font-size: 1em;
        width: 100%;
        margin-left: 20px;
    }

    .banner .item-banner .texto-banner.video {
        left: 0% !important;
    }

    .banner .item-banner .texto-banner .descricao {
        width: auto;
        font-size: 0.75em;
        margin-left: 0px;
    }

    .btn-banner {
        padding: 10px 20px 10px 20px;
    }

    .banner .item .texto-banner {
        padding-top: 50px;
        top: -45px;
    }

    .banner .item-banner .texto-banner.video {
        top: 3%;
    }

    .banner .item .texto-banner .titulo {
        margin-bottom: 40px;
        margin: 25px auto;
    }

    .banner .item .texto-banner .titulo h1 {
        line-height: 35px;
    }

    .btn-banner p {
        font-size: 0.75em;
    }

}

@media (max-width: 1140px) {

    html {
        scroll-padding-top: 0;
    }

    .barra-social {
        /* display: block; */
        display: flex;
        width: 100%;
        justify-content: center;
        position: relative;
    }

    .barra-social .links {
        display: flex;
    }

    .barra-social .links a {
        font-size: 30px;
        padding: 15px;

    }

    /*Hamburger menu*/

    .hamburger .line {
        width: 40px;
        height: 4px;
        background-color: var(--cor-primaria);
        display: block;
        margin: 8px auto;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .hamburger:hover {
        cursor: pointer;
    }

    #hamburger-1.is-active .line:nth-child(2) {
        opacity: 0;
    }

    #hamburger-1.is-active .line:nth-child(1) {
        -webkit-transform: translateY(13px) rotate(45deg);
        -ms-transform: translateY(13px) rotate(45deg);
        -o-transform: translateY(13px) rotate(45deg);
        transform: translateY(11px) rotate(45deg);
    }

    #hamburger-1.is-active .line:nth-child(3) {
        -webkit-transform: translateY(-13px) rotate(-45deg);
        -ms-transform: translateY(-13px) rotate(-45deg);
        -o-transform: translateY(-13px) rotate(-45deg);
        transform: translateY(-14px) rotate(-45deg);
    }

    .banner-extras {
        bottom: 30px;
    }

    .banners .slick-dots {
        bottom: 4px;
        background: transparent;
    }

    .banner-extras h2 {
        font-size: 2.1875em;
    }

    .banner-extras {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

    .menu .submenu .submenu-itens a {
        justify-content: flex-start;
        padding-left: 18px;
    }

}

@media screen and (max-width: 1024px) {
    .banners {
        height: 100%;
    }
}

@media (max-width: 450px) {
    .nav-area {
        align-items: flex-start;
    }

    .menu-mobile-ativador {
        right: 20px;
    }

    .nav-area {
        padding-top: 25px;
    }
}



/* FOOTER */

footer {
    margin-top: 100px;
}

/* footer .faixa {
    background-color: var(--cor-primaria);
    height: 105px;
    bottom: 275px;
    width: 100%;
}

footer .faixa .center {
    height: 100%;
}

footer .faixa .conteudo {
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    align-items: center;
}

footer .faixa .conteudo p {
    font-size: 1.5625em;
    color: var(--cor-branco);
}

footer .faixa .conteudo a {
    height: 44px;
    width: 344px;
    border-radius: 5px;
    border: 2px solid var(--cor-branco);
    color: var(--cor-branco);
    font-family: var(--font-raleway);
    font-size: 1.5625em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transicao);
    background-color: var(--cor-secundaria);
}

footer .faixa .conteudo a:hover {
    background-color: transparent;
}

footer .faixa .sombra-faixa {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 34px;
    width: 60%;
} */

@media screen and (max-width: 768px) {
    footer .faixa {
        padding: 15px 0;
    }

    footer .faixa .conteudo {
        flex-wrap: wrap;
    }
}


footer .area-container {
    background-color: #f3f3f3;
    margin-top: -60px;
}

footer .area-container .area-info {
    width: 100%;
    display: flex;
    justify-content: center;
}

footer .area-container .area-um {
    width: 33%;
    display: flex;
    gap: 10px;
    flex-direction: column;
}


footer .area-container .area-um span {
    font-size: 1.375em;
    color: var(--cor-titulo);
    font-weight: bold;
    font-family: var(--fonte-texto);
    margin-bottom: 20px;
}

footer .area-container .area-um .item {
    display: flex;
    gap: 10px;
}

footer .area-container .area-um .item .area-icone {
    width: 50px;
}

footer .area-container .area-um .item .area-icone img {
    width: 25px;
}

footer .area-container .area-um .item .area-texto a {
    font-size: 1em;
    color: var(--cor-titulo);
    letter-spacing: 0px;
    font-family: var(--fonte-texto);
}

footer .area-container .area-um .item a.endereco {
    font-family: var(--fonte-texto);
}

footer .area-container .area-dois {
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .area-container .area-dois ul {
    line-height: 180%;
}

footer .area-container .area-tres {
    width: 33%;
    display: flex;
    justify-content: center;

}

footer .area-container .area-tres .bolinha-social {
    width: 40px !important;
    height: 40px !important;

}

footer .area-container .area-tres .bolinha-2 {
    background-color: #848688;
    color: #ECECEC;
}

footer .area-container .area-tres .bolinha-2 i {
    font-size: 28px;
}

.area-dois li::marker {
    color: var(--cor-secundaria);
}

.area-dois li a {
    color: #585858;
    font-family: var(--fonte-texto);
    margin-bottom: 10px;
}

@media(max-width:1280px) {
    footer .area-container .area-info {
        width: 95%;
    }

    iframe.video-acompanhe {
        margin-left: 0px !important;
        margin-top: 0px !important;
    }

    #video-destaque-home {
        margin-top: 15px;
    }

    .titulo-video-destaque-home {
        margin-bottom: 10px;
    }

    #facebook-home {
        height: auto !important;
    }
}

@media(max-width:768px) {
    footer .barra .developer {
        width: 100% !important;
        justify-content: center !important;
    }

    footer .barra .center-menor {
        flex-direction: column;
        align-items: center;
    }

    footer .barra .copyright {
        flex-direction: column;
    }

    footer .area-container .area-um .item .area-icone {
        width: auto;
    }
}

@media(max-width:425px) {
    footer .area-container {
        padding-bottom: 10px !important;
    }

    footer .area-container .area-info {
        flex-direction: column;
        width: 90%;
        gap: 10px;
        top: 20px;
    }

    footer .sombra {
        bottom: 361px !important;
    }

    /* footer .area-container .area-um,
    footer .area-container .area-dois,
    footer .area-container .area-tres {
        width: 100%;
    } */

    footer .area-container .area-tres {
        justify-content: center;

    }

    footer .barra .center-menor {
        flex-direction: column;
        align-items: center;
    }

    footer .barra .copyright {
        flex-direction: column;
    }

}

@media (max-width: 375px) {

    footer .sombra {
        bottom: 381px !important;
    }
}

@media(max-width:320px) {

    footer .sombra {
        bottom: 381px !important;
    }
}

/* RODAPE */

.footer {
    background-color: #EAEAEA;
}

footer .barra .copyright,
footer .barra .copyright a {
    font-size: 1em;
    color: #585858;
    margin-left: 5px;
    font-weight: 400;
}

footer .barra .copyright a {
    text-decoration: underline;
}

footer .barra {
    min-height: 80px;
    background: #ffffff;
    border-top: 3px solid #939CE7;
    /* box-shadow: 0px -1px 6px rgba(0, 0, 0, 0.1); */
    display: flex;
    align-items: center;
}

footer .barra .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

footer .barra img {
    width: 86px;
}


@media (max-width: 768px) {


    footer .barra {
        height: auto;
        padding: 15px 0;
    }

    footer .barra .center {
        flex-direction: column;
    }

    footer .barra .copyright {
        text-align: center;
        margin-bottom: 12px;
    }

    footer .area-dois .links-area {
        width: 100%;
        padding-bottom: 0;
    }

    footer .area-dois .links-area-2 {
        width: 100%;
        padding-bottom: 0;
    }
}


/* =============== POPUP INICIO =============== */

.popup {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.popup_content {
    position: relative;
    margin: auto;
    padding: 0;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    width: 80%;
    max-width: 650px;
    height: auto;
}

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

.popup_imagem_full {
    width: 100%;
    height: 100%;
    float: left;
    position: relative;
    top: -35px;
}

.popup_imagem_full img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 7px;
    background: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
}

.popup_youtube_full {
    width: 100%;
    position: relative;
    padding-bottom: 60%;
    height: 0;
}

.popup_youtube_full iframe {
    padding: 7px;
    background: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.popup_youtube_full .legenda {
    bottom: -35px;
    left: 50%;
    position: absolute;
    transform: translate(-50%, 40%);
    text-align: center;
}

.popup_video_full {
    width: 100%;
    position: relative;
    padding-bottom: 60%;
    height: 0;
}

.popup_video_full video {
    padding: 7px;
    background: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.popup_video_full .legenda {
    bottom: -35px;
    left: 50%;
    position: absolute;
    transform: translate(-50%, 40%);
    text-align: center;
}

.popup .legenda {
    display: flex;
    justify-content: center;
}

.popup .legenda span {
    background: #000;
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 17px;
    margin-top: 5px;
}

.close {
    color: #000;
    float: right;
    font-size: 2.1875em;
    z-index: 999;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    position: relative;
    right: -14px;
    top: -16px;
    background: #ffffff;
    height: 38px;
    width: 38px;
    text-align: center;
    border-radius: 50%;
    border: solid 1px #c1c1c1;
}

.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    background: #dddddd;
}

@media (max-width: 768px) {
    .popup_content {
        width: 98%;
    }
}

@media (max-width: 700px) {
    .close {
        right: -2px;
    }
}

/* =============== POPUP FIM =============== */

/*Redes sociais lateral*/

.redes-sociais {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}

.redes-sociais a {
    text-decoration: none;
}

.redes-sociais-right {
    height: auto;
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition: 1s;
}

.redes-sociais-right a {
    text-decoration: none;
    margin-top: 18px;
}

.bolinha-social {
    background: #efefef;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.250em;
    color: #989898;
    margin: 0 5px;
    transition: 0.5s;
}

.redes-sociais-rodape .bolinha-social:hover i.fa-whatsapp {
    color: #25D366;
}

.redes-sociais-rodape .bolinha-social:hover i.fa-youtube {
    color: #FF0000;
}

.redes-sociais-rodape .bolinha-social:hover i.fa-instagram {
    color: #C13584;
}

.redes-sociais-rodape .bolinha-social:hover i.fa-facebook-f {
    color: #3b5998;
}

.redes-sociais-right .fa-facebook-f {
    color: #ffffff;
}

.redes-sociais-right .fa-twitter {
    color: #ffffff;
}

.redes-sociais-right .fa-linkedin-in {
    color: #ffffff;
}

.redes-sociais-right .fa-instagram {
    color: #ffffff;
    font-size: 1.1875em;
}

.redes-sociais-right .fa-whatsapp {
    color: #ffffff;
    font-size: 1.125em;
}

.redes-sociais-right .fa-youtube {
    color: #ffffff;
    font-size: 1.1em;
}

.bolinha-facebook {
    background: #3b5998 !important;
}

.bolinha-linkedin {
    background: #2867B2 !important;
}

.bolinha-instagram {
    background: #C13584 !important;
}

.bolinha-twitter {
    background: #1DA1F2 !important;
}

.bolinha-whatsapp {
    background: #25D366 !important;
}

.bolinha-youtube {
    background: #FF0000 !important;
}

.bolinha-tour {
    background: #354b9c;
    box-shadow: 2px 0px 6px 6px rgb(255 255 255 / 75%);
    -webkit-box-shadow: 0px 0px 6px 4px rgb(255 255 255 / 75%);
    -moz-box-shadow: 0px 0px 6px 6px rgba(255, 255, 255, 0.75);
}

.bolinha-tour img {
    width: 58px;
    margin-top: 4px;
}

.bolinha-tour:hover {
    background: #354b9c;
}

.redes-sociais-right .bolinha-social:hover {
    transform: scale(1.2);
}


@media (max-width: 768px) {
    .redes-sociais-right {
        top: -100%;
    }

    .mostrar-redes-sociais {
        top: 150px;
        transform: none;
    }
}

/* =============== FIM REDES SOCIAIS =============== */





/* =============== HOME =============== */

/* DESTAQUE HOME  */


#destaque_home {
    /* position: relative; */
}

#destaque_home .center {
    height: 200px;
}

#destaque_home .destaques {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

#destaque_home .destaques .item-destaque {
    width: 30%;
    position: relative;
    top: -100px;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transicao);
}

#destaque_home .destaques .item-destaque img.icone {
    transition: var(--transicao);
}

#destaque_home .destaques .item-destaque .barra {
    width: 100%;
    height: 5px;
    position: absolute;
    z-index: 0;
    top: 49px;
    left: 10px;
}

#destaque_home .destaques .item-destaque .barra.social {
    background-color: #EBBE2A;
}

#destaque_home .destaques .item-destaque .barra.lazer {
    background-color: #4AB17F;
}

#destaque_home .destaques .item-destaque .barra.esporte {
    background-color: #0089E1;
}

#destaque_home .destaques .item-destaque .area-icone {
    z-index: 1;
    position: relative;
}

#destaque_home .destaques .item-destaque .area-nome {
    position: absolute;
    bottom: -70px;
    text-align: center;
    z-index: 1;
    width: 100%;
    right: 0;
}

#destaque_home .destaques .item-destaque .area-nome2 {
    display: none;
}

#destaque_home .destaques .item-destaque .area-nome h3 {
    font-size: var(--fonte-titulo);
    font-size: 1.5625em;
    font-weight: 400;
    color: var(--cor-titulo);
    transition: var(--transicao);
    /* padding-bottom: 10px; */
}

#destaque_home .destaques .item-destaque .area-nome p {
    font-family: var(--fonte-texto);
    font-size: 1.125em;
    font-weight: 300;
    color: var(--cor-titulo);
    transition: var(--transicao);
}

#destaque_home .destaques .item-destaque:hover img.icone {
    transform: scale(1.03);
}

#destaque_home .destaques .item-destaque:hover .area-nome.social h3,
#destaque_home .destaques .item-destaque:hover .area-nome.social p {
    color: #EBBE2A;
}

#destaque_home .destaques .item-destaque:hover .area-nome.lazer h3,
#destaque_home .destaques .item-destaque:hover .area-nome.lazer p {
    color: #4AB17F;
}

#destaque_home .destaques .item-destaque:hover .area-nome.esporte h3,
#destaque_home .destaques .item-destaque:hover .area-nome.esporte p {
    color: #0089E1;
}

#destaque_home .destaques .item-destaque .card-hover {
    height: 360px;
    width: 100%;
    position: absolute;
    bottom: 48px;
    background-color: var(--cor-branco);
    display: none;
    right: -11px;
}

#destaque_home .destaques .item-destaque .card-hover.social {
    border-top: 5px solid #EBBE2A;
}

#destaque_home .destaques .item-destaque .card-hover.lazer {
    border-top: 5px solid #4AB17F;
}

#destaque_home .destaques .item-destaque .card-hover.esporte {
    border-top: 5px solid #0089E1;
}

#destaque_home .destaques .item-destaque .card-hover .card-img {
    height: 190px;
    width: 100%;
}

#destaque_home .destaques .item-destaque .card-hover .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#destaque_home .destaques .item-destaque .card-hover .card-texto {
    padding: 10px 28px;
    text-align: center;
    font-size: var(--fonte-texto);
    font-size: 1.125em;
    font-weight: 300;
    color: var(--cor-titulo);
}

#destaque_home .destaques .item-destaque .card-hover .card-texto p {
    font-size: var(--fonte-texto);
    font-size: 1.125em;
    font-weight: 300;
    color: var(--cor-titulo);
    /* transition: var(--transicao); */
}

#destaque_home .destaques .item-destaque.social:hover .card-hover.social,
#destaque_home .destaques .item-destaque.esporte:hover .card-hover.esporte,
#destaque_home .destaques .item-destaque.lazer:hover .card-hover.lazer {
    display: block;
}

#destaque_home .sombra-destaque {
    position: absolute;
    width: 100%;
    height: 34px;
    top: 5px;
    left: 0;
}

@media screen and (max-width:1024px) {
    #destaque_home .center {
        height: auto;
    }

    #destaque_home .destaques {
        margin-top: 35px;
        margin-bottom: 35px;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    #destaque_home .sombra-destaque {
        display: none;
    }

    #destaque_home .destaques .item-destaque .card-hover {
        display: block;
        border-top: none !important;
    }

    #destaque_home .destaques .item-destaque .barra {
        position: relative;
        z-index: 1;
        left: 0;
    }

    #destaque_home .destaques .item-destaque {
        height: 415px;
        flex-direction: column;
        top: 0;
        justify-content: end;
        width: 290px;
    }

    #destaque_home .destaques .item-destaque .area-nome {
        display: none;
    }

    #destaque_home .destaques .item-destaque .area-nome2 {
        display: block;
        position: absolute;
        z-index: 1;
        top: 1px;
        right: 0;
        color: var(--cor-branco);
        font-weight: 500;
        padding: 3px 10px;
    }

    #destaque_home .destaques .item-destaque .area-nome2.social {
        background-color: #EBBE2A;
    }

    #destaque_home .destaques .item-destaque .area-nome2.esporte {
        background-color: #0089E1;
    }

    #destaque_home .destaques .item-destaque .area-nome2.lazer {
        background-color: #4AB17F;
    }

}

/* =============== FIM HOME =============== */

/* =============== AREA CONTEUDO HOME =============== */

/* .fundo-conteudo{
	width:100%;
	height:auto;
}
.conteudo{
	width:1100px;
	height:auto;
	margin: 0 auto;
} */


/*NOTICIAS HOME*/

#area-novidades {
    /* background-color: #F5F6F6; */
    background-color: var(--cor-branco);
}

.linha-todos-paginas {
    width: 500px;
    height: 1px;
    margin: 0 auto;
    background: url(../img/risco.png) no-repeat;
}


.area-conteudos {
    display: flex;
    /* gap:10px; */
    justify-content: center;
}

.area-noticias-home {
    width: 65%;
}

.area-conteudo-lateral {
    width: 30%;
}

#fundo-noticias-home {
    width: 700px;
    height: auto;
    float: left;
}

.cada-noticia-home {
    /* width:700px; */
    width: 90%;
    height: auto;
    margin-top: 10px;
}

.cada-noticia-home .cada-div-img-noticia-home img {
    width: 100%;
    max-height: 260px;
}

.linha-titulo-noticia-home {
    width: 700px;
    height: 3px;
}

.cada-noticia-home .cada-div-img-noticia-home {
    width: 300px;
    height: auto;
    margin: 10px 10px 0px 0px;
    /* margin-bottom: 10px; */
    /* overflow: hidden; */
    float: left;
}

.cada-noticia-home .cada-div-img-noticia-home video {
    width: 100%;
    max-height: 260px;

}

.previa-noticia-home {
    margin-top: 10px;
    height: auto !important;
}

.fotos-extras {
    display: flex;
}

.foto-gal-noticia {
    width: 130px;
    overflow: hidden;
    height: 160px;
    margin: 5px;
    position: relative;
}

.foto-gal-noticia img {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -10%);
}

.foto-gal-noticia .horizontal {
    height: 100%;
}

.foto-gal-noticia .vertical {
    /*height:  100%;*/
    width: 100%;
}

.foto-gal-noticia.mais-foto {
    background: #666;
}

.mais-quant-fotos {
    background: rgba(88, 88, 88, 0.5);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.mais-quant-fotos span {
    position: absolute;
    top: 0;
    z-index: 3;
    color: #fff;
    width: 100%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: bold;
}

/* noticias home */

.titulo-noticia-home {
    font-family: var(--fonte-titulo);
    font-size: 1.5em;
    font-weight: 400;
    color: #585858;
    /* background-color: red; */
}

.previa-noticia-home {
    /* width:700px; */
    height: 130px;
    font-family: var(--fonte-texto);
    font-size: 1em;
    font-weight: 300;
    color: #585858;
    /* color: #666666; */
    line-height: 26px;

}

.cada-noticia-home a:hover .previa-noticia-home {
    text-decoration: underline;
}


/* AREA DA DIREITA - INFORMATIVOS E VIDEOS */
/* INFORMATIVOS HOME */

#fundo-tbt-home {
    width: 385px;
    height: 350px;
    background: url(../img/fundo_tbt.png) no-repeat;
    float: right;
    margin-top: 35px;

}

#conteudo-tbt-home {
    width: 377px;
    height: auto;
}


#conteudo-informativo-home {
    height: auto;
}

.cada-informativo-home, .cada-informativo-home-video {
    width: 377px;
    height: 115px;
    margin-top: 25px;
}

.cada-informativo-home img {
    width: 120px;
    height: 80px;
    float: left;
    margin-left: 10px;
    margin-top: 5px;
}

.cada-informativo-home-video img {
    width: 120px;
    height: 80px;
    float: left;
    margin-left: 10px;
    margin-top: 5px;
}

.cada-informativo-home video {
    width: 120px;
    height: 80px;
    float: left;
    margin-left: 10px;
    margin-top: 5px;
}

.cada-informativo-home-video video {
    width: 120px;
    height: 80px;
    float: left;
    margin-left: 10px;
    margin-top: 5px;
}



#botao-veja-mais-informativo-home {
    width: 120px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    background-color: #4AB17F;
    /* background-color: #6DC234; */
    /* background: url(../img/botao-veja-mais.png) no-repeat; */
    margin-right: 10px;
    border-radius: 4px;
    border-bottom: 2px solid #3C9067;
    color: #fff;
    font-size: 0.938em;
    transition: var(--transicao);
    box-sizing: border-box;
}

#botao-veja-mais-informativo-home:hover {
    background-color: #fff;
    color: #3C9067;
    border: 1px solid #3C9067;
}

#fundo-informativos-home {
    width: 385px;
    height: 654px;
    /* background: url(../img/fundo-videos.png) no-repeat; */
    box-shadow: 0px -1px 6px rgba(0, 0, 0, 0.2);
    float: right;
    margin-top: 35px;
    border-radius: 4px;
}

#fundo-videos-home {
    width: 385px;
    height: 654px;
    /* background: url(../img/fundo-videos.png) no-repeat; */
    box-shadow: 0px -1px 6px rgba(0, 0, 0, 0.2);
    float: right;
    margin-top: 35px;
    display: none;
    border-radius: 4px;
}

/*cada informativo*/
.titulo-cada-informativo-home {
    font-family: var(--fonte-titulo);
    font-size: 1.125em;
    color: #585858;
    padding-left: 10px;
}

.previa-cada-informativo-home {
    font-family: var(--fonte-texto);
    font-size: 0.875em;
    /* color: #666666; */
    color: #585858;
    line-height: 20px;
    width: 235px;
    height: 77px;
    float: right;
    font-weight: 300;
    padding-top: 3px;
    /* text-align:justify; */
    padding-right: 5px;
}

.cada-informativo-home a:hover .previa-cada-informativo-home {
    text-decoration: underline;
}

.cada-informativo-home-video a:hover .previa-cada-informativo-home {
    text-decoration: underline;
}

/* * lado esquerdo home- informativos */

.titulo-unico-informativos {
    font-family: var(--fonte-titulo);
    font-size: 1.125em;
    color: #585858;
    padding-left: 12px;
    margin-top: 10px;
    cursor: pointer;
    width: auto;
    height: auto;
    font-weight: 600;
}

.titulo-unico-informativos a:hover {
    text-decoration: underline;
    color: #999999;
}

.titulo-unico-videos {
    font-family: var(--fonte-texto);
    font-size: 1.125em;
    color: #585858;
    padding-left: 175px;
    margin-top: -32px;
    /* margin-top:-25px; */
    cursor: pointer;
    width: auto;
    height: auto;
    font-weight: 600;

}

.titulo-unico-videos a:hover {
    text-decoration: underline;
    color: #999999;
}

/*video destaque */

.titulo-video-destaque-home {
    font-family: var(--fonte-titulo);
    font-size: 1.125em;
    color: #585858;
    padding-top: 10px;
}

/* video destaque home */

#video-destaque-home {
    width: 377px;
    height: 240px;
    float: right;
}

#facebook-home {
    width: 377px;
    height: 250px;
    float: right;
    margin-top: 25px;

}

/* #facebook-home .fb-page {
    width: 358px !important;
} */

iframe.video-acompanhe {
    width: 358px !important;
}


/*galeria home */
.cada-foto-galeria-home {
    width: 265px;
    height: 167px;
    float: left;
    margin-left: 10px;
    margin-top: 20px;
}

.fotos-galeria-home {
    width: 250px;
    height: 167px;
}

.cada-img-galeria-home {
    position: relative;
    width: 250px;
    height: 167px;
    overflow: hidden;
}

.cada-img-galeria-home>img {
    width: 100%;
    border-radius: 2px;
    -webkit-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    -moz-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    -ms-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    -o-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);


}

.cada-img-galeria-home:hover>img {
    transform: rotate(6deg) scale(1.2);
    -webkit-transform: rotate(6deg) scale(1.2);
    -moz-transform: rotate(6deg) scale(1.2);
    -o-transform: rotate(6deg) scale(1.2);
    -ms-transform: rotate(6deg) scale(1.2);
}

/* --area faixa -- */

.area-faixa .faixa {
    background-color: var(--cor-primaria);
    height: 105px;
    bottom: 275px;
    width: 100%;
    margin-top: 30px;
}

.area-faixa .faixa .center {
    height: 100%;
}

.area-faixa .faixa .conteudo {
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    align-items: center;
}

.area-faixa .faixa .conteudo p {
    font-size: 1.5em;
    color: var(--cor-branco);
}

.area-faixa .faixa .conteudo a {
    height: 44px;
    width: 344px;
    border-radius: 5px;
    border: 2px solid var(--cor-branco);
    color: var(--cor-branco);
    font-family: var(--fonte-texto);
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transicao);
    background-color: var(--cor-secundaria);
}

.area-faixa .faixa .conteudo a:hover {
    background-color: transparent;
}

.area-faixa .faixa .sombra-faixa {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 34px;
    width: 60%;
}

/* --- area infraestrutura --- */

#area-infraestrutura {
    margin-top: 30px;
}

#area-infraestrutura h2 {
    font-family: var(--fonte-titulo);
    text-align: center;
    font-size: 1.875em;
    color: #454545;
    font-weight: 600;
}

.area-cards-infraestrutura {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.card-infraestrutura {
    width: 255px;
    height: 390px;
}

.card-infraestrutura {
    transition: var(--transicao);
}

.card-infraestrutura:hover {
    transform: scale(1.05);
}

.card-infraestrutura .foto-infraestrutura img {
    width: 255px;
    height: 340px;
    object-fit: cover;
}

.card-infraestrutura .foto-infraestrutura video {
    width: 255px;
    height: 340px;
    object-fit: cover;
}

.cada-infraestrutura-home .cada-img-infraestrutura-home {
    width: 255px;
    height: 340px;
    overflow: hidden;
}

.fundo-nome-cada-infra-estrutura-home {
    width: 255px;
    height: 50px;
    background: #08507F;
    margin-top: -7px;
}

.fundo-nome-cada-infra-estrutura-home p {
    font-family: var(--fonte-texto);
    font-size: 1.125em;
    color: #FFFFFF;
    padding-left: 15px;
    padding-top: 10px;
}

.cada-infraestrutura-home a:hover .fundo-nome-cada-infra-estrutura-home p {
    text-decoration: underline;
}

.area-botao {
    width: 92.2%;
    margin-top: 30px;
    margin-bottom: 30px;
    /* margin-top:30px;
    margin-bottom:30px; */
    display: flex;
    justify-content: end;

}

#botao-veja-mais-infraestrutura-home {
    width: 120px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* float:right; */
    background-color: #4AB17F;
    /* background: url(../img/botao-veja-mais.png) no-repeat; */
    border-radius: 4px;
    border-bottom: 2px solid #3C9067;
    color: #fff;
    font-size: 0.938em;
    transition: var(--transicao);
    box-sizing: border-box;
    /* margin-top:30px;
    margin-bottom:30px; */
}

#botao-veja-mais-infraestrutura-home:hover {
    background-color: #fff;
    color: #3C9067;
    border: 1px solid #3C9067;

}

.area-faixa .faixa .conteudo a.veja-mais-historia {
    height: 44px;
    width: 344px;
    border-radius: 5px;
    border: 2px solid var(--cor-branco);
    color: var(--cor-branco);
    font-family: var(--fonte-titulo);
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transicao);
    background-color: #4AB17F;
}

.area-faixa .faixa .conteudo a.veja-mais-historia:hover {
    background-color: transparent;
}

/* .area-faixa .faixa .conteudo .btn-historia a {
    height: 44px;
    width: 344px;
    border-radius: 5px;
    border: 2px solid var(--cor-branco);
    color: var(--cor-branco);
    font-family: var(--fonte-titulo);
    font-size: 1.5625em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transicao);
    background-color: #4AB17F;
}

.area-faixa .faixa .conteudo .btn-historia a:hover{
    background-color: transparent;
} */



/* media query */

@media(max-width:1024px) {
    .area-conteudos {
        display: flex;
        flex-direction: column;
    }

    .area-noticias-home {
        width: 100%;
    }

    .area-conteudo-lateral {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 40px;
    }

    .area-mq {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    #fundo-informativos-home, #fundo-videos-home {
        width: 60%;
        margin: auto;
    }

    .area-redes-sociais {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* .area-mq {
        display: flex;
    }

    .area-redes-sociais {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    #fundo-informativos-home {
        width: 50%;
        display: flex;
        flex-direction: column;
        background-color: #fff;
        background-image: none;
        margin-top: 0px;
    } */

    .area-cards-infraestrutura {
        flex-wrap: wrap;
    }

    .card-infraestrutura {
        height: 380px;
    }

    .cada-noticia-home {
        width: 90%;
        display: flex;
        flex-direction: column;
        margin: auto;
        padding-top: 50px;
        /* padding-bottom: 50px; */
    }

    .previa-noticia-home, .linha-titulo-noticia-home {
        width: 95%
    }

    .facebook-home-footer iframe {
        width: auto;
    }



    /* .cada-infraestrutura-home .cada-img-infraestrutura-home{
        width:204px;
    }

    .fundo-nome-cada-infra-estrutura-home{
        width:204px;
    } */
}


@media(max-width:768px) {
    .cada-noticia-home {
        width: 100%;
    }



    .area-mq {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #fundo-informativos-home, #fundo-videos-home {
        width: 80%;
        background: #fff;
    }

    .card-infraestrutura {
        height: auto !important;
    }


    .conteudo-cada-informativo-home {
        height: 100px;
        display: flex;
        justify-content: center;
        gap: 30px;
        align-items: center;
        /* background-color: aquamarine; */
    }

    .conteudo-cada-video-home {
        height: 100px;
        display: flex;
        justify-content: center;
        gap: 30px;
        align-items: center;
    }

    #fundo-informativos-home, #fundo-videos-home {
        height: auto;
    }

    .cada-informativo-home, .cada-informativo-home-video {
        width: 100%;
        display: flex;
        justify-content: center;
        /* background-color: aquamarine; */
        height: auto;

    }

    .area-faixa .faixa .conteudo p {
        font-size: 1.125em;
    }

    .area-faixa .faixa .conteudo a.veja-mais-historia {
        width: 30%;
        font-size: 1.125em;
    }

    .area-faixa .faixa .conteudo a {
        width: 30%;
        font-size: 1.125em;
    }

    .area-botao {
        width: 88%;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    footer .area-container .area-info {
        width: 92%;
        gap: 30px;
        display: flex;
        flex-direction: row !important;
    }


}

@media(max-width:475px) {

    #area-infraestrutura h2 {
        font-size: 1.5em;
    }

    .area-cards-infraestrutura {
        flex-direction: column;
    }

    #destaque_home .destaques .item-destaque .card-hover .card-texto p {
        width: 100%;
    }

    #destaque_home .destaques .item-destaque .card-hover {
        width: auto;
    }

    .previa-noticia-home {
        display: flex;
        flex-direction: column;
    }

    /* add */
    #destaque_home .destaques .item-destaque .card-hover {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;

    }

    #destaque_home .destaques .item-destaque .area-nome2 {
        top: 49%;
        right: -11px;
    }

    #destaque_home .destaques .item-destaque.social:hover .card-hover.social,
    #destaque_home .destaques .item-destaque.esporte:hover .card-hover.esporte,
    #destaque_home .destaques .item-destaque.lazer:hover .card-hover.lazer {
        display: flex;
    }

    .destaque_home .destaques {
        gap: 0px;
    }

    #destaque_home .destaques .item-destaque {
        justify-content: flex-start;
    }

    #destaque_home .destaques .item-destaque .card-hover {
        justify-content: end;
    }

    #destaque_home .destaques .item-destaque .card-hover {
        bottom: 18px;
    }

    /* fim add */
    .previa-noticia-home, .linha-titulo-noticia-home {
        width: 100%;
    }

    .cada-noticia-home .cada-div-img-noticia-home {
        display: flex;
        margin: auto;
        padding-bottom: 15px;
    }

    .previa-noticia-home {
        display: flex;
        flex-direction: column;
    }

    .fotos-extras {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    #fundo-informativos-home, #fundo-videos-home {
        width: 100%;
    }

    #fundo-videos-home .botao-veja-mais-informativo-home {
        margin-bottom: 20px;
    }

    .area-faixa .faixa {
        height: 120px;
    }

    .area-faixa .faixa .conteudo a {
        width: 50%;
    }

    .area-redes-sociais {
        width: 100%;
    }

    .area-faixa .faixa .conteudo {
        display: flex;
        /* flex-direction: column; */
        justify-content: center;
        gap: 10px;
    }

    #facebook-home {
        height: auto;

    }

    .area-cards-infraestrutura {
        align-items: center;
    }

    .area-faixa .faixa .conteudo a.veja-mais-historia {
        width: 50%;
        font-size: 1em;
    }

    .area-botao {
        width: 100%;
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    footer .area-container .area-info {
        display: flex;
        flex-direction: column !important;
    }

    ul.mapa-site {
        margin-left: 19px;
    }

    footer .area-container .area-um {
        width: 100%
    }

    footer .area-container .area-tres {
        width: 100%;
        justify-content: flex-start !important;
    }

    .copyright {
        flex-direction: column;
    }

    .center-menor {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .center-menor .developer {
        width: 100%;
    }

    footer .barra .copyright {
        font-size: 0.875em;
    }
}


@media (max-width:440px) {
    .cada-noticia-home .cada-div-img-noticia-home {
        width: 260px;
    }

    .area-faixa .faixa .conteudo p, .area-faixa .faixa .conteudo a {
        font-size: 1em;
    }

    .area-faixa .faixa .conteudo a {
        height: 40px;
    }

    ul.mapa-site li {
        margin-bottom: 10px;
    }

    .barra .copyright {
        font-size: 0.875em !important;
    }

    .barra .developer {
        width: auto;
    }
}

@media(max-width:425px) {
    footer .area-container .area-tres {
        padding-bottom: 40px;
    }
}

@media(max-width:375px) {

    .cada-noticia-home {
        padding-top: 30px;
    }

    .cada-noticia-home .cada-div-img-noticia-home {
        width: 216px;
    }

    .conteudo-cada-informativo-home {
        flex-direction: column;
        height: auto;
        gap: 11px;
        justify-content: center;
    }

    .titulo-cada-informativo-home {
        text-align: center;
        padding-bottom: 5px;
    }

    .cada-informativo-home, .cada-informativo-home-video {
        width: 100%;
        /* height: 220px; */
        height: auto;
    }

    iframe.video-acompanhe {
        width: 100% !important;
        object-fit: contain;
    }

    .previa-cada-informativo-home {
        width: 90%;
        height: auto;
    }

    #botao-veja-mais-informativo-home {
        margin-top: 10px;
    }

    .titulo-video-destaque-home {
        text-align: center;
        margin-bottom: 10px;
    }

    #video-destaque-home {
        height: auto;
        width: auto;
    }

    iframe {
        width: 258px !important;
        text-align: center;
        margin-top: 0px !important;
    }

    #facebook-home {
        width: auto;
    }

    #facebook-home .fb-page {
        margin-top: 10px;
    }

    .area-faixa .faixa .conteudo {
        flex-direction: column;
    }

    .card-infraestrutura {
        height: auto;
    }

    .card-infraestrutura .foto-infraestrutura img {
        height: 250px;
    }

    .card-infraestrutura:hover {
        transform: none;
    }

    .area-botao {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .area-faixa .faixa .conteudo a.veja-mais-historia {
        height: 40px;
    }

    .area-faixa .faixa .conteudo a.veja-mais-historia {
        font-size: 1em;
    }

    footer .area-container .area-dois {
        width: 100%;
        justify-content: flex-start;
    }

    .facebook-home {
        padding-bottom: 40px;
    }

    footer .area-container .area-tres {
        padding-bottom: 20px;
    }

}

@media(max-width:320px) {
    #destaque_home .destaques .item-destaque .card-hover .card-texto p {
        font-size: 1em;

    }

    .titulo-noticia-home {
        font-size: 1.25em;
    }

    .cada-noticia-home .cada-div-img-noticia-home {
        width: 170px;
    }

    .area-faixa .faixa .conteudo {
        gap: 10px;
    }

    #area-infraestrutura h2 {
        font-size: 1.75em;
    }
}

/* vídeo modal */

.area-video iframe {
    width: 100% !important;
    /* margin-top: 50px; */
    border-radius: 4px;
    object-fit: contain;
    /* height: 720px; */
    height: 60vh;
}