/**** FONTE DO SITE ****/

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

  .lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
  }

  .lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
  }

  .lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
  }

/**** CONFIGURAÇÃO GERAL ****/

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
}

ul{
    padding: 0;
}

.bg-sind{
    background: url('../imagens/bg.jpg');
    background-size: cover;
    min-height: 870px;
}

/**** TOPO ****/

header{
    width: 100%;
    height: 80px;
    /* border: 1px solid black; */
    background-color: white;
    box-shadow: 0px 3px 6px -5px rgb(109, 109, 109);
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 100;
    transition: .3s;
}

.rolagem{
    background: none;
    position: relative;
    box-shadow: none;
    height: auto;
    transition: .3s;
}

.rolagem .logo{
    width: 500px;
    height: auto;
}

header .logo{
    width: 230px;
    height: auto;
    /* transition: .5s; */
}

.rolagem .corpo-topo{
    transition: .3s;
    width: 1150px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    /* gap: 30px; */
}

.corpo-topo{
    width: 1150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    transition: .3s;
}


.corpo-page{
    width: 1150px;
}


.rolagem .link-nav{
    transition: .3s;
    display: flex;
    justify-content: space-between;
    padding-top: 23px;
}

.link-nav{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    gap: 15px;
    transition: .3s;
}

.link-nav a{
    text-decoration: none;
    color: black;
}

.link-nav a:last-child{
    color: white;
    padding: 0px 8px;
    border-radius: 4px;
    background-color: #BF4900;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
    transition: linear 150ms;
}

.link-nav a:last-child:hover{
    background-color: #105194;
    color: white;
    transition: linear 300ms;
}

.link-nav a:hover{
    color: #105194;
    text-decoration: none;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}


.menu-modal{
    position: fixed;
    height: 100vh;
    width: 100%;
    right: -100%;
    top: 0;
    z-index: 1000;
    background: white;
    transition: .25s ease-in-out;
}

.active-menu {
    right: 0%;
}

.box-menu-modal{
    padding: 10px 0px;
    width: 100%;
    height: 100dvh;
    overflow-y: auto;
}

.box-menu-modal .row-close{
    display: flex;
    height: 100px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d7d7d7;
    padding: 0px 30px;
}

.box-menu-modal .row-close .close-menu-modal span{
    font-size: 34px!important;
    background: #105194;
    padding: 3px;
    color:white;
    border-radius: 15px;
}

.box-menu-modal .row-close img{
    width: 200px;
    margin-bottom: 10px;
}

.box-menu-modal .links-menu-modal{
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 12px 30px;
    overflow-y: auto!important;

}

.box-menu-modal .links-menu-modal a{
    color: black;
    text-decoration: none;
    font-size: 24px;
    padding: 10px 3px;
    width: 100%;
    position: relative;
}

.box-menu-modal .links-menu-modal a::after{
    content: "";
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23000"><path d="M504-480 320-664l56-56 240 240-240 240-56-56 184-184Z"/></svg>');
    background-size: cover;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
}

.box-menu-modal .links-menu-modal a:last-child{
    color: #105194;
}

.box-menu-modal .links-menu-modal a:hover{
    text-decoration: none;
    color: black;
}



@media (max-width: 1250px){
    .corpo-topo{
        width: 100%!important;
        padding: 0px 20px;
    }

    .corpo-page{
        width: 100%;
        padding: 0px 20px;
    }

}

@media (min-width: 1050px) and (max-width: 1250px){
/*
    .corpo-topo{
        width: 1000px;
    } */


    .box-beneficios .titulo h1 {
        font-size: 2.6rem;
    }

    .row-mapa .card-mapa .text-mapa{
        padding: 0px 5px;
    }

    .row-mapa .card-mapa .text-mapa h1 {
        font-size: 1.6rem;
    }

}

.none-topo{
    display: none;
}

.icon-open-modal{
    display: none!important;
    font-size: 34px !important;
    background: #105194 !important;
    padding: 5px !important;
    color: white !important;
    border-radius: 15px !important;
    margin-top: 6px !important;
}


@media (max-width: 1160px){

    .link-nav{
        display: none;
    }

    .rolagem .link-nav{
        display: none;
    }

    .none-topo{
        display: flex;
    }

    .rolagem{
        display: none;
    }

    .bg-sind{
        min-height: 670px;
    }

    .icon-open-modal{
        display: block !important;
    }

}


/*** DESTAQUE ***/

.topo2{
    padding-top: 60px!important;
    transition: .3s;
}

.centralizar{
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 60px;
    transition: .3s;
}

.row-destaque{
    display: flex;
    min-height: 580px;
    padding-bottom: 70px;
}


