body {
    font-family: 'Roboto', sans-serif;
    background: #F2F2F2;
}

button:focus {
    outline: none;
}

a:hover {
    text-decoration: none;
}

p {
    font-weight: normal;
    font-size: 16px;
    line-height: 146.4%;
    color: #FFFFFF;
}

.form-control {
    background: #FFFFFF;
    border: 1px solid #BDBDBD;
    box-sizing: border-box;
    border-radius: 5px;
    min-height: 57px;
    padding: 1.375rem 1.75rem
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #e84e0d;
    outline: 0;
    box-shadow: 0 0 0 0.2rem #e84e10a6;
}


.grecaptcha-badge {
  display: none !important;
}

/* ini: Preloader */

.aviso{
        position: relative;
    top: -10px;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFFFFF;
    z-index: 1999;
}

#preloader .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#preloader .inner img{
	max-width: 250px;
}

.pulsex {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

.pulseIcon:hover {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}


/* end: Preloader */


/* section navegador */

.navegador.sticky .navbar-brand img {
    width: 132px;
    transition: .6s;
}

.navegador.sticky {
    min-height: 170px;
}

.navegador.sticky .link-top {
    display: none!important;
    transition: .6s;
}

.navegador .navbar-brand img {
    width: 170px;
    transition: .6s;
}



section.navegador {
    display: flex;
    justify-content: center;
    min-height: 187px;
    align-items: baseline;
    width: 100%;
    z-index: 5;
    position: fixed;
    background-image: url(../img/bg_nav.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .6s ease-in-out;
    padding: 10px 0;
}

.nav-item:hover .nav-link {
    font-weight: bold;
    color: #0054A3;
    line-height: 18px;
    transition: .6s;
    border-radius: 5px;
}
.nav-item .nav-link.active{
    font-weight: bold;
    color: #0054A3;
    line-height: 18px;
    transition: .6s;
    border-radius: 5px;
}

.nav-item:hover:not(:last-child) .nav-link::before {
    content: url(../img/icon/icon_a.png);
    margin-right: .4rem;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    animation-fill-mode: both;
    animation: transition_raio 2s linear both;
    height: 16px;
    width: 12px;
}

.nav-item:not(:last-child) .nav-link::before {
    content: '';
    margin-right: .4rem;
    transition: all .6s ease;
    animation-direction: reverse;
    height: 16px;
    width: 12px;
}

.nav-item .nav-link {
    transition: .6s;
    align-items: center;
    display: flex;
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    color: #4F4F4F;
}

@keyframes transition_raio {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 3rem;
    text-align: center;
}

@media(min-width:1000px) {
    .navbar-collapse {
        margin-top: 0;
        text-align: center;
    }
}

.nav-item {
    padding: 9px;
    display: flex;
    align-items: center;
}

.link-top li {
    margin: 0 5px;
}

.link-top .btn {
    background: #F4A400;
    border-radius: 15px;
    padding: 8px 25px;
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;
    color: #FFFFFF;
    transition: .6s;
}

.link-top .btn:hover {
    color: #0054A3;
    transition: .6s;
}

.link-top li:hover img {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.navbar-brand img {
    width: 100%;
    transition: .6s;
}

section.vitrine {
    padding-top: 8rem;
}

section.vitrine_mobile {
    margin-bottom: 5rem;
}

section.img_vitrine .owl-nav {
    display: none;
}

section.img_vitrine {
    padding-top: 2rem;
}

section.img_vitrine .owl-dots {
    margin-top: -12rem;
    position: absolute;
    left: 10%;
    right: 10%;
}

section.img_vitrine .owl-dots .owl-dot.active span,
section.img_vitrine .owl-dots .owl-dot:hover span {
    background: #0054A3;
    border-radius: 15px;
    width: 24.92px;
    height: 13.05px;
    transition: .6s;
}

section.img_vitrine .owl-dots .owl-dot span {
    width: 16.02px;
    height: 13.05px;
    background: transparent;
    border: 1px solid #0054A3;
    border-radius: 15px;
}


/* section quem-somos */

section.quem-somos {
    background-image: url(../img/bg_quemsomos.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 905px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -6rem;
    position: sticky;
    z-index: 1;
}

/*section.quem-somos {
    background-image: url(../img/bg_quemsomos.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 795px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -3rem;
    position: sticky;
    z-index: 1;
}*/

section.quem-somos h1 {
    font-style: italic;
    font-weight: bold;
    font-size: 35px;
    line-height: 41px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 5rem;
}

section.quem-somos .frango img {
    position: absolute;
    margin-top: -17rem;
}


section.interna.frango_bom_todo #accordion .title-geral{
        font-weight: bold;
    text-align: center;
    font-size: 26px;
    color: #2154a3;
    padding: .5rem 0 1.5rem;
}

section.interna.frango_bom_todo #accordion .Item {
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 10px #0000003d;
}
section.interna.frango_bom_todo #accordion .Item a.btn-header{
    display: block;
    background: #2154a3;
    padding: 15px 15px;
    cursor: pointer;
    color: white;
    transition: .4s;
}

section.interna.frango_bom_todo #accordion .Item a.btn-header_2{
    text-align: center;
}

section.interna.frango_bom_todo #accordion .Item a.btn-header:hover{
    background:#ef7906;
}

section.interna.frango_bom_todo #accordion .Item a.btn-header_active{
    background:#ef7906;
}

section.interna.frango_bom_todo #accordion .Item ul.content{
    padding: 20px 0;
}

section.interna.frango_bom_todo #accordion .Item ul.content li{
    color: #5a5a5a;
    font-size: 18px;
    list-style: none;
    padding: 8px 0;
    margin-left: 25px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

section.interna.frango_bom_todo #accordion .Item ul.content li a{
    background: #f49402;
    color: white;
    padding: 0 10px;
    border-radius: 5px;
    margin-left: auto;
    border: 2px solid transparent;
    /*font-weight: bold;*/
    font-weight: 500;
    transition: .4s;
    text-align: center;
    position: relative;
    /*left: 10px;*/
    left: 0;
    margin-right: 18px;
    width: 100px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
}

section.interna.frango_bom_todo #accordion .Item ul.content li a:hover{
    border: 2px solid #f49402;
    color: #f49402;
    background:transparent;
}

section.produtos .card img {
    width: 110px;
    height: auto;
    margin: auto;
    object-fit: contain;
    padding: 5px;
    transition: all .6s;
    margin-right: 30px;
    margin-left: 51px;
}

section.produtos .card:hover .card-body .btn {
    transition: .6s;
    color: #FFFFFF;
    background: #F6A70E !important;
}

@media(max-width: 368px){
   
    section.produtos .card img {
        width: 60px;
        height: auto;
        margin: auto;
        object-fit: contain;
        padding: 5px;
        transition: all .6s;
    }
   
}

@media(max-width: 768px){
    section.interna.frango_bom_todo #accordion .Item ul.content li{
        margin-left: 10px;
        font-size: 16px;
    }
    section.interna.frango_bom_todo #accordion .Item ul.content li a{
        min-width: 95px;
    }

    section.produtos .card img {
        width: 60px;
        height: auto;
        margin: auto;
        object-fit: contain;
        padding: 5px;
        transition: all .6s;
    }

    section.produtos .card img {
        width: 84px;
        height: auto;
        margin: auto;
        object-fit: contain;
        padding: 5px;
        transition: all .6s;
    }
}


/* section produtos */

section.produtos.interna{
    display: flex;
    justify-content: center;
    color: #ffffff;
    padding: 0!important;
    min-height: 1100px;
    background-color: white;
}

section.produtos {
    background-image: url(../img/bg_marcas.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: bottom;
    display: flex;
    justify-content: center;
    color: #ffffff;
    padding: 10rem 0;
    min-height: 1100px;
    background-color: white;
}

section.produtos h1 {
    font-style: italic;
    font-weight: bold;
    font-size: 35px;
    line-height: 41px;
    text-transform: uppercase;
    color: #0054A3;
    margin-top: 5rem;
    text-align: center;
}

section.produtos .owl-nav {
    display: none;
}

section.produtos .card {
    background: #ffffff;
    border: 1px solid #ffffff;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    text-align: center;
    transition: all .6s;
    transform: scale(.95);
}

section.produtos .card:hover {
    transform: scale(.85);
    transition: all .6s;
}

section.produtos .card:hover img {
    width: 220px;
    transition: all .6s;
}

section.produtos .card .card-body {
    background: #ffffff;
    border-radius: 0 0 15px 15px;
}

section.produtos .card .card-body h5 {
    font-weight: bold;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    color: #4F4F4F;
}

section.produtos .card .card-body .btn {
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #F6A70E;
    border-radius: 5px;
    padding: 7px 35px;
    transition: .6s;
}

section.produtos .card:hover .card-body .btn {
    transition: .6s;
    color: #FFFFFF;
    background: #0054A3;
}

section.produtos .card img {
    width: 171px;
/*    height: auto;*/
    height: 249px;
    margin: auto;
    object-fit: contain;
    padding: 5px;
    transition: all .6s;
    margin-top: 30px;
}

section.produtos .owl-dots {
    margin-top: 3rem;
}

section.produtos .owl-dots .owl-dot.active span,
section.produtos .owl-dots .owl-dot:hover span {
    background: #0054A3;
    border-radius: 15px;
    width: 24.92px;
    height: 13.05px;
    transition: .6s;
}

section.produtos .owl-dots .owl-dot span {
    width: 16.02px;
    height: 13.05px;
    background: #C4C4C4;
    border-radius: 15px;
}

section.produtos .ver_todos {
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase;
    color: #0054A3;
    border: 1px solid #0054A3;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 10px 35px;
    transition: .6s;
}

section.produtos .ver_todos:hover {
    color: #ffffff;
    background-color: #0054A3;
    transition: .6s;
}

section.instagram {
    margin-top: -15rem;
}

.li_sociais {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 7px;
}

.portal-btn a{
    background-color: #2154a3;
    color: white!important;
    border-radius: 10px;
    padding: 10px 20px!important;
    font-weight: 500;
}


#cliqueAquiWhats {
    background-color: #2154a3;
    color: white!important;
    border-radius: 10px;
    padding: 10px 20px!important;
    font-weight: 500;
}