.box-beneficios{
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box-beneficios .titulo{
    margin-top: 20px;
}

.box-beneficios .titulo h1{
    color: #105194;
    font-size: 3.0rem;
    text-align: left;
    width: 80%;
}


.box-beneficios .titulo a{
    display: inline-block;
    align-items: center;
    color: white;
    text-decoration: none;
    background: #BF4900;
    padding: 5px 8px;
    border-radius: 3px;
    width: auto;
    transition: .35s ease-in;
}

.box-beneficios .titulo a img{
    width: 20px;
    margin-left: 3px;
}

.box-beneficios .titulo a:hover{
    text-decoration: none;
    background: #105194;
    transition:  all .35s linear;

}

.box-beneficios .beneficios{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 12px;
    margin-bottom: 20px;
}

.box-beneficios .beneficios a{
    width: calc(50% - 20px);
}

.box-beneficios .beneficios > a > img{
    width: 100%;
    height: auto;
    filter: drop-shadow(#808080 0px 0px 0.14rem);
    transition: ease-in-out .17s;
}

.box-beneficios .beneficios > a > img:hover{
    filter: drop-shadow(#575757 0px 0px 0.3rem);
    transition: ease-in-out .25s;
}

/* .box-beneficios .beneficios .div-button{
} */

.box-beneficios .beneficios button{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #BF4900;
    color: white;
    border: 0px;
    outline: none;
    transition: 200ms ease-out;
    padding: 6px 12px;
    position: relative;
    text-align: left;
    overflow: hidden;
}

.box-beneficios .beneficios button:after{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #105194;
    transition: all .35s;
    border-radius: 10px;
}

.box-beneficios .beneficios button:hover:after{
    width: 100%;
}

.box-beneficios .beneficios button span{
    position: relative;
    z-index: 2;
    font-weight: bold;
    display: flex;
    line-height: 20px;
}

.box-beneficios .beneficios button img{
    position: absolute;
    width: 27px;
    height: auto;
    bottom: 8px;
    right: 12px;
    z-index: 2;
}


.box-slide{
    width: 45%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0px 8px 20px;
}


.main-slide{
    /* border: 1px solid blue; */
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0px 0px 1.2rem 0.3rem #afafaf;
}

@media (min-width:1035px) and (max-width: 1250px){

    .box-beneficios .titulo h1 {
        font-size: 2.6rem;
    }

}

@media (min-width: 900px) and (max-width:1035px) {

    .box-beneficios .titulo h1 {
        font-size: 2.3rem;
        width: 100%;
    }


    .box-beneficios .beneficios button{
        font-size: 12px;
    }

}

@media (max-width: 900px){
    .box-slide{
        padding: 0px;
    }

    .box-beneficios .titulo h1 {
        font-size: 2.2rem;
        width: 100%;
    }

    .box-beneficios .beneficios {
        width: 100%;
    }

    .box-beneficios .beneficios{
        margin-top: 90px;
    }

}

@media (min-width: 600px) and (max-width: 900px){

    .box-beneficios{
        width: 85%;
    }

    .box-slide{
        width: 85%;
    }

}



@media (max-width: 600px){

    .box-slide{
        width: 100%;
    }

    .box-beneficios{
        width: 100%;
    }
}


@media (max-width: 520px){
    .box-beneficios .beneficios button span{
        line-height: 18px;
        font-size: 14px;
    }
}

@media (max-width: 1160px){

    .topo2{
        padding-top: 145px!important;
    }

}


/*** SLIDE ***/

.wrapper, .slide{
    position: relative;
    width: 100%;
    height: 100%;
}

.slide:hover{
    cursor: pointer;
}

.slide .image{
    height: auto;
    width: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet{
    opacity: 1;
    height: 6px;
    width: 6px;
    background-color: rgba(255, 255, 255, 0.315);
}

.swiper-pagination-bullet-active{
    background-color: white;
}


@media (min-width: 1035px) and (max-width:1250px){

    .row-destaque{
        min-height: 500px;
    }

    .box-beneficios .titulo h1 {
        font-size: 2.6rem;
    }

}


@media (min-width: 900px) and (max-width:1035px){
    .row-destaque{
        min-height: 430px;
    }
}

@media (max-width: 900px){
    .row-destaque{
        flex-direction: column-reverse;
        align-items: center;
    }

    .box-beneficios .titulo {
        margin-top: 58px;
    }

}




/*** INSTITUCIONAL ***/


.conheca-o-sindicato{
    background: url("../imagens/img-institucional.jpg");
    min-height: 400px;
    display: flex;
    justify-content: center;
}

.row-conheca{
    display: flex;
    align-items: center;
}

.conheca-o-sindicato .texto{
    width: 47%;
    color: white;
}

.conheca-o-sindicato .texto h1{
    margin-bottom: 30px ;
    font-size: 2.7rem;
}

.conheca-o-sindicato .texto p{
    font-size: 18px;
}

.conheca-o-sindicato .texto a{
    display: inline-block;
    margin-top: 30px ;
    outline: none;
    border: 0px;
    background: #BF4900;
    color: white;
    padding: 6px 18px;
    border-radius: 10px;
    transition: ease-out .17s;
    text-decoration: none;
}

.conheca-o-sindicato .texto a:hover{
    transform: scale(1.05);
    transition: ease-out .2s;
}

.conheca-o-sindicato .texto a img{
    margin-left: 8px;
    width: 25px;
    margin-bottom: 2px;
}

@media (max-width: 900px){
    .conheca-o-sindicato .texto{
        width: 100%;
    }
}

@media (max-width: 600px){
    .conheca-o-sindicato .texto h1{
        margin-bottom: 20px;
        font-size: 2.2rem;
    }

    .conheca-o-sindicato .texto p{
        font-size: 16px;
    }

    .conheca-o-sindicato .texto a{
        margin-top: 20px;
    }
}


/*** CONVENÇÃO / HOMOLOGAÇÃO ***/


.convencao-homologacao{
    min-height: 550px;
    display: flex;
    justify-content: center;
    background: white;
    /* position: relative; */
}

.row-convencao-homologacao{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.row-convencao-homologacao .button-convencao{
    width: 1050px;
    height: 180px;
    box-shadow: 0px 0px 0.9rem -0.2rem rgb(179 179 179);
    /* border: 1px solid red; */
    border-radius: 10px;
    display: flex;
    padding: 12px 40px;
    position: relative;
    overflow: hidden;
    background: url("../imagens/botao-convencao.jpg");

}

.row-convencao-homologacao a{
    text-decoration: none;
    color: black;
}

.row-convencao-homologacao .button-convencao .texto{
    width: 65%;
    height: 100%;
    position: relative;
}

.row-convencao-homologacao .button-convencao h1{
    color: #105194;
    margin-bottom: 5px;
}

.row-convencao-homologacao .button-convencao p{
    font-size: 18px;
    margin-bottom: 0;
}

.row-convencao-homologacao .button-convencao .botao-saiba{
    position: absolute;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    background-color: #BF4900;
    color: white;
    bottom: 0px;
    left: 0px;
    height: 30px;
    border-radius: 5px;
    transition: .35s ease-in;
}

.row-convencao-homologacao .button-convencao .botao-saiba img{
    width: 22px;
    height: auto;
    margin-left: 10px;
    margin-top: 3px;

}

.row-convencao-homologacao .button-convencao .circulo{
    width: 368px;
    height: 368px;
    border-radius: 100%;
    background-color: #105194;
    position: absolute;
    top: -220px;
    right: -189px;
    transition: .35s ease-out;
}


.row-convencao-homologacao .button-convencao .circulo img{
    position: absolute;
    bottom: 57px;
    left: 67px;
    width: 89px;
    transition: .35s ease-in-out;
}


.row-convencao-homologacao .button-homologacao{
    width: 1050px;
    height: 180px;
    /* border: 1px solid red; */
    box-shadow: 0px 0px 0.9rem -0.2rem rgb(179 179 179);
    border-radius: 10px;
    display: flex;
    justify-content: end;
    padding: 12px 40px;
    position: relative;
    overflow: hidden;
    text-align: right;
    background: url("../imagens/botao-homologacao.jpg");
}

.row-convencao-homologacao .button-homologacao .texto{
    width: 65%;
    height: 100%;
    position: relative;
}

.row-convencao-homologacao .button-homologacao h1{
    color: #105194;
    margin-bottom: 5px;
}

.row-convencao-homologacao .button-homologacao p{
    font-size: 18px;
    margin-bottom: 0;
}

.row-convencao-homologacao .button-homologacao .botao-saiba{
    position: absolute;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    background-color: #BF4900;
    color: white;
    bottom: 0px;
    right: 0px;
    height: 30px;
    border-radius: 5px;
    transition: .35s ease-in;
}

.row-convencao-homologacao .button-homologacao .botao-saiba img{
    width: 22px;
    height: auto;
    margin-left: 10px;
    margin-top: 3px;
}

.row-convencao-homologacao .button-homologacao .circulo{
    width: 368px;
    height: 368px;
    border-radius: 100%;
    background-color: #105194;
    position: absolute;
    top: -220px;
    left: -189px;
    transition: .35s ease-out;
}


.row-convencao-homologacao .button-homologacao .circulo img{
    position: absolute;
    bottom: 53px;
    right: 78px;
    width: 65px;
    transition: .35s ease-in-out;
}


@media (min-width: 750px) {

    .row-convencao-homologacao .button-homologacao:hover .circulo{
        transform: translate(20px, 118px);
        transition: .35s ease-in-out;
    }



    .row-convencao-homologacao .button-homologacao:hover .circulo img{
        transform: translate(10px, -86px);
        transition: .35s ease-out;
    }

    .row-convencao-homologacao .button-homologacao:hover .botao-saiba{
        background: #105194;
        transition: .35s ease-in;
    }

    .row-convencao-homologacao .button-homologacao:hover{
        cursor: pointer;
    }

    .row-convencao-homologacao .button-convencao:hover .circulo{
        transform: translate(-20px, 118px);
        transition: .35s ease-in-out;
    }


    .row-convencao-homologacao .button-convencao:hover .circulo img{
        transform: translate(-10px, -86px);
        transition: .35s ease-out;
    }

    .row-convencao-homologacao .button-convencao:hover .botao-saiba{
        background: #105194;
        transition: .35s ease-in;
    }

    .row-convencao-homologacao .button-convencao:hover{
        cursor: pointer;
    }

}



@media (min-width: 1050px) and (max-width: 1250px){

    .row-convencao-homologacao .button-convencao{
        width: 1000px;
    }

    .row-convencao-homologacao .button-homologacao{
        width: 1000px;
    }

}


@media (max-width: 1050px){

    .row-convencao-homologacao .button-convencao{
        width: 100%;

    }

    .row-convencao-homologacao .button-homologacao{
        width: 100%;
    }

}

@media (max-width: 750px){

    .row-convencao-homologacao a{
        display: flex;
        width: 100%;
    }

    .row-convencao-homologacao .button-convencao{
        padding: 10px 16px;
    }

    .row-convencao-homologacao .button-homologacao{
        padding: 10px 16px;
    }

    .row-convencao-homologacao .button-convencao p{
        display: none;
    }

    .row-convencao-homologacao .button-homologacao p{
        display: none;
    }

    .row-convencao-homologacao .button-homologacao .circulo img {
        position: absolute;
        bottom: 26px;
        right: 30px;
        width: 40px;
        transition: .35s ease-in-out;
    }


    .row-convencao-homologacao .button-homologacao .circulo {
        width: 150px;
        height: 150px;
        top: -65px;
        left: -60px;
    }

    .row-convencao-homologacao .button-convencao .circulo {
        width: 150px;
        height: 150px;
        top: -65px;
        right: -60px;
    }

    .row-convencao-homologacao .button-convencao .circulo img {
        position: absolute;
        bottom: 30px;
        left: 30px;
        width: 51px;
    }

}




/*** PARALLAX ***/


.box-parralax{
    width: 100%;
    height: 330px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.box-parralax::after{
    content: "";
    background: url("../imagens/img-frase.jpg");
    top: 0;
    left: 0%;
    width: 100%;
    height: 100dvh;
    position: fixed;
    z-index: -1;
}

.box-parralax .row-parralax{
    display: flex;
    justify-content: center;
    align-items: center;

}

.box-parralax .row-parralax h1{
    text-align: center;
    color: white;
    font-size: 3.5rem;
}


@media (max-width: 900px) {
    .box-parralax .row-parralax h1{
        font-size: 2rem;
    }
}


/*** FORMULARIO HOME  ***/

.formulario-home{
    background: white;
    display: flex;
    justify-content: center;
}

.formulario-home .row-associe-se{
    width: 100%;
    display: flex;
    justify-content: center;
}

.formulario-home .row-associe-se .associe-se{
    width: 650px;
    background: #BF4900;
    color: white;
    padding: 15px 22px;
    border-radius: 10px;
    margin-top: 70px;
    transition: ease-out .2s;
    box-shadow: 0px 4px 20px -1px #747474
}

.formulario-home .row-associe-se .associe-se:hover{
    transform: scale(1.05);
    transition: ease-out .25s;
    background-color: #105194;
    cursor: pointer;
    box-shadow: 0px 10px 6px 2px #747474;

}

.formulario-home .row-associe-se .associe-se:hover a{
    text-decoration: underline;
    transition: ease-out .25s;
}

.formulario-home .row-associe-se .associe-se h1{
    text-align: center;
    font-size: 2.15rem;
}

.formulario-home .row-associe-se .associe-se h1 a{
    color: white;
    font-style: italic;
}

.row-forms-home{
    margin-top: 100px;
}

.row-forms-home .titulos{
    margin-bottom: 60px;
}

.row-forms-home .titulos h1{
    margin-bottom: 8px;
    color: #105194;
}

.row-forms-home .titulos h2{
    color: black;
}

.row-forms-home .form-e-animacao{
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.row-forms-home .form-e-animacao .box-form{
   width: 55%;
   height: auto;
}

.row-forms-home .form-e-animacao .box-form form{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.row-forms-home .form-e-animacao .box-form form input{
    border: 0px;
    border-radius: 0px;
    border-bottom: 1px solid #105194;
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
}

.row-forms-home .form-e-animacao .box-form form input:focus{
    outline: 0;
}

.row-forms-home .form-e-animacao .box-form form textarea{
    border-radius: 10px;
    border: 1px solid #105194;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
}

.row-forms-home .form-e-animacao .box-form form textarea:focus{
    outline: 0;
}

.row-forms-home .form-e-animacao .box-form form button{
    background: #BF4900;
    border: 0px;
    display: flex;
    align-items: center;
    color: white;
    padding: 3px 16px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
}

.row-forms-home .form-e-animacao .box-form form button:focus{
    outline: 0;
}

.row-forms-home .form-e-animacao .box-form form button img{
    width: 24px;
    margin-top: 2px;
    margin-left: 8px;
}


@media (min-width:650px) and (max-width: 900px){
    .formulario-home .row-associe-se .associe-se{
        width: 600px;
    }
}

@media (max-width:650px){
    .formulario-home .row-associe-se .associe-se{
        width: 405px;
    }

    .formulario-home .row-associe-se .associe-se h1{
        font-size: 1.5rem;
    }
}

@media (max-width: 900px){

    .row-forms-home .titulos{
        margin-bottom: 30px;
    }

}


/*** ANIMACAO FORMULARIO ***/


svg#freepik_stories-email-campaign:not(.animated) .animable {
    /* opacity: 0; */
}
svg#freepik_stories-email-campaign.animated #freepik--Floor--inject-3 {
    animation: 1s 1 forwards cubic-bezier(.36,-0.01,.5,1.38) zoomOut;
    animation-delay: 0s;
}
svg#freepik_stories-email-campaign.animated #freepik--Shadows--inject-3 {
    animation: 1s 1 forwards cubic-bezier(.36,-0.01,.5,1.38) slideDown;
    animation-delay: 0s;
}
svg#freepik_stories-email-campaign.animated #freepik--Clouds--inject-3 {
    animation: 1s 1 forwards cubic-bezier(.36,-0.01,.5,1.38) zoomOut;
    animation-delay: 0s;
}
svg#freepik_stories-email-campaign.animated #freepik--Plant--inject-3 {
    animation: 1s 1 forwards cubic-bezier(.36,-0.01,.5,1.38) slideUp;
    animation-delay: 0s;
}
svg#freepik_stories-email-campaign.animated #freepik--Device--inject-3 {
    animation: 1s 1 forwards cubic-bezier(.36,-0.01,.5,1.38) zoomOut;
    animation-delay: 0s;
}
svg#freepik_stories-email-campaign.animated #freepik--Character--inject-3 {
    animation: 1s 1 forwards cubic-bezier(.36,-0.01,.5,1.38) slideDown;
    animation-delay: 0s;
}
svg#freepik_stories-email-campaign.animated #freepik--paper-planes--inject-3 {
    animation: 1s 1 forwards cubic-bezier(.36,-0.01,.5,1.38) zoomIn;
    animation-delay: 0s;
}
svg#freepik_stories-email-campaign.animated #freepik--Icon--inject-3 {
    animation: 1s 1 forwards cubic-bezier(.36,-0.01,.5,1.38) lightSpeedLeft;
    animation-delay: 0s;
}
svg#freepik_stories-email-campaign.animated #freepik--Envelope--inject-3 {
    animation: 1s 1 forwards cubic-bezier(.36,-0.01,.5,1.38) zoomIn;
    animation-delay: 0s;
}
@keyframes zoomOut {
    0% {
        opacity: 0;
        transform: scale(1.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: inherit;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes lightSpeedLeft {
    from {
        transform: translate3d(-50%, 0, 0) skewX(20deg);
        opacity: 0;
    }
    60% {
        transform: skewX(-10deg);
        opacity: 1;
    }
    80% {
        transform: skewX(2deg);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.animator-hidden {
    display: none;
}

.row-forms-home .form-e-animacao .animacao{
    width: 45%;
}


@media (max-width: 900px){
    .row-forms-home .form-e-animacao{
        flex-direction: column-reverse;
        align-items: center;
    }

    .row-forms-home .form-e-animacao .box-form{
        width: 100%;
        margin-top: 40px;
        margin-left: 12px;
    }

    .row-forms-home .form-e-animacao .animacao{
        width: 60%;
    }

}


/*** MAPA / LOCALIZAÇÃO ***/


.row-mapa {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 150px;
    padding-bottom: 110px;
}


.row-mapa .card-mapa{
    width: 550px;
    height: 300px;
    box-shadow: 0px 0px 1.25rem 0.25rem rgb(195 195 195);
    /* border: 1px solid red; */
    display: flex;
    border-radius: 15px;
    /* overflow: hidden; */
}

.row-mapa .card-mapa .img-mapa{
    width: 30%;
    height: 100%;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.row-mapa .card-mapa .img-mapa img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.row-mapa .card-mapa .text-mapa{
    width: 70%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
}

.row-mapa .card-mapa .text-mapa .localizacao{
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
    width: 90px;
    height: 90px;
    border-radius: 100%;
    background-color: #105194;
    display: flex;
    justify-content: center;
    align-items: center;
}

.row-mapa .card-mapa .text-mapa .localizacao img{
    width: 58%;
}

.row-mapa .card-mapa .text-mapa h1{
    font-size: 1.7rem;
    color: #105194;
    margin-top: 60px;
    margin-bottom: 18px;
}

.row-mapa .card-mapa .text-mapa .endereco{
    margin-bottom: 10px;
}

.row-mapa .card-mapa .text-mapa .veja-no-mapa{
    position: absolute;
    bottom: 30px;
    left: calc(50% - 85px);
    display: block;
    width: 170px;
    color: #BF4900;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.row-mapa .card-mapa .text-mapa .veja-no-mapa img{
    width: 26px;
    margin-left: 10px;
    margin-top: 5px;
}

@media (max-width: 900px){

    .row-mapa {
        flex-direction: column;
        align-items: center;
    }

}

@media (max-width: 560px){

    .row-mapa .card-mapa .text-mapa{
        font-size: 13px
    }

    .row-mapa .card-mapa {
        width: 350px;
    }

    .row-mapa .card-mapa .text-mapa .localizacao{
        top: -36px;
        left: calc(50% - 35px);
        width: 70px;
        height: 70px;
    }

    .localizacao img {
        width: 50%;
    }

}


/*** RODAPÉ ***/

footer{
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 100px;
    background: white;
    font-size: 14px;
    padding-top: 50px;
    padding-bottom: 25px;
    border-top: 1px solid #c7c7c7;
}

footer ul{
    list-style: none;
}

footer h1{
    font-size: 1.5em;
    margin-bottom: 15px;
}

footer h2{
    font-size: 1em;
    margin: 0;
}

footer h1,
footer h2{
 color: #105194;
}

.rodape{
    width: 1150px;
    display: flex;
}


.rodape .coluna-1{
    width: 482.5px;
    padding: 0px 155px 0px 0px;
}

.rodape .coluna-2{
    width: 222.5px;
    padding: 0px 0px 0px 20px;
}

.rodape .coluna-3{
    width: 222.5px;
}

.rodape .coluna-4{
    width: 222.5px;
}
/*
.rodape .coluna-4 img{
    width: 100px;
} */


.fecomerciario{
    width: 175px;
}

.ugt{
    width: 65px;
}

.cntc{
    width: 110px;
}

.rodape .link-nav-rodape{
    color: black;
    text-decoration: none;
    /* transition: all linear .2s; */
}


.rodape .link-nav-rodape:hover{
    color: #105194;
    /* transition: all linear .275s; */
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;

}

.direitos-autorais{
    background-color: #105194;
    color: white;
    text-align: center;
    padding: 5px 0px;
    font-size: 14px;

}


.direitos-autorais a{
    color: white;
    text-decoration: none;
}

@media (min-width: 1050px) and (max-width: 1250px){

    .rodape{
        width: 1000px;
    }

}

@media (max-width: 1050px){

    .rodape{
        width: 100%;
        padding: 0px 10px;
    }

}

@media (max-width: 800px){

    .rodape{
        flex-direction: column;
    }

    .rodape .coluna-1{

        display: none;

    }

    .rodape .coluna-1 img{
        width: 350px;
        margin-left: 35px;
        margin-bottom: 30px;

    }

    .rodape .coluna-2{
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .rodape .coluna-3{
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .rodape .coluna-4{
        width: 100%;
        padding: 0;
        text-align: center;
    }
}

@media (min-width: 930px) and (max-width: 1050px){

    .rodape .coluna-1 {
        width: 402.5px;
        padding: 0px 75px 0px 0px;
    }

}

@media (min-width: 800px) and (max-width: 930px){

    .rodape .coluna-1 {
        width: 327.5px;
        padding: 0px;
    }

}

/*** ASSOCIADOS ***/

.box-logo-associado{
    padding-top: 135px;
    margin-bottom: 65px;
}

.box-logo-associado img{
    width: 100%;
    height: auto;
    filter: drop-shadow(#808080 0px 0px 0.14rem);
}

.form-associado{
    margin: 0;
}

.form-associado h3{
    color: #105194;
}

.form-associado .form-control{
    color: black;
    background-color: white;
    border:none;
    border-bottom: 1px solid #105194;
    border-radius: 0px;
}

.form-associado .form-control:focus {
    color: black;
    /* background-color: #fff; */
    border-color: #125ba3;
    outline: 0;
    box-shadow: none;
}

.form-associado .custom-file-label::after{
    color: white;
    background-color: #105194;
    content: "Procurar";
}

.form-associado .custom-file-label{
    border: 1px solid #105194;
    /* border-radius: 0px; */

}

.form-associado .botao-dependente{
    background-color: #ededed;
    border: none;
    color: black;
    box-shadow: 0px 0px 13px -3px rgb(117 117 117);

}

.form-associado .botao-dependente:active{
    color: #fff!important;
    background-color: #105194!important;
    border-color: none;
}

.form-associado .botao-dependente:hover{
    color: #fff!important;
    background-color: #105194!important;
}

.form-associado .add-dependente{
    width: auto;
    height: 30px;
    margin-right: 10px;
}

.form-associado .remov-dependente{
    width: auto;
    height: 30px;
    margin-right: 10px;
}

.form-associado .botao-submit-associado{
    background-color: #BF4900;
    color: white;
    border: none;
}

.form-associado .botao-submit-associado:active{
    background-color: #BF4900!important;
    color: #fff!important;
}

.form-associado .botao-submit-associado img{
    height: 15px;
    width: auto;
    margin-left: 10px;
    margin-bottom: 3px;
}


.inputFoto{
    position: relative;
    border:1px solid #105194!important;
    border-radius: .25rem!important;
}

.inputFoto::after{
    content: "Escolher arquivo";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #105194;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: ; */
    padding: 0 13px;
}

.box-botoes-associados{
    margin: 0 13px;
}


@media (max-width: 580px){
    .box-botoes-associados{
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 0;
        padding: 0px 13px;
    }
}


/*** INSTITUCIONAL ***/


.institucional{
    flex-direction: column;
    align-items: center;
}

.institucional .sobre-sindicato{
    width: 100%;
    padding-top: 185px;
    min-height: 610px;

}

.bg-top-sobre{
    display: flex;
    justify-content: center;
    width: 100%;
    background: url('../imagens/bg-topo-sobre.jpg');
}

.institucional .sobre-sindicato .titulo{
    width: 40%;
}

.institucional .sobre-sindicato .titulo h1{
    font-size: 4.5rem;
    color: #105194;
    font-weight: normal;
}

.institucional .sobre-sindicato .texto{
    width: 60%;
    color: #333333;
}

.imagem-sobre{
    width: 100%;
    min-height: 285px;
    background-size: cover!important;
    background-repeat: no-repeat!important;
    background: url('../imagens/foto-sobre.jpg');
    display: block;
}

.beneficios-institucional{
    display: flex;
    flex-direction: column;
    min-height: 650px;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    margin-top: 60px;
    padding: 40px 0px 40px 0px;
}

.beneficios-institucional .texto{
    text-align: center;
    font-size: 1.38rem;
    color: #333333;
}

.beneficios-institucional .box-icones{
    margin-top: 90px;
    width: 1040px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 35px;
    column-gap: 30px;
}

.beneficios-institucional .box-icones .icones{
    min-height: 220px;
    width: calc(25% - 30px);
    /* border: 1px solid black; */
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;

}

.beneficios-institucional .box-icones .icones img{
    width: 170px;
    height: auto;
    transition: ease-out .25s;
}

.beneficios-institucional .box-icones .icones:hover img{
    transform: scale(1.05);
    filter: drop-shadow(black 0px 0px 0.03rem);
    transition: ease-in .25s;
    cursor: pointer;
}

.beneficios-institucional .box-icones .icones:hover{
    cursor: pointer;
}

.beneficios-institucional .box-icones .icones h4{
    margin-top: 15px;
    font-size: 1.2rem;
    text-align: center;
    color: #105194;
}


.nossa-equipe{
    display: flex;
    margin-top: 90px;
    min-height: 830px;
}

.nossa-equipe .titulo{
    width: 40%;

}

.nossa-equipe .titulo h1{
    font-size: 4.5rem;
    color: #105194;
    font-weight: normal;
    padding-right: 30px;
}

.nossa-equipe .titulo h1 b{
    font-size: 4.9rem;
}

.nossa-equipe .equipe{
    width: 60%;
}

.accordion-item{
    border: none;
}

.accordion-button{
    color: #333333;
    background-color: #ededed;
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: .5rem;
}

.accordion-item:first-of-type .accordion-button{
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}

.accordion-item:last-of-type .accordion-button.collapsed{
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
}

.accordion-button:hover{
    background: #105194;
    color: white;
    transition: .25s ease-in;
}

.accordion-button:hover::after{
    background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" id="Camada_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="1000px" height="1000px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve"><path fill="%23FFFFFF" d="M102.875,290.375c12.188-12.219,31.975-12.244,44.194-0.056c0.019,0.019,0.037,0.037,0.056,0.056L500,643.313l352.875-352.937c12.219-12.219,32.031-12.219,44.25,0c12.219,12.219,12.219,32.031,0,44.25l-375,375c-12.188,12.219-31.975,12.244-44.194,0.056c-0.019-0.019-0.037-0.037-0.056-0.056l-375-375c-12.219-12.188-12.244-31.975-0.056-44.194C102.838,290.412,102.856,290.394,102.875,290.375z"/></svg>');
}

.accordion-button:not(.collapsed){
    background-color: #105194;
    color: white;
    /* background-color: #ededed; */
    box-shadow: none;
}

.accordion-button:focus {
    z-index: 3;
    border-color: none;
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" id="Camada_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="1000px" height="1000px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve"><path fill="%23FFFFFF" d="M102.875,290.375c12.188-12.219,31.975-12.244,44.194-0.056c0.019,0.019,0.037,0.037,0.056,0.056L500,643.313l352.875-352.937c12.219-12.219,32.031-12.219,44.25,0c12.219,12.219,12.219,32.031,0,44.25l-375,375c-12.188,12.219-31.975,12.244-44.194,0.056c-0.019-0.019-0.037-0.037-0.056-0.056l-375-375c-12.219-12.188-12.244-31.975-0.056-44.194C102.838,290.412,102.856,290.394,102.875,290.375z"/></svg>');
    transform: rotate(-180deg);
}

.linha-membro{
    position: relative;
    min-height: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.linha-membro h3{
    margin-bottom: 3px;
    font-weight: normal;
    font-size: 1.1rem
}

.linha-membro h4{
    font-size: 0.9rem;

}

.accordion-body{
    padding: 0;
}

.accordion-body > div{
    border-bottom: 1px solid #333333;
    padding: 0px 30px;
}

.accordion-body div:last-child{
    border-bottom: 0px;
}

.accordion{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.accordion .foto-presidente{
    position: absolute;
    right: 30px;
    width: 95px;
    height: auto;
}


@media (max-width: 940px){

    .institucional .sobre-sindicato{
        flex-direction: column;
        padding-top: 135px;
        padding-bottom: 30px;
    }

    .institucional .sobre-sindicato .titulo{
        width: 100%;
    }

    .institucional .sobre-sindicato .texto{
        width: 100%;
    }

    .nossa-equipe{
        flex-direction: column;
        min-height: 600px;
        padding-bottom: 40px;
    }

    .nossa-equipe .titulo{
        width: 100%;
    }

    .nossa-equipe .equipe{
        margin-top: 30px;
        width: 100%;
    }
}


@media (min-width:745px) and (max-width: 1045px){

    .beneficios-institucional .box-icones .icones{
        width: calc(33% - 30px);
    }

}

@media (min-width: 430px) and (max-width:744px){

    .beneficios-institucional .box-icones .icones{
        width: calc(50% - 30px);
    }

}


@media (max-width: 429px){

    .beneficios-institucional .box-icones .icones{
        width: 100%;
    }

}

@media (max-width: 1250px){
    .beneficios-institucional{
        padding: 40px 20px;
    }
}


/*** BENEFÍCIOS ***/

.bg-beneficio{
    background: url("../imagens/bg-beneficios.jpg");
    background-repeat: no-repeat;
    /* background-size: cover; */
}

.beneficios-page{
    padding-top: 175px;
}

.beneficios-page .box-titulo-beneficio{
    width: 100%;
    display: flex;
    padding-bottom: 25px;
}

.beneficios-page .box-titulo-beneficio .titulo{
    width: 45%;
    height: 230px;
    position: relative;
    /* border: 1px solid black; */
}

.beneficios-page .box-titulo-beneficio .titulo h1{
    font-size: 3.25rem;
    color: #105194;
    line-height: 55px;

}

.beneficios-page .box-titulo-beneficio .titulo b{
    font-size: 3.5rem;
}

.beneficios-page .box-titulo-beneficio .titulo span{
    font-size: 2rem;
    position: absolute;
    bottom: 48px;
}

.beneficios-page .box-titulo-beneficio .imagem{
    width: 55%;
    /* height: 300px; */
    /* border: 1px solid black; */
}

.beneficios-page .box-titulo-beneficio .imagem a{
    width: 100%;
    height: 188.13px;
    /* padding-bottom: 30px; */
    display: flex;
    aspect-ratio: 776 / 231;
}

.beneficios-page .box-titulo-beneficio .imagem a .card-beneficio{
    border-radius: 32px;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: 50% 50%;
    position: relative;
}

.beneficios-page .box-titulo-beneficio .card-beneficio .botao-card-beneficio{
    position: absolute;
    bottom: 20px;
    right: 15px;
    width: 135px;
    background-color: #BF4900;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 2px;
    border-radius: 5px;
}

.beneficios-page .box-titulo-beneficio .card-beneficio .botao-card-beneficio img{
    width: 22px;
    height: auto;
}

.beneficios-page .box-titulo-beneficio .card-beneficio .texto-card-beneficio{
    position: absolute;
    bottom: 20px;
    left: 30px;
    width: 65%;
    height: 80%;
    color: white;
    font-size: 2rem;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}


.beneficios-page .box-titulo-beneficio .card-beneficio .texto-card-beneficio span{
    display: flex;
    flex-wrap: wrap;
    line-height: 19px;
    margin-bottom: 9px;
}

@-moz-document url-prefix() {
    .beneficios-page .box-titulo-beneficio .card-beneficio .texto-card-beneficio span{
        display: flex;
        flex-wrap: wrap;
        line-height: 24px;
        margin-bottom: 9px;
    }

    .beneficios-page .box-titulo-beneficio .card-beneficio .texto-card-beneficio b{
        margin-bottom: 8px;
    }


}

.beneficios-page .box-titulo-beneficio .card-beneficio .texto-card-beneficio img{
    width: 60px;
    height: auto;
    margin-bottom: 20px;
}


.beneficios-page .box-card-beneficios {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 100px;
}

.beneficios-page .box-card-beneficios a{

    width: calc(25% - 15px);
    height: 370px;
    border-radius: 25px;
    position: relative;

    overflow: hidden;

}

.beneficios-page .box-card-beneficios .card-beneficio{
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-size: cover!important;
    background-repeat: no-repeat;
}

.beneficios-page .box-card-beneficios .card-beneficio .botao-beneficio{
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    background-color: #BF4900;
    color: white;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 2px;
    border-radius: 5px;
}

.beneficios-page .box-card-beneficios .card-beneficio .botao-beneficio img{
    width: 20px;
    height: auto;
}

.beneficios-page .box-card-beneficios .card-beneficio .titulo-beneficio{
    position: absolute;
    bottom: 43px;
    width: 100%;
    height: 70px;
    padding: 0px 20px;
    display: flex;
    align-items: flex-start;
}

.beneficios-page .box-card-beneficios .card-beneficio .titulo-beneficio h1{
    font-size: 1.5rem;
    color: white;
}

@media (min-width: 840px) and (max-width: 1100px){
    .beneficios-page .box-card-beneficios a{
        width: calc(33% - 15px);
    }
}

@media (min-width: 570px) and (max-width: 839px){
    .beneficios-page .box-card-beneficios a{
        width: calc(50% - 15px);
    }
}

@media (max-width: 569px){
    .beneficios-page .box-card-beneficios a{
        width: 100%;
    }
}


@media (max-width: 1000px){
    .beneficios-page .box-titulo-beneficio .titulo h1{
        font-size: 2.5rem;
    }

    .beneficios-page .box-titulo-beneficio .titulo b{
        font-size: 2.5rem;
    }
}

@media (max-width: 1100px) {

    .beneficios-page .box-titulo-beneficio{
        flex-direction: column;
        margin-bottom: 30px;
    }

    .beneficios-page .box-titulo-beneficio .titulo{
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        padding: 0px 2px;
    }

    .beneficios-page .box-titulo-beneficio .imagem{
        width: 100%;
        height: auto;
    }

    .beneficios-page .box-titulo-beneficio .titulo span{
        position: relative;
        bottom: auto;
    }

    .beneficios-page .box-titulo-beneficio .imagem a .card-beneficio{
        background-size: cover!important;
        background-position: 50% 50%!important;
    }

    .br-beneficio{
        display: none;
    }

    .beneficios-page .box-titulo-beneficio a .card-beneficio .texto-card-beneficio img{
        margin-bottom: 12px;
        width: 40px;
    }

    .beneficios-page .box-titulo-beneficio a .card-beneficio .texto-card-beneficio span{
        display: block;
        font-size: 22px;
        margin-bottom: 0;
        line-height: 30px;
    }

    .beneficios-page .box-titulo-beneficio a .card-beneficio .botao-card-beneficio{
        width: 111px;
        font-size: 14px;
    }

}



/*** CONVENÇÃO COLETIVA ***/

/* .page-convencao{
    margin-top: 200px;
} */

.page-convencao .box-formulario-down .form-control{
    color: black;
    background-color: white;
    border:none;
    border-bottom: 1px solid #105194;
    border-radius: 0px;
}

.page-convencao .box-formulario-down .form-control:focus {
    color: black;
    /* background-color: #fff; */
    border-color: #125ba3;
    outline: 0;
    box-shadow: none;
}

.page-convencao .box-formulario-down button{
    color: white;
    background: #105194;
}


.page-convencao table a{
    text-decoration: none;
    /* color: black; */
}

.page-convencao table a:hover{
    text-decoration: none;
    cursor: pointer;
}

.page-convencao table th{
    background: #105194;
    color: white;
}

.link-conv{
    color: black;
    padding: 10px 10px;
    display: block;
    width: 100%;
    height: 100%;
    transition: .2s ease-in;
}

.link-conv:hover{
    color: white;
    background: #105194;
    transition: .2s ease-in;
}

.link-env{
    color: white;
    background: #105194;
    width: 100%;
    height: 100%;
    display: block;
    padding: 8px;
}



/*** CONTEÚDO ***/

.conteudo {
    padding: 0px 20px;

    width: 1000px;
    min-height: 70dvh;
}

.margin-top-conteudo{
    margin-top: 95px;
}


.conteudo h1,
.conteudo h2,
.conteudo h3,
.conteudo h4,
.conteudo h5{
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.conteudo strong{
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}


.conteudo b{
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}




/*** NOTÍCIAS ***/

.noticias-page{
    /* margin-top: 195px; */
    display: flex;
    align-items: center;
    flex-direction: column;

}

.noticias-page a{
    text-decoration: none;
    color: black;
}

.btn-tema{
    background: #105194;
    color: white!important;
    transition: .1s ease-in-out;
}

.btn-tema:hover{
    color: white;
    box-shadow: none;
    border: none;
    transform: scale(1.1);
    transition: .2s ease-in-out;
}

.noticias-page .active{
    background: #BF4900;
}

.row-noticia{
    width: 100%;
    height: auto;
    display: flex;
    /* flex-direction: column; */
    gap: 20px;
    justify-content: center;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.row-noticia .card-noticia{
    width: 565px;
    display: flex;
    height: 210px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 1px #dddddd;
    transition: .2s ease-in;
}

.row-noticia .card-noticia:hover{
    box-shadow: 0px 0px 5px 1px #8f8f8f;
    transition: .2s ease-in;
}

.row-noticia .card-noticia .texto{
    width: 60%;
    padding: 18px 18px 0px 15px;
    position: relative;
}

.row-noticia .card-noticia .texto h4{
    font-size: 22px;
    margin-bottom: 6px;
}

.row-noticia .card-noticia .texto p{
    font-size: 16px;
}

.row-noticia .card-noticia .texto span{
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #105194;
    font-size: 16px;
}

.row-noticia .card-noticia .imagem{
    width: 40%;
}

.row-noticia .card-noticia .imagem img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


/* Class notícia */
.container-class-noticia{
    padding-top: 100px;
}
.container-imagem-class-noticia {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 60%;

}
.container-imagem-class-noticia .imagem-class-noticia{
    width: 350px;
    min-height: 350px;
    max-height: 500px;
    object-fit: cover;
}


@media (max-width: 605px){

    .row-noticia .card-noticia {
        width: 340px;
        height: auto;
        flex-direction: column-reverse;
    }

    .row-noticia .card-noticia .texto{
        width: 100%;
        padding: 18px 18px 40px 15px;
    }

    .row-noticia .card-noticia .imagem{
        width: 100%;
    }

}


.img-desktop{
    display: block;
}

.img-mobile{
    display: none;
}


@media (max-width: 550px){
    .img-desktop{
        display: none;
    }

    .img-mobile{
        display: block;
    }
}


/*** HOMOLOGAÇÃO ***/

.box-logo-homologacao{
    width: 1000px;
    padding: 0px 19px;
    padding-top: 135px;
    margin-bottom: 65px;
}

.box-logo-homologacao img{
    width: 100%;
    height: auto;
    filter: drop-shadow(#808080 0px 0px 0.14rem);
}