/* banner interna */
.logo-banner{
    position: absolute;
    top: 20%;
    min-width: 100px;
}
.topo{
    top: 30%;
}
#logo-direita{
    left: 70%;
    width: 20%;
}

#logo-centro{
    left: 42%;
    width: 16%;
}

@media(max-width: 1024px){
    .topo{
        top: 20%;
    }
    .logo-banner{
        top: 14%;
    }
}

@media(max-width: 750px){
    .logo-banner{
        margin-top: 110px;
        top: 7%
    }
    #logo-direita{
        width: 30%;
        left: 40%
    }
    #logo-centro{
        width: 30%;
        left: 35%;
    }
}

@media(max-width: 500px){
    .logo-banner{
        top: 2%;
    }
    .topo{
        top: 5%;
    }
    
}


/*  instagram */

section.instagram h1 {
    font-style: italic;
    font-weight: normal;
    font-size: 35px;
    line-height: 41px;
    text-transform: uppercase;
    color: #0054A3;
    margin-top: 5rem;
    text-align: center;
}

/* blog */

section.blog{
    padding-bottom: 3rem;
    background: white;
}

section.blog h1 {
    font-style: italic;
    font-weight: bold;
    font-size: 35px;
    line-height: 41px;
    text-transform: uppercase;
    color: #0054A3;
    margin-bottom: 3rem; 
    text-align: center;
}
section.blog h2{
    text-transform: none !important;
    font-style: unset !important;
    
}

section.blog .item{
    margin: 10px 0;
}

section.blog .item .card{
    border-radius: 15px;
    box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 29%);
    transition: .4s; 
    border: 0;
    background: #023582;
    color: white;
}

section.blog .item .card:hover{
    transform: scale(0.95);
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 50%);
}

section.blog .item .card img{
    height: 180px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: transform 0.4s ease;
    transform-origin: 50% 50%;
}

section.blog .item .card .card-body{
    min-height: 230px;
}

section.blog .item .card small{
    background-color: #e84e0d;
    padding: 2px 5px;
    border-radius: 5px;
    font-size: 12px;
}



section.blog .item .card h2{
    font-size: 1rem;
    color: white;
    margin-top: 10px;
    line-height: 1.15rem;
}

section.blog .item .card h2::after{
    width: 47px;
    height: 4px;
    background: #e84e0d;
    text-align: left;
    content: '';
    display: block;
    margin-top: 3px;
}

section.blog .item .card p{
    margin-top: 15px;
    color: white;
    font-size: 15px;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

section.blog .btn-blue{
    color: white;
    margin-top: 2rem;
    background: #023582;
    padding: 10px 25px;
    border-radius: 15px;
    font-size: 18px;
    transition: .4s;
    border: 2px solid #023582;
}

section.blog .btn-blue:hover{
    background: transparent;
    color: #023582;
}

/*  localizacao */


/*  localizacao */

section.localizacao_mapa {
    background-color: #FFFFFF;
}

section.localizacao_mapa .mapa:before {
    content: '';
    display: block;
    height: 78px;
    background-image: url(../img/line_mapa.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-bottom: -4rem;
    z-index: 15;
    background-color: transparent;
}

section.localizacao_mapa h1 {
    font-style: italic;
    font-weight: normal;
    font-size: 35px;
    line-height: 41px;
    text-transform: uppercase;
    color: #0054A3;
    margin-top: 5rem;
    text-align: center;
}

section.contato {
    background: #ffffff;
    padding: 0 0 5rem 0;
}

section.contato h1 {
    font-style: italic;
    font-weight: normal;
    font-size: 35px;
    line-height: 41px;
    text-transform: uppercase;
    color: #0054A3;
    margin-top: 5rem;
    text-align: center;
}

section.contato .form-control {
    border: 1px solid #BDBDBD;
    box-sizing: border-box;
    border-radius: 5px;
    font-style: italic;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    color: #BDBDBD;
}


select.custom-select {
    height: 55px;
    -webkit-border-radius: 5px!important;
    -moz-border-radius: 5px!important;
    border-radius: 5px!important;
    -khtml-border-radius: 5px!important;

}

section.contato .btn.enviar {
    font-weight: 900;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #0054A3;
    border-radius: 5px;
    padding: 12px 75px;
    transition: .6s;
}

section.contato .btn.enviar:hover {
    color: #FFFFFF;
    background: #f6a70e;
    transition: .6s;
}


/*  footer */

footer {
    background-image: url(../img/bg_footer.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 10rem 0 0;
    height: 572px;
    background-color: white;
}

footer h1 {
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    text-transform: uppercase;
    color: #FFFFFF;
}

footer .media {
    margin-top: 1rem;
}

footer .media h5 {
    font-weight: 300;
    font-size: 16px;
    line-height: 21px;
    color: #FFFFFF;
}

footer ul {
    list-style-type: none;
    padding-inline-start: 0px;
}

footer ul li {
    margin: 10px 0;
}

footer ul li a {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 21px;
    color: #FFFFFF;
    padding: 5px 10px;
    border-radius: 5px;
    transition: .6s;
}

footer ul li a:hover {
    background: #FFFFFF;
    color: #0054A3;
    transition: .6s;
}

.pulse:hover {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

section.copyright {
    background-image: url(../img/bg_footer.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: bottom;
    color: #ffffff;
    padding: 4rem 0 45px 0;
    background-color: white;
}

 #textSAC{
    margin-top: -35px;
}

.navbar-collapse.collapse.show {
    padding-bottom: 5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #4f4f4f;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: .25rem;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
}

.navbar-nav .dropdown-menu {
    margin-bottom: 2rem;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #ffffff;
    text-decoration: none;
    background-color: #0054A3bf;
}
.dropdown-item {
    font-size: 12px;
    text-transform: uppercase;
}


/* section covid */

div#owl-covid {
	padding-top: 60px
}

section.covid .card {
	box-shadow: none;
}

section.covid .card .card-body{
	padding: 0;
}

section.covid .card .card-body img{
	height: 280px;
	width: 100%!important;
	border-radius: 25px 8px;
	object-fit: cover;

}

section.covid .owl-dots {
	margin-top: 0rem;
}

section.covid .card .card-body p{
	margin: 20px 20px 0 20px;
	font-size:16px;
}

/* section vagas 

section.landing-vagas{
    background-image: url(../img/bg-vagas.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% 650px;
}*/

section.landing-vagas .header img{
    display: block;
    margin:0 auto;
}

section.landing-vagas .header .logo{
    max-width: 200px;
    width: 100%;
}

section.landing-vagas .header .title-vagas{
    padding: 5rem 0;
    max-width: 900px;
    width: 100%;
}

section.landing-vagas .colaboradores{
    background-image: url(../img/bg-vagas1.png);
    background-size: cover;
    padding-top: 4rem;
    margin-top: 2rem;
}

section.landing-vagas h1{
    font-style: italic;
    font-weight: bold;
    font-size: 35px;
    line-height: 41px;
    text-transform: uppercase;
    color: #0054A3;
    text-align: center;
}

#video-institucional{
    width: 100%;
    max-width: 700px;
    height: 290px;
}

section.landing-vagas .colaboradores h2, section.landing-vagas .colaboradores p{
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
}

section.landing-vagas a.btn-link{
    background: #E9540C!important;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 20px;
    text-decoration: none;
    transition: .4s;
    margin: 2rem auto;
    display: table;
    color: white; 
    text-align:center;
    width: 300px;
}

section.landing-vagas a.btn-link:hover{
    transform: scale(1.1);
}

@keyframes fadeIn { 
  from { transform: scale(1.1); } 
}

section.landing-vagas .animate-flicker {
    animation: fadeIn 1.5s infinite alternate;
}

/* section.MVV - Missão Visão Valores */

section.landing-vagas .mvv {
    padding: 4rem 0;
}

section.landing-vagas .mvv h2{
    text-align: center;
    color: white;
    text-shadow: 1px 1px 1px #0000004d;
    flex: 100%;
    margin-bottom: 30px;
}

section.landing-vagas .mvv p{
    color: white;
    font-size: 20px;
    text-shadow: 1px 1px 1px #0000004d;
    text-align: center;
    margin-bottom: 0;
}

section.landing-vagas .mvv ul li{
    color: white;
}

section.landing-vagas .mvv .card img{
    width: 130px;
}

section.landing-vagas .mvv .card{
    background-color: #1d4994;
    background: url(../img/bg-vagas1.png);
    background-size: 250%;
    background-position: center;
}

section.landing-vagas .mvv .card-space:hover .card{
  transform: rotateY(-180deg);
}

section.landing-vagas .mvv .card{
    padding: 20px 15px;
    margin: 20px auto;
    border-radius: 10px;
    min-height: 220px;
    box-shadow: 0 0 15px #0000002e;
    transition: all .5s ease;
    border-radius: 10px;
    height: 300px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;  
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
}

section.landing-vagas .mvv .face{
    align-items: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    position: absolute;
    left: 0;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

}

  
section.landing-vagas .mvv .face.front{
    text-align: center;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
  }
section.landing-vagas .mvv .face.back{ 
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    top: 0;
    height: 300px;
}

section.landing-vagas .mensagem-rh{
    background-image: url(../img/bg-vagas2.png);
    padding: 5rem 0;
}

section.landing-vagas .mensagem-rh h1{
    font-style: italic;
    font-weight: medium;
    font-size: 26px;
    line-height: 41px;
    text-transform: uppercase;
    color: white;
    text-align: center;
}

/* section timeline */

section.time-line .timeline {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 15px 0;
  margin-top: 5rem;
}

section.time-line .timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: #e84e0e;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

section.time-line .c-tainer {
  padding: 25px 30px;
  position: relative;
  background: inherit;
  width: 50%;
}

section.time-line .c-tainer.left {
  left: 0;
}

section.time-line .c-tainer.right {
  left: 50%;
}

section.time-line .c-tainer::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  right: -8px;
  background: #ffffff;
  border: 2px solid #e84e0e;
  border-radius: 16px;
  z-index: 1;
}

section.time-line .c-tainer.right::after {
  left: -8px;
}

section.time-line .c-tainer::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  top: calc(50% - 1px);
  right: 8px;
  background: #e84e0e;
  z-index: 1;
}

section.time-line .c-tainer.right::before {
  left: 8px;
}

section.time-line .c-tainer .date {
  position: absolute;
  display: inline-block;
  top: calc(50% - 18px);
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #e84e0e;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
}

section.time-line .c-tainer.left .date {
  right: -85px;
}

section.time-line .c-tainer.right .date {
  left: -85px;
}

section.time-line .c-tainer .icon {
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 9px 0;
  top: calc(50% - 20px);
  background: white;
  border: 2px solid white;
  border-radius: 40px;
  text-align: center;
  font-size: 18px;
  color: #e84e0e;
  z-index: 1;
}

section.time-line .c-tainer.left .icon {
  right: 56px;
}

section.time-line .c-tainer.right .icon {
  left: 56px;
}

section.time-line .c-tainer .content {
  padding: 30px 90px 30px 30px;
  background: #2154a3;
  position: relative;
  border-radius: 20px 100px 100px 20px;
}

section.time-line .c-tainer.right .content {
  padding: 30px 30px 30px 90px;
  border-radius: 100px 20px 20px 100px;
}

section.time-line .c-tainer .content h2 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: normal;
  color: #e84e0e;
}

section.time-line .c-tainer .content p {
  margin: 0;
  font-size: 22px;
  line-height: 26px;
  color: white;
}

@media (max-width: 767.98px) {
  section.time-line .timeline::after {
    left: 90px;
  }

  section.time-line .c-tainer {
    width: 100%;
    padding-left: 120px;
    padding-right: 30px;
  }

  section.time-line .c-tainer.right {
    left: 0%;
  }

  section.time-line .c-tainer.left::after, 
  section.time-line .c-tainer.right::after {
    left: 82px;
  }

  section.time-line .c-tainer.left::before,
  section.time-line .c-tainer.right::before {
    left: 100px;
    border-color: transparent #e84e0e transparent transparent;
  }

  section.time-line .c-tainer.left .date,
  section.time-line .c-tainer.right .date {
    right: auto;
    left: 15px;
  }

  section.time-line .c-tainer.left .icon,
  section.time-line .c-tainer.right .icon {
    right: auto;
    left: 146px;
  }

  section.time-line .c-tainer.left .content,
  section.time-line .c-tainer.right .content {
    padding: 20px;
    border-radius: 25px;
  }
  section.time-line .c-tainer.left .icon, section.time-line .c-tainer.right .icon{
    display: none;
  }
  section.time-line .c-tainer .content p {
    font-size: 18px
  }
}

/* section portal rh */

section.portal-rh{
    min-height: 95vh;
}
section.copyright{
    height: 5vh;
}

section.portal-rh .header{
    background-image: url(../img/bg-vagas1.png);
    background-size: cover;
    padding-top: 1rem;
    margin-top: 0;
    border-bottom: #ee6f0a 5px solid;
}

section.portal-rh .header .logo{
    width: 200px;
    margin: 0 auto;
    display: block;
}

section.portal-rh .portais{
    padding: 4rem 0;
}

section.portal-rh h1{
    padding-bottom: 3rem;
    position: relative;
    right: 20px;
    font-style: italic;
    font-weight: bold;
    font-size: 35px;
    line-height: 41px;
    color: #0054A3;
    text-align: center;
}

section.portal-rh .portais .card{
    background-color: #2254a3;
    margin-bottom: 2rem;
    color: white;
    transition: .3s ease;
    border-radius: 25px 3px;
}

section.portal-rh .portais .card:hover {
    transform: scale(1.03);
}

section.portal-rh .portais h3{
    background-color: #e9540c;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 16px;
}

section.portal-rh .portais p{
    color: #FFFFFF;
    font-size: 22px;
    margin-bottom: 0;
}

/* section interna */

section.interna {
    padding: 10rem 0 5rem 0;
    background: #FFFFFF;
}

section.interna p {
    font-weight: normal;
    font-size: 16px;
    line-height: 146.4%;
    color: #5a5a5a;
}

section.interna h1 {
    font-style: italic;
    font-weight: bold;
    font-size: 35px;
    line-height: 41px;
    text-transform: uppercase;
    color: #0054A3;
    margin-top: 5rem;
}

section.interna h2 {
    font-style: italic;
    font-weight: bold;
    font-size: 26px;
    line-height: 30px;
    text-transform: uppercase;
    color: #0054A3;
}

.page-link:hover {
    z-index: 2;
    color: #ffffff;
    text-decoration: none;
    background-color: #0054A3;
    border-color: #0054A3;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0054A3;
    border-color: #0054A3;
}

section.interna h2 img {
    width: 20px;
}

section.interna .card {
    margin-bottom: 2rem;
}

section.interna .detalhes .card {
    transition: none;
}

section.interna .detalhes .card:hover {
    transform: scale(.95);
    transition: none;
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #f6a70e;
    background-color: #fff;
    border: 1px solid #f6a70e;
}

section.blog.interna {
    background: #FFFFFF;
    background-size: cover;
    height: auto;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 0 0 0;
}

section.blog.interna .card {
    text-align: left;
}

section.blog.interna .detalhes .card img {
    width: 100%;
    height: 198px;
    margin: auto;
    object-fit: cover;
    border-radius: 1.25rem;
}

section.blog.interna .detalhes .card .card-body p {
    font-weight: normal;
    font-size: 17px;
    line-height: 21px;
    color: #828282;
    margin-top: 1rem;
    display: flex;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: initial;
    overflow: initial;
    text-overflow: initial;
}
section.blog.interna .detalhes .card .card-body.pt-4 p,
section.blog.interna .detalhes .card .card-body.pt-4 p span {
    font-weight: normal!important;
    font-size: 17px!important;
    line-height: 21px!important;
    color: #fff!important;
    font-family: 'Roboto', sans-serif!important;
    margin-top: 1rem!important;
    display: flex!important;
    max-width: 100%!important;
    -webkit-line-clamp: 2!important;
    -webkit-box-orient: initial!important;
    overflow: initial!important;
    text-overflow: initial!important;
}
section.blog.interna .detalhes .card:hover {
    transform: scale(1)!important;
    transition: none;
}

section.blog.interna .card-interno p,
section.blog.interna .card-interno p span {
    font-weight: normal!important;
    font-size: 16px!important;
    line-height: 146.4%!important;
    color: #5a5a5a!important;
    font-family: 'Roboto', sans-serif!important;
    margin-top: 1rem!important;
    /* display: flex!important; */
    max-width: 100%!important;
    -webkit-line-clamp: 2!important;
    -webkit-box-orient: initial!important;
    overflow: initial!important;
    text-overflow: initial!important;
}
section.blog.interna .card-interno p span img{
    width: 100% !important;
    height: 100% !important;
}

section.form .btn.enviar {
    font-weight: 900;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #0054A3;
    border-radius: 5px;
    padding: 12px 75px;
    transition: .6s;
}

section.form .btn.enviar:hover {
    color: #FFFFFF;
    background: #f6a70e;
    transition: .6s;
}

.pesquisa_loja h1 {
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 35px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.pesquisa_loja select {
    min-height: 48px;
    border-radius: 5px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #828282;
}

.pesquisa_loja .buscar button {
    background: #E84E0E;
    border-radius: 5px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    min-height: 48px;
    padding: 15px 20px;
}

.pesquisa_loja {
    background-image: url(../img/pesquisa.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
    padding: 4rem 0;
    background-color: transparent;
    min-height: 271px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    margin-top: -14rem;
}


/* medias querys */

@media(min-width:1200px) {
    section.quem-somos {
        margin-bottom: -4rem;
    }
    section.vitrine {
        display: block;
    }
    section.vitrine_mobile {
        display: none!important;
    }
    section.form{
        min-height:750px;
    }
}
@media(max-width:1199px) {

    section.vitrine {
        display: none!important;
    }
    section.vitrine_mobile {
        display: block;
    }
    .link-top .btn,
    .link-top li a img {
        margin-bottom: .5rem;
    }
    section.quem-somos .frango img {
        width: 100%!important;
        position: inherit;
        margin-top: 0rem;
        right: 0;
    }
}

@media(max-width:800px) {
    section.sociais {
        height: auto;
        padding: 3rem 0 20rem 0;
        margin: 3rem auto 0 auto;
    }
}

@media(min-width:992px) {
    .navegador .navbar-collapse {
        display: block!important;
    }
    section.landing-vagas .header .title-vagas{
        width: 70%!important;
        padding: 3rem 0;
    }
    section.landing-vagas{
        background-size: 100% 450px;
    }
}
@media(max-width: 767px){
    .blog.interna  img.card-img-top.px-5.py-4.m-auto.d-block.w-75 {
        padding: 20px 0 0!important;
        width: 100%!important;
    }
	section.quem-somos .frango img {
        width: 50%!important;
        position: inherit;
        margin-top: 0rem;
        right: 0;
    }
    section.landing-vagas .colaboradores{
        padding-top: 2rem;
        margin-top: 3rem;
    }
    section.landing-vagas .colaboradores h2{
        font-size: 1.5rem;
    }
    section.landing-vagas{
        background: unset;
    }
    section.landing-vagas .mensagem-rh{
        padding: 2rem 0;
    }
    section.landing-vagas .mvv .card{
        height: 250px;
        margin: 10px auto;
    }
    section.landing-vagas .mvv h2{
        font-size: 26px;
    }
    section.landing-vagas .mvv .card img{
        width: 100px;
    }
    section.landing-vagas .mvv .face.back{
        height: 250px;
    }
    section.landing-vagas .mvv p{
        font-size: 18px;
    }
    section.landing-vagas .mvv .card-space:hover .card{
      transform: rotateY(0);
    }
    section.landing-vagas .mvv .card-space:hover .face.front{
        opacity: 0;
        -webkit-opacity: 0;
    }
    section.landing-vagas .mvv .card-space .face.front{
        -webkit-opacity: 1;
        -moz-transition: opacity .5s ease-in-out;
        -ms-transition: opacity .5s ease-in-out;
        -o-transition: opacity .5s ease-in-out;
        -webkit-transition: opacity .5s;
        transition-duration: .5s;
    }
    section.landing-vagas .mvv .card-space .face.back{
        opacity: 0;
        -webkit-opacity: 0;
        -moz-transition: opacity .5s ease-in-out;
        -ms-transition: opacity .5s ease-in-out;
        -o-transition: opacity .5s ease-in-out;
        -webkit-transition: opacity .5s;
        transition-duration: .5s;
        transform: rotateY(0deg);

    }
    section.landing-vagas .mvv .card-space:hover .face.back{
        opacity: 1;
        -webkit-opacity: 1;
    }
}
@media(max-width: 650px){
	section.quem-somos .frango img {
      width: 100%!important;
    position: relative;
    margin-top: 5rem;
    margin-left: 0;
    }
}
@media(min-width:600px) {
    section.quem-somos .bg {
        height: 685px;
    }
}

@media(max-width: 500px){
    

    section.landing-vagas .mvv .card{
        transition: all .5s linear;
        -webkit-transition: all .5s linear;
    }
    section.landing-vagas .mvv .face{
        padding: 15px 10px;
    }
    section.landing-vagas .mvv .face.back ul{
        padding-left: 25px;
        font-size: 15px;
    }
    section.landing-vagas .header .title-vagas{
        padding: 4rem 0;
        width: 85%!important;
    }
    section.landing-vagas .principios .item .card{
        margin: 15px 0;
    }
    section.landing-vagas .principios .item img{
        height: 80px;
        width: 70px;
    }
    section.landing-vagas .principios .item p{
        font-size: 14px;
    }
    section.landing-vagas .principios .item .card-body{
        padding: .6rem!important;
        min-height: 275px;
    }
}

@media(max-width:380px) {
    section.localizacao {
        margin-left: 0;
    }
    section.localizacao .card {
        background-image: url(../img/bg_form_mapa.png);
        background-color: transparent;
        border: none;
        background-size: contain;
        background-repeat: no-repeat;
        padding: 0px 24px;
        width: auto;
        height: auto;
    }
    section.localizacao .card .card-body {
        padding: 15px 30px 44px 23px;
        margin-top: 2rem;
        width: 247px;
    }
    section.localizacao .form-control {
        background: #FFFFFF;
        border: 1px solid #BDBDBD;
        box-sizing: border-box;
        border-radius: 15px;
        min-height: 42px;
        padding: 0.375rem 0.75rem;
        font-weight: normal;
        font-size: 14px;
        line-height: 19px;
        text-align: center;
        color: #828282;
    }
    section.localizacao .btn {
        padding: 5px 35px;
        background: #f6a70e;
        border-radius: 5px;
        font-weight: bold;
        font-size: 16px;
        line-height: 23px;
        text-transform: uppercase;
        color: #FFFFFF;
        min-height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: .6rem;
        box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    }
}

@media (max-width: 767px) {
    section.navegador {
        min-height: auto;
    }
    section.interna {
        padding: 0!important;
    }
    section.interna.form h1 {
        font-size: 22px!important;
    }
    section.interna h1 {
        font-size: 25px;
        line-height: 28px;
    }
    section.interna h1 img {
        width: 30px;
    }
    section.interna h2 {
        font-size: 20px;
        line-height: 23px;
    }
    section.interna h2 img {
        width: 30px;
    }
    section.localizacao {
        margin-left: 0;
    }
    footer {
        background-image: url(../img/bg_footer2.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        padding: 8rem 0 0 0;
        height: 1200px;
        background-color: white;
    }
}

@media(max-width:750px) {
    section.produtos .card img {
        width: 100%;
        height: 140px;
        padding: 10px 15px;
    }
    .navbar-nav .dropdown-menu {
        position: absolute;
        float: none;
    }
    .li_sociais {
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    p {
        font-size: 14px;
    }
    section.navegador {
        display: flex;
        justify-content: center;
        box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);
        width: 100%;
        z-index: 2;
        background: #ffffff;
        position: relative;
        transition: all .6s ease-in-out;
        padding-bottom: 0;
    }
    section.img_vitrine {
        padding-top: 0;
        z-index: 9 !important;
    }
    .navbar-collapse {
        padding-bottom: 6rem;
    }
    section.quem-somos h1 {
        font-size: 25px;
        line-height: 28px;
    }
    section.quem-somos h1 img {
        width: 30px;
    }
    section.quem-somos h2 img {
        width: 20px;
    }
    section.quem-somos {
        background-image: url(../img/bg_quemsomos.png);
        background-color: white;
        background-repeat: no-repeat;
        background-position: right;
        background-size: cover;
        height: 1300px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -9.4rem;
        position: sticky;
        z-index: 0;
    }
    
    section.produtos {
        padding: 0;
        min-height: 800px;
    }
    section.produtos h1 {
        font-size: 25px;
        line-height: 28px;
    }
    section.produtos h1 img {
        width: 30px;
    }
    section.blog h1 {
        font-size: 25px;
        line-height: 28px;
    }
    section.blog h1 img {
        width: 30px;
    }

    section.instagram {
        margin-top: -20rem;
    }
    section.instagram h1 {
        font-size: 25px;
        line-height: 28px;
    }
    section.instagram h1 img {
        width: 29px;
        padding-bottom: 3px;
    }
    section.localizacao_mapa {
        padding: 0;
    }
    section.localizacao_mapa h1 {
        font-size: 25px;
        line-height: 28px;
        margin-top: 0;
    }
    section.localizacao_mapa h1 img {
        width: 29px;
        padding-bottom: 3px;
    }
    section.contato h1 {
        font-size: 25px;
        line-height: 28px;
    }
    section.contato h1 img {
        width: 29px;
        padding-bottom: 3px;
    }
    .logo {
        width: 130px!important;
    }
    footer h5 {
        margin-top: 2rem;
    }
    footer {
        padding: 8rem 0 3rem 0;
    }
    section.localizacao h2 {
        margin-bottom: 1rem;
    }
    section.img_vitrine .owl-dots {
        margin-top: -2rem;
        position: absolute;
        left: 10%;
        right: 10%;
    }
    .pesquisa_loja h1 {
        font-size: 25px;
        line-height: 30px;
    }
    .pesquisa_loja .buscar {
        margin-top: 2rem;
    }
    .pesquisa_loja {
        background-image: url(../img/pesquisa2.png);
        background-repeat: no-repeat;
        background-size: cover;
        color: #ffffff;
        padding: 2rem 0 3rem 0;
        background-color: #ffffff;
        min-height: 510px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
        margin-top: 0;
        text-align: center;
        background-position: bottom;
    }

    #textSAC{
        margin-top: -29px;
    }
}

@media(max-width:370px) {
    .navegador.sticky .navbar-brand img,
    .navbar-brand img {
        width: 140px;
        padding: 10px;
        transition: .6s;
    }
    .img-resp {
        width: 180px!important;
    }

    #textSAC {
        margin-top: -38px;
        margin-bottom: 10px;
    }

    section.copyright {
        background-image: url(../img/bg_footer.png);
        background-repeat: no-repeat;
        background-position: bottom;
        color: #ffffff;
        padding: 4rem 0 82px 0;
        background-color: white;
        background-size: 3300px;
    }
}

.input-file-container {
    position: relative;
    width: 100%;
}

.js .input-file-trigger {
    display: block;
    padding: 10px 30px;
    background: #f6a70e;
    color: #fff;
    font-size: 1em;
    transition: all .4s;
    cursor: pointer;
    border-radius: 10px;
    margin-bottom: 15px;
}

.js .input-file {
    position: absolute;
    top: 0;
    left: 0;
    width: 225px;
    opacity: 0;
    padding: 14px 0;
    cursor: pointer;
}

.js .input-file:hover+.input-file-trigger,
.js .input-file:focus+.input-file-trigger,
.js .input-file-trigger:hover,
.js .input-file-trigger:focus {
    background: #0054A3;
    color: #fff;
}

.file-return {
    margin: 0;
}

.file-return:not(:empty) {
    margin: 1em 0;
}

.js .file-return {
    font-style: italic;
    font-size: .9em;
    font-weight: bold;
}

.js .file-return:not(:empty):before {
    content: "Arquivo selecionado: ";
    font-style: normal;
    font-weight: normal;
}

@media (max-width: 1399px){
    section.quem-somos {
        margin-top: -5rem;
    }

}

@media (max-width: 1199px){
    .portal-btn a{
        padding: 7px 10px!important;
    }
    section.navegador{
        min-height: 110px!important;
    }
    nav.navbar.navbar-expand-lg.navbar-light {
        width: 100%;
    }
    .navegador .navbar-brand img {
        width: 140px;
        transition: .6s;
    }
    .nav-item .nav-link{
        font-size: 11px;
    }
    .nav-item{
        padding: 2px;
    }
}

@media (max-width: 1024px){
    section.quem-somos {
        margin-top: -3rem;
    }

}