/*Reset */
* {
    padding: 0;
    margin: 0;
    font-family: 'PT Sans', sans-serif;
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@100;300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;700&family=PT+Sans&display=swap');

html {
    scroll-behavior: smooth;
  }

img {
    max-width: 100%;
    display: block;
    height:auto;
}

section, .item {
    scroll-margin-top: 3em;
}


a {
    text-decoration: none;
    outline: none;
    word-wrap: break-word;
    color: #fff;
    line-height: 1.4em;
    font-size: 1em;
}

/* .current-menu-item > a{
    background-color:yellowgreen;
    color: white;
} */

#servicos a{

    display: inline-block;
}
.servico_box {
    display:flex
}
.servico_box item {
    margin:10px;
}
html, body{
    overflow-x: hidden;
}

form,
p,
span {
    line-height: 1.4em;
    font-size: 1em;
    color: #fff;
}

li {
    list-style: none
}

.btn-menu {
    display: none
}
/* Galeria */
.galeria_item {
    display:flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin:0 auto;
}
.galeria_item  a{
    min-width: 287px;
    margin:10px;

 }
     
 .thumbnail img:nth-of-type(3n+3) {
    margin-right: 0;
 }
/* Padrão */
body {
    background: #14181F;
}
h1, h2, h3, h4, .title-3{font-family: 'Barlow Condensed', sans-serif;font-weight: bold;}
.title, .title-2,
.intro h1 {
    font-size: 2.625em;
    line-height: 46px;
    color: #fff;
    margin-bottom: 5px;
    text-align: center;
}
.credito_foto_horizontal {
    display:none;
}
.credito_foto{
font-size: 12px;
margin-bottom: 30px;
writing-mode: tb-rl;
float:right;
transform: rotate(180deg);
position:relative;
top:-50px;
opacity:0.5;
}
.aligncenter{
    text-align: center;
    margin:0 auto;

}


.intro h1 {
    font-size: 4em;
    line-height: 62px;
}
.title::after,
.title::before {
    content: '';
    display: inline-block;
    height: 1px;
    width: 80px;
    position: relative;
    top: -11px;
    margin: 0 10px;
    background-color: #434953;
}

.subtitle {
    font-size: 1.125em;;
    display: block;
    font-weight: 400;
    text-align: center;
}

.title-3 {
    font-size: 1.3125em;
    color: #fff;
}

.btn-white {
    /* background: #fff; */
    color: #fff;
    padding: 9px 20px;
    font-weight: bold;
    display: inline-block;
    border-radius: 5px;
    margin-top: 24px;
    transition: .2s linear;
    border: 1px solid #fff;
    font-size: 1em;
    text-transform: uppercase;
}

.btn-white:hover {
    background-color: #fff;
    color:#434953
}

.bt-large:hover img {
    filter: brightness(0%) invert(100%);
    animation: to-right .3s ease;
}
@keyframes to-right {
    0%{ 
        opacity: 0;
        transform: translate3d(-20px,0 ,0);
    }

    50% {
        opacity: 1;
        transform: translate3d(-10px,0 ,0);
    }

    100% { 
        transform: translate3d(0,0,0); 
    }
}

.bt-large {
    border: 1px solid #707070;
    border-radius: 4px;
    padding: 0 25px;
    font-size: 1.125em;
    color: #707070;
    width: 100%;
    line-height: 50px;
    transition: .3s linear;
    text-align: center;
}

.bt-large img {
    float: right;
    margin-top: 17px!important;
    padding-left:20px;
}


.bt-large:hover {
    background: #fff;
    color: #111111;
}

.bt-large:hover img {
    filter: brightness(0%);
}

/* Header  */

header {
    padding: 20px 0 30px 0;
    background: #14181F;
    position: fixed; 
    width: 100%;
    top: 0;
    z-index: 2000;
    transition: .3s ease-in-out;
}
header.home{
    background: transparent;
}

header.fixed {
    background: #14181F;
    box-shadow: 2px 2px 20px 0px #111111;
    padding: 0px 0 20px 0;
}

/* header .container-flex {
    display: grid;
    grid-template-columns: auto auto 170px;
    align-items: flex-end;
} */

header .container-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    
}
.container-flex a{
    font-family: 'PT Sans', sans-serif;
}
header nav {
    display: flex;
    justify-content: flex-end;
}

header nav ul {
    display: flex;
    justify-self: center;
}

header .logo a {
    position: relative;
    bottom: -15px;
}

header nav li+li {
    margin-left: 20px;
}

header nav a {
    text-transform: uppercase;
    font-size: 1em;
}

header nav li {
    position: relative;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    -webkit-transform: scale3d(0, 5, 1);
    transform: scale3d(0, 5, 1);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    transition: transform 0.3s;
}

header nav li:hover a::after {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    background: #fff;
}


.bt-whats {
    background-color: #23C776;
    border-radius: 24px;
    padding: 2px 12px;
    line-height: 30px;
    transition: .2s linear;
    text-align: center;
    margin-left: 10px;
    position: relative;
    top: 5px;
}
.bt-whats:hover {
    background-color: #21975D;
}

.bt-whats svg {
    position: relative;
    top: 3px;
    margin-right: 2px;
}


/* Pagina Home */
.intro {
    width: 100%;
    text-align: center;
    height: 100%;
    padding-top: 80px;
    transition: .2s forwards;
    background-attachment: fixed!important;
  background-position: center!important;
  background-repeat: no-repeat!important;
  background-size: cover!important;
  color:#fff;
}

.js .intro.noBackground {
    background: transparent !important;
}

.intro .container {
    padding-top: 250px;
    padding-bottom: 250px;
}

.destaque_home img {
    align-items: center;
    border-radius: 200px;
    width: 150px;
    height:150px;
    background-repeat: no-repeat;
    
}

.destaque_home img:hover{
    padding:5px;
    border-radius: 200px;;
    border:2px solid #fff;
}
.destaque_home img{
    margin:0 auto;
}

.produtos_relacionados {
    padding:60px 0;
}
.produtos_relacionados h3 {
   text-align:center;
   margin-top:10px;
   margin-bottom:15px;
}
.related_products
{
    height:242px;
    background-size:cover;
    background-position:center;
    border-radius: 10px;;

}

.destaque_home:hover {
    transition: .3s ease-in-out;
    }

.related_products:hover {
    opacity: 0.5!important;
    transition: .3s ease-in-out;
    }
    



.sec-solucoes {
    padding: 120px 0 120px 0;
    text-align: center;
}

.sec-solucoes .subtitle {
    margin-bottom: 60px;
}

.sec-solucoes .item img {
    border-radius: 5px;
}

.item img{
    margin:0 auto;
}

.sec-solucoes h3 {
    margin-top: 20px;
}

.sec-produtos {
    background-color: #2E3238;
    padding: 60px 0 100px 0;
    text-align: center;
}

.sec-produtos .subtitle {
    margin-bottom: 30px;
}
.sec-produtos .content img {
    object-fit: contain;
}
.sec-produtos .content {
    border: 1px solid #434953;
    border-radius: 11px;
    width: 100%;
    height:200px;
    display: flex;
    justify-content: center;
    padding: 20px 10px;
    margin-bottom: 10px;
    transition: .3s ease-in-out;
}
.sec-produtos .content:hover{
    border: 1px solid #fff;
}
.sec-produtos .slick-slide+.slick-slide {
    padding-left: 20px;
}

.sec-produtos .slick-prev {
    display: none !important;
}
.slick-lightbox-slick-img {
    height: auto!important;
}
.sec-produtos .slick-next {
    width: 40px;
    opacity: 0.5;
    height: 40px;
    top: calc(50% - 15px);
    right: 0px;
    border-radius: 50%;
}

.sec-produtos .slick-next::before {
    content: url(../img/icon-arrow.png);
    color: #707070;
    opacity: 1;
    position: relative;
    top: 0px;
}

.sec-produtos .slick-next:hover {
    opacity: 1;
}

.sec-servicos h3{
    font-family: 'PT Sans', sans-serif;
}
.sec-servicos {
    display: flex;
}
.sec-servico a {
    color:#fff;
}
.sec-servicos .grid-7 {
    width: 50%;
    margin: 0;
    /* background-size: cover;
    background-repeat: no-repeat; */
    display: flex;
}

.sec-servicos .grid-5 {
    width: 41.666%;
    margin: 0;
}

.sec-servicos .grid-5 {
    padding: 50px 0 50px 0;
    background-color: #14181F;
    text-align: center;
}

.sec-servicos .title-3 {
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 20px;
}

.sec-servicos .bt-large+.bt-large {
    margin-top: 8px;
}

.sec-servicos .content {
    width: 80%;
    margin: 0 auto;
}
.produto-grid{
    display:flex;
    max-width: 100%;
    text-align: center;
    justify-content: center;
    margin-bottom: 60px;
    
}
.produto-item{
    border: 1px solid #434953;
    border-radius: 11px;
    margin-left:10px;
    width: 180px;
    height: 200px;
    display: flex;
    justify-content: center;
    padding: 20px 10px;
    margin-bottom: 10px;
    transition: .3s ease-in-out;
   
}
.produto-item a{
    text-align:center;
}
.produto-item img {
    object-fit: contain;
}

.sec-portfolio {
    background-color: #2E3238;
    padding: 80px 0 50px 0;
}

.sec-portfolio .subtitle {
    margin-bottom: 50px;
}


.sec-portfolio .grid-3 {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}
.back-to-top button{
    border: 0;
    background: none;
    outline: none;

}
.center{
    text-align: center;
    margin:0 auto;
}
.back-to-top {
    padding: 13px;
    width: 50px;
    height: 50px;
    background: #d1d2d3;
    margin: 0 auto;
    text-align: center;
    position: relative;
    top: -30px;
    border-radius: 4px;
}
.sec-depoimentos {
    padding: 60px 0 50px 0;
}

.sec-depoimentos .slide-depoimentos {
    padding-bottom: 60px;
}

.sec-depoimentos .subtitle {
    margin-bottom: 40px;
}

.sec-depoimentos .slick-next,
.sec-depoimentos .slick-prev {
    background-color: #14181F;
    width: 48px;
    height: 50px;
    background: #14181F;
    top: 20%;
    border: 1px solid #2E3238;
}

.sec-depoimentos .slick-next {
    right: 10px;
}

.sec-depoimentos .slick-prev {
    left: 10px;
    z-index: 100;
}

.sec-depoimentos .slick-prev::before {
    content: url(../img/arrow-prev.png);
    color: #707070;
    transform: rotate(-90deg);
    opacity: 1;
    position: relative;
    top: 0px;
}

.sec-depoimentos .slick-next::before {
    content: url(../img/arrow-next.png);
    color: #707070;
    opacity: 1;
    position: relative;
    top: 0px;
}
.slick-dots li button:before{
    font-family: Arial, Helvetica, sans-serif;
}
.slick-dots li button {
    position: relative;
    top: -31px;
}
.dots-slide .slick-dots li {
    margin: 0 0px;
}

.dots-slide .slick-dots {
    left: 0;
}

.dots-slide .slick-dots button::before,
.dots-slide .slick-dots .slick-active button::before {
    font-size: 45px;
    color: #707070;
}

.dots-slide .slick-dots .slick-active button::before {
    color: #FFFFFF;
}
.slick-initialized .slick-slide {
    outline: none;
}

.sec-depoimentos .slick-dotted.slick-slider {
    margin: 60px auto 120px auto;
}

.sec-depoimentos cite,
.sec-depoimentos p {
    width: calc(80% - 160px);
    text-align: center;
    display: block;
    margin: 0 auto;
    color: #fff;
}

.sec-depoimentos p {
    font-size: 1.125em;
    margin-top: 20px;
}

.sec-depoimentos cite {
    font-size: 26px;
}

.footer * {
    color: #14181F;
}

footer .container-flex {
    display: flex;
}

.footer {
    background: #fff;
    padding: 5px 0 40px 0;
}

.footer .item {
    width: 20%;
    padding: 0 10px;
}

.footer .item:first-child p {
    max-width: 90%;
}

.footer .item:last-child,
.footer .item:first-child {
    width: 30%;
}

.footer .center {
    text-align: center;
}

.footer .center ul {
    margin-top: 25px;
}

.footer .center li {
    display: inline-block;
}

.footer .center li+li {
    margin-left: 30px;
}

.footer .logo {
    margin-bottom: 24px;
}
.footer .logo img{
    max-width: 180px;
    margin:0 auto;
}

.footer span {
    font-size: 1.5em;
    font-weight: bold;
    font-family: 'Barlow Condensed', sans-serif;
    padding-bottom: 15px;
    min-width: 170px;
    margin-bottom: 20px;
}

.footer li {
    line-height: 24px;
    font-size: 1em;
}
.footer .item:last-child li + li{
    margin-top: 15px;
}
.footer .mapa {
    font-weight: bold;
}
.footer .mapa  img {
    margin: 0;
    width: 245px;
    text-align: left;
}

footer .right-reserved {
    padding: 20px 0;
    color: #fff;
    text-align: center;
}










/* Ajustes telas maiores 1600px */
@media (min-width: 1600px) {
    .intro {
        height: 100vh;
        display: flex;
        align-items: center;
    }
    .intro h1 {
        margin-right:100px;
    }

    .intro .container {
        padding-top: 200px;
        padding-bottom: 200px;
    }

    .sec-depoimentos cite,
    .sec-depoimentos p {
        width: 50%;
    }

    .sec-depoimentos .subtitle {
        margin-bottom: 80px;
    }

    .sec-produtos .slick-next {
        right: -12px;
    }


}

@media (min-width: 1171px) {

    .footer .item:first-child p {
        max-width: 80%;
        margin:0 auto;
    }
}

/* FAQ */
.faq {
    padding:60px 0;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-size: 1em;
    border-bottom: 1px solid #e8e8e8;
  }
  .panel p {
      color:#24272E;
      font-size:1em;
      margin:20px 0;
  }
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .accordion:hover {
    background-color: #ccc;
  }
  
  /* Style the accordion panel. Note: hidden by default */
  
  .accordion:after {
      content: '\02795'; /* Unicode character for "plus" sign (+) */
      font-size: 13px;
      color: #777;
      float: right;
      margin-left: 5px;
    }
    
    .active:after {
      content: "\2796"; /* Unicode character for "minus" sign (-) */
    }
    
  .panel {
      padding: 0 18px;
      background-color: white;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.2s ease-out;
    }

/* Ajustes telas desktop < 1170px */
@media (max-width: 1170px) {
    .sec-produtos .slick-initialized .slick-next {
        right: 5px;
    }

    .sec-produtos .grid-3 {
        padding: 0 10px;
    }

    .sec-depoimentos .slick-next,
    .sec-depoimentos .slick-prev {
        width: 40px;
        height: 40px;
    }

    .sec-depoimentos cite,
    .sec-depoimentos p {
        width: calc(100% - 160px);
    }



}

/* Ajustes telas desktop < 1024px */
@media (min-width: 920px) and (max-width: 1024px) {
    header .container-flex {
        display: block;
        text-align: center;
    }

    header .logo {
        margin: 0 auto 20px auto;
    }


}

/* Ajustes  - Tablet */
@media (min-width: 769px) and (max-width: 920px) {
    header .container-flex {
        grid-template-columns: 100%;
    }

    header {
        padding-top: 10px;
    }

    .js header.fixed {
        padding-top: 0;
    }

    header .logo {
        margin: 0 auto 20px auto;
    }

    .js header.fixed .logo {
        margin-bottom: 12px;
    }
    .bt-large img {
        padding-left:7px;
    }

    header .bt-whats {
        margin-left: 15px;
        font-size: 14px;
    }

    header nav {
        justify-content: space-between;
    }

    header nav li+li {
        margin-left: 15px;
    }
 
    .sec-servicos .grid-7 {
        width: 60%;
    }

    .sec-servicos .grid-5 {
        width: 40%;
        padding: 20px 0;
    }

    .sec-servicos .content {
        width: 90%;
    }

    .sec-servicos .title::before {
        display: none;
    }

    .sec-servicos .title::after {
        display: block;
        margin: 25px auto 0 auto;
    }
    .sec-servicos .grid-7 img{
        max-width: 150%;
    }

    .sec-portfolio .grid-3 {
        width: calc(33.333% - 20px);
    }

    .sec-depoimentos cite,
    .sec-depoimentos p {
        width: calc(100% - 100px);
    }

    .footer .container-flex {
        display: flex;
    }

    .footer span {
        min-width: 120px;
    }

    /* .footer .item:first-child{
        width: 40%;
        margin-bottom: 40px;
    }
    .footer .item{
        width: 30%;
    } */


}

/* Ajustes Mobile > 577px */
@media (min-width: 577px) and (max-width: 768px) {


    header .container-flex {
        display: block;
        text-align: center;
    }

    header nav {
        justify-content: center;
    }

    header .logo {
        margin: 0 auto 20px auto;
    }

    .js header.fixed .logo {
        margin: 0 auto 12px auto;
    }

    header nav li+li {
        margin-left: 12px;
    }

    header .bt-whats {
        line-height: 5px;
        font-size: 0;
        width: 42px;
        height: 24px;
        margin-left: 15px;
    }

    .sec-produtos .grid-3 {
        padding: 0 15px;
    }

    .sec-produtos .grid-3 img {
        padding: 0 30px;
    }

    .sec-produtos .slick-initialized .slick-next {
        right: 25px;
    }

    .sec-portfolio .grid-3 {
        width: calc(50% - 20px);
        float: left;
    }
    .sec-servicos .grid-7 img{
        min-width: 100%;
    }
    
}

/* Mobile até 768 */
@media (max-width: 768px) {
    .produto-item {
        width: 150px;
        height: 140px;
    }
    .bt-whats {
        display:none;
    }
    .sec-solucoes .grid-4+.grid-4 {
        margin-top: 40px;
    }

    .sec-solucoes .grid-4 {
        display: block;
        text-align: center;
        margin: 0 auto;
    }

    .sec-produtos .slick-initialized .slick-next:hover {
        opacity: 1;
    }

    .title::before {
        display: none;
    }

    .title::after {
        display: block;
        margin: 20px auto 0 auto;
    }

    .sec-servicos {
        display: flex;
        flex-direction: column-reverse;
    }

    .sec-servicos .grid-7,
    .sec-servicos .grid-5 {
        width: 100%;
    }

    .sec-servicos .content {
        max-width: 400px;
    }

    

    .sec-servicos .grid-5 {
        padding-bottom: 40px;
    }

    .sec-depoimentos cite {
        font-size: 1.125em;
    }

    footer .container-flex {
        display: flex;
        text-align: center;
        justify-self: center;
    }

    .footer .item {
        width: calc(50% - 20px) !important;
        margin: 0 10px 40px 10px;
    }

    .footer li {
        margin: 0 auto;
    }


}

/* Mobile - menu mobile */
@media (max-width: 576px) {
    .galeria_item {
        display:block;
        margin:0 auto;
    }
    .sec-servicos .grid-7 img{
        width:100%;
        height:100%;
        object-fit: cover;
    }
    .intro {
        background-attachment: scroll!important;
    }

    .destaque_home {
        /* height: 220px; */
    background-size: cover;
    }
    .slick-slide{
        position: relative;
    left: -10px;
    }
    .produtos .item:nth-child(odd) .container {
        flex-direction: column!important;
    }
    .credito_foto {
        display:none;
    }
    .credito_foto_horizontal {
        font-size: 12px;
        /* margin-bottom: 30px; */
        /* writing-mode: tb-rl; */
        float: none;
        display:block;
        position: relative;
        top: 100px;
        opacity: 0.5;
        margin-top: 100px;
        white-space: nowrap;
    }
    
    header, header.home{
        background: #14181F;
        padding: 0px 0 20px 0;
        position: fixed;
        box-shadow: 2px 2px 15px 0px #111111;
    }

    header .container-flex {
        grid-template-columns: auto 36px;
    }

    header .logo {
        z-index: 200;
    }

    header nav ul {
        /* border-bottom: 1px solid #657081; */
        margin-bottom: 10px;
    }

    .btn-menu {
        display: block;
        width: 36px;
        height: 30px;
        color: #fff;
        border: none;
        border-top: 3px solid #fff;
        cursor: pointer;
        background: none;
        outline: none;
    }

    .btn-menu::after,
    .btn-menu::before {
        content: '';
        display: block;
        height: 3px;
        background: currentColor;
        position: relative;
        transition: transform .2s ease;
        margin-top: 10px;
    }

    .btn-menu.active {
        border-top-color: transparent;
    }

    .btn-menu.active::after {
        margin-top: 0;
        top: -2px;
        transform: rotate(45deg);
    }

    .btn-menu.active::before {
        margin-top: 0;
        top: 0px;
        transform: rotate(135deg);
    }

    header nav {
        margin-top: 77px;
        display: none;
        visibility: hidden;
        position: absolute;
        right: 0;
        top: 0;
        padding: 10px 15px 20px 15px;
        background-color: #14181F;
        transform: translate3d(60px, 0px, 0px);
        transition: .3s;
    }

    header nav ul {
        max-width: 100%;
        display: block;
    }

    header nav li+li {
        margin-left: 0;
    }

    header nav li:hover a:after {
        visibility: hidden;
    }

    header nav li {
        display: block;
        width: 100%;
        padding: 2px 0;
        margin-bottom: 10px;
    }

    header nav li a {
        padding: 7px 2px;
    }

    header nav.active {
        display: block;
        visibility: visible;
        transform: translate3d(0px, 0px, 0px);
        width: 100%;
        height: 1000px;
        background: #39404c;
        font-size: 1.5em;
        text-align: center;
    }

    header nav li a {
        width: 100%;
        text-align: center;
    }

    .intro .container {
        padding-top: 150px;
        padding-bottom: 150px;
    }

    .title,
    .intro h1 {
        font-size: 38px;
        line-height: 34px;
    }


    .sec-solucoes h3 {
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .sec-produtos .grid-3 {
        padding: 0 40px;
    }

    .sec-produtos .slick-initialized .slick-next {
        right: 15px;
    }

    .sec-depoimentos cite,
    .sec-depoimentos p {
        width: calc(100% - 100px);
    }

    .bt-large {
        padding-left: 10px;
        padding-right: 10px;
    }

    .sec-produtos .grid-3 {
        padding: 0 20px;
    }

    footer .container-flex {
        display: block;
        text-align: center;
    }

    .footer .item {
        width: calc(100% - 20px) !important;
        margin: 0 10px 40px 10px;
    }
}


/* Pagina produto  */
.subpagina{
    position: relative;
    margin-top: 80px;
    padding: 70px 0 125px 0;
    background-size: cover!important;
    background-repeat: no-repeat!important;
}
.js .subpagina{
    margin-top: 0;
}
.subpagina span{
    letter-spacing: 3px;
    font-size: 1em;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.subpagina span::after{
    content: '';
    display: block;
    width: 34px;
    height: 1px;
    margin-top: 15px;
    background-color: #fff;
}
.subpagina h1{
    font-size: 48px;
    color: #fff;
}
.form-orcamento{
    margin-top: -50px;
    z-index: 10;
    position: relative;
}
.form-orcamento .grid-7 {
    display: flex;
    width: 58.333%;
}
.form-orcamento .grid-5, .form-orcamento .grid-7{margin: 0;}
.form-orcamento .grid-5{
    background-color: #FFFFFF;
    padding: 20px 40px ;
    width: 41.666%;
}
.form-orcamento .title-3{
    font-size: 25px;
    color: #14181F;
    text-transform: uppercase;
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #9D9D9D;
}

/* Formulario  */

.wpcf7 input, .wpcf7 select, .wpcf7 select option, .wpcf7 textarea{
    width: 100%;
    line-height: 40px;
    border: none;
    text-indent: 20px;
    background-color: #E4E4E4;
    font-size: 1.125em;
    color: #707070!important;
    outline: none;
    margin-bottom: 10px;
}
.wpcf7 select {
    width: 100%;
}
.wpcf7 input, .wpcf7 select{
    height: 40px;
}
.wpcf7 textarea {
    height: 100px;

}

.wpcf7 label{
    color: #707070!important;
}
 
.formulario select {
    background: url(../img/arrow-down.png) no-repeat #E4E4E4; 
    background-position:  calc(100% - 12px) center;
    appearance: none;
    color: #707070!important;
    -webkit-appearance: none;
}
.formulario select:-ms-expand {
    display: none;
}
.formulario{
    margin-top: 40px;
}
.formulario textarea{
    min-height: 140px;
}

.wpcf7 input[type="submit"]{
    background: url(../img/icon-arrow2.png) no-repeat #fff; 
    background-position:  calc(100% - 12px) center;
    border: 1px solid #2E3238;
    color: #2E3238!important;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
    height: 45px;
    width: 150px;
    text-indent: 30px;
    text-align: left;
    line-height: 43px;
    cursor: pointer;
    transition: .3s linear;
}

element.style {
}
.wpcf7-response-output {
    border-color: #46b450;
    color:#2E3238;
}
.wpcf7 input[type="submit"]:hover{
    background-color:  #9D9D9D;
    border-color: #fff; 
}
.tipo-produto .container-flex{display: block}
.tipo-produto{
    padding: 60px 0 20px 0;
}
.tipo-produto {
    color:#fff;
}
.tipo-produto p{
    max-width: 980px;
    margin:0 auto;
}
.tipo-produto a:first-child{
    min-height: 120px;
}
.tipo-produto svg{
    margin: 0 auto;
    height:70px;
}
.tipo-produto .title-2{
    margin-bottom: 30px;
}
.tipo-produto .subtitle, .produtos .subtitle{
    margin-bottom: 30px;
}
.tipo-produto .item{
    border: 1px solid #9D9D9D;
    padding: 50px 15px 30px 15px;
    text-align: center;
    margin-bottom: 40px;
    margin-right: 10px;
    margin-left: 10px;
    width: 100%;
}
.tipo-produto .title-3{
    margin-top:15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #9D9D9D;
}

.produtos .item:nth-child(3){
    background-color: #24272E;
}
.produtos .item{
    text-align: left;
    display: block;
    padding: 40px 0;
    border-bottom: 1px solid #2E3238;
}
.produtos  .item:nth-child(odd) .container  {
    flex-direction: row-reverse;
}

.produtos  .item:nth-child(even) .container .image {
    background-image: url(../img/bg_product.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: bottom;
}
.container .image {
    padding:50px;
}
.produtos  .item:nth-child(odd) .container .image {
    background-image: url(../img/bg_product_v.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: center;
}

.produtos .title-2{
    text-align: left;
    margin-bottom: 50px;
}
.produtos .bt-large{
   display: inline-block;
   width: auto;
   margin-top: 50px;
   height: 50px;
}

.produtos .item .container{
    display: flex;
    align-items: center;
}


.tipo-servico{
    background-color: #fff;
    text-align: center;
    padding-bottom: 60px;
}
.tipo-servico .item *, .tipo-servico .title, .tipo-servico .subtitle{
    color: #14181F;
}
.tipo-servico .bt-large{
    display: inline-block;
    width: auto;
    margin-top: 10px;
    height: 50px;
}




/* Modelo Produto 2 */


.vantagens *{
    color: #14181F;
    text-align: left;
    
}
.vantagens li{
    margin-bottom: 20px;
}
.vantagens{
    display: flex;
}
.vantagens .title-2, .list-prod .title-2{
    font-size: 36px;
    margin-bottom: 40px;
}
.vantagens .grid-5{
    padding: 40px;
    margin:0;
    background:#fff;
    width:40%;
    
}
.vantagens .grid-7{
    background-size: cover!important;
    background-repeat: no-repeat!important;
    margin:0;
    width:60%;
}
.vantagens p{
    margin-bottom: 15px;
}
.vantagens strong::before{
    content: '';
    display: inline-block;
    background-color: #2E3238;
    width: 20px;
    margin-right: 5px;
    position: relative;
    top: -4px;
    height: 2px;
}
.call-to-action{
    text-align: center!important;
    padding: 70px 0 90px;
    background:#2E3238;
}
.call-to-action .title-2  {
    margin-bottom:-50px;
    text-align: center!important;

}

.list-prod{
    padding: 130px 0 20px 0;
}
.list-prod *{
    color: #fff;
    text-align: left;
}
.item .container-flex:nth-child(even){
    flex-direction: row-reverse;
}
.item .container-flex .grid-7:nth-child(even) {
    margin-left: -52px;
}
.item .container-flex {
    margin-bottom: 100px!important;

}
.list-prod .content .title-2{
    margin-bottom: 10px;
}
.list-prod .content p{
    margin-bottom: 20px;
}

.list-prod .container-flex{
    position: relative;
}

.list-prod .grid img{
    min-width: 100%;
}



.list-prod .content{
    border: 1px solid #657081;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 60px;
    z-index: -1;
    bottom: -48px;
    width: calc(100% + 64px);
}













/* Ajustes Breakpoints */

@media (min-width: 1400px){
    .sec-servicos .grid-7 {
        width: 41.333%;}
    .vantagens .grid-5{
        padding: 60px 100px;
    }
    .vantagens p{margin-bottom: 50px;}
    /* .vantagens .grid-7 img{
        min-width: 100%;
    } */
    .list-prod .content{
        padding: 80px;
    }
    .align-right .content{
        padding-left: 112px;
    }
    .align-left .content{
        padding-right: 112px;
    }
}
@media (max-width: 1399px){
    .vantagens .grid-5{
        padding: 40px 60px;
    }
}
@media (max-width: 1170px){
    .form-orcamento .grid-7 img{
        max-width: 120%;
    }
    /* .vantagens .grid-7 img{
        max-width: 100%;
    } */

    

    .tipo-produto .container{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .tipo-produto .grid-3{
        min-width: 270px;
    }
    .vantagens .grid-5,  .vantagens .grid-7{
        width: 50%;
    }



}

@media (max-width: 920px){
    .form-orcamento .grid-5, .form-orcamento .grid-7{
        width:50%;
    }
    .form-orcamento .grid-7 img{
        max-width: 150%;
    }
    /* .vantagens .grid-7 img{
        max-width: 100%;
    } */
    .tipo-produto .grid-3{
        min-width: 262px;
    }
    .vantagens .grid-5{
        padding: 40px 20px;
    }

    .list-prod .content{
        padding: 60px;
    }
    .align-right .content{
        padding-left: 70px;
    }
    .align-left .content{
        padding-right: 70px;
    }
}

@media (max-width: 768px){
    .vantagens{
        flex-wrap: wrap;
    }

    .form-orcamento .grid-5, .form-orcamento .grid-7,.vantagens .grid-5, .vantagens .grid-7 {
        width: 100%;
    } 
    .vantagens .grid-5{order: 2;text-align: center;}
    .vantagens .grid-7 {order: 1;height: 400px;}
    .form-orcamento .grid-7 img{
        max-width: 100%;
    }
    .tipo-produto .grid-3{
        max-width: 300px;
    }
    .produtos .item .text{
        width: 60%
    }
    .produtos .item .image{
        width: 40%
    }
    .vantagens *, .list-prod *{
        text-align: center;
    }
    .list-prod .grid-5{
        order: 1;
    }
    .list-prod .grid-7{
        order: 2;
    }

    .list-prod .grid-5 img{
        margin: 0; 
        width: 70%;
    }
    .list-prod .item{
        margin-bottom: 30px;
    }
    .list-prod .content{
        padding: 60px 20px 40px 20px;
    }
    .align-right .content, .align-left .content{
        padding-left: 20px;
        padding-right: 20px;
        top: -34px;
        left: 0;
        width: 90%;
        float: right;
    }
    .align-left .content{
        float: none;
    }
    .list-prod .align-left .grid-5 img{
        float: right;
    }

}

@media (max-width: 576px){
    .form-orcamento .grid-5, .form-orcamento .grid-7{
        width:100%;
    }
    .produtos .item .container{
        flex-direction: column;
    }
    .produtos .item .text, .produtos .item .image{
        width: 80%;
        text-align: center;
        margin: 0 auto;
    }
    .produtos .item .text{
        order: 2;
    }
    .produtos .item .image{
        order: 1;
        margin-bottom: 40px;
    }
    .produtos .title-2{
        text-align: center;
    }
    .form-orcamento .grid-5, .form-orcamento .grid-7,.vantagens .grid-5, .vantagens .grid-7 {
        width: 100%;
    }
    .list-prod .grid-5 img{
        width: 100%;
    }

    .item .container-flex .grid-7:nth-child(even) {
        margin:0 auto;
    }

    .list-prod .content {
        left: -40px;
        width: 100%;
        margin: 0 auto;
    }
    .list-prod .content {
        left:0;
    }
}

@media (max-width: 360px){
    .form-orcamento .grid-5{
        padding: 20px;
    }
}

/* ---- Final modelo Produto 1 - 2  ---- */


/* Pagina Sobre  */
.sobre{
    background: #2E3238;
}
.sobre .hist{
    padding-bottom: 40px ;
} 
.sobre .hist p{
    font-size: 1.125em;
    margin-bottom:15px;
}
.sobre  .title-2{
    text-align: left;
}
.sobre .image{
    position: relative;
    top: -104px;
    padding-right: 10px;
}
.tipo-produto.sobre .item{
    border-radius: 5px;
}

.parceiros{
    padding: 0px 0 50px 0;
}
.parceiros img {
    width: 100%;
    height:auto;
}
.parceiros .slick-slider .slick-list{
    margin: 30px 0;
}
.slick-track {
    margin:0 auto;
}

.parceiros .slick-slide img {
    height: 42px;
    width: auto;
    filter: grayscale(1);
}


@media (max-width: 920px){
    .sobre .hist p{
        font-size: 1.125em;
    }
    .parceiros .item img, .parceiros .item svg, .parceiros .item a{
        text-align: center;
        margin: 0 auto;
        display: block;
    }
    
}
@media (max-width: 768px){
    .tipo-produto.sobre .container{
        display: block;
    }
     .tipo-produto.sobre .grid-4{
        max-width: 300px;
        margin: 0 auto;
    }
    .tipo-produto.sobre *{
        text-align: center;
    }
    .sobre .image{
        padding-left: 0;
    }
    
}

@media (max-width: 576px){
    .parceiros .item img, .parceiros .item svg, .parceiros .item a{
        text-align: center;
        margin: 0 auto;
        display: block;
    }
}

/* ---- Final Sobre ---- */
/* Comentários */
.comentario {
    color: #fff;
    padding: 20px;
    background: #2E3238;
    border-radius: 5px;
    margin-bottom: 10px;
}

.comment-respond {
    margin-top: 40px;
    border-top: 1px solid #65708129;
    padding-top: 20px;
}
.comment-respond h3{
    color:#fff;
}
.comment-respond input{
    width: 100%;
    height:40px;
    padding:5px;
    font-size:1em;
}

.comment-respond textarea{
    width: 100%;
    height:100px;
    padding:5px;
    font-size:1em;
}
.comentario_foto {
    float:left;
    margin-right:10px;
}

.comment-respond input[type=checkbox]{
    max-width: 20px!important;
    float: left;
    margin-right: 10px;
}
.comment-form-cookies-consent label {
    position:relative;
    top:10px;
}

.comment-respond input[type=submit]{
    max-width: 200px!important;
    float: right;
}
.botao_comentario {
    background: #fff;
    color: #111111;
    border:0;
    padding: 9px 20px;
    font-weight: bold;
    display: inline-block;
    margin-top: 24px;

}

.botao_comentario:hover {
    background-color: #CBC5C5;
}

/* Pagina Blog */
.blogpage{
    background-image: url(../img/bg-article.png);
    background-repeat: repeat-y;
    position: relative;
    margin-top: -50px;
}

.blogpage article{
    background-color: #fff; 
}
.blogpage article + article{
    margin-top: 40px;
}
.blogpage .grid-8{
    padding-top: 60px;
    padding-right:30px;
    
    position: relative;
    z-index: 1;
}
.blogpage .grid-8 article{
    display: flex;
    padding-bottom: 35px;
}
.blogpage .grid-8 .image{
    max-width: 40%;
}
.blogpage article *{
    color: #2E3238;
}
.blogpage .grid-8 .content{
    max-width: 60%;
    padding: 0 20px;
}
.blogpage .title-3{
    font-size: 1.5em;
    margin-bottom: 20px;
}
.blogpage article p{
    font-size: 1.125em;;
}

.blogpage aside{
    margin-top: 50px;
    padding: 40px 0;
    z-index: 2;
    background-color: #14181F;
    
}
.blogpage aside .item{
    background-color: #2E3238;
    border-radius: 9px;
    padding: 20px 0;
    margin-bottom: 15px;
    
}
.blogpage aside .title-3, .blogpage aside .content{
    padding: 0 20px;
}
.blogpage aside .title-3{
    text-transform: uppercase;
    border-bottom: 1px solid #434953;
    padding-bottom: 10px;
}

.blogpage aside form{
    display: flex; 
    width: 100%;
}
.blogpage aside form input[type="submit"]{
    width: 40px;
    font-size: 0;
    cursor: pointer;
    background: url(../img/icon-search.png) #fff ;
    background-position: center;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.blogpage aside form input{
    height: 40px;
    outline: none;
    text-indent: 20px;
    border: none;
    background-color: #fff;
}

.blogpage aside form input[type="text"]{
    width: calc(100% - 40px);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
   
}
.blogpage aside ul * {
    font-size: 1.125em;
}
.blogpage aside li + li{
    border-top: 1px solid #434953;
    margin-top: 10px;
    padding-top: 10px;
}
.blogpage aside li::before {
    content: url(../img/icon-arrow.png);
    position: absolute;
    left: 0;
}
.blogpage aside li{
    line-height: 30px;
    position: relative;
    display: flex;
}
.blogpage aside li a{
    margin-left: 30px ;
}


/* Single  */
.blogpage.single article{
    display:block;
    padding-right: 20px;
    border: none;
}
.blogpage.single .grid-8 .content{
    max-width: 100%;
    padding: 0;
}

.blogpage.single article img{
    margin-bottom: 30px;
}
.single article h2, .single article h3, .single article h4, .pagina h1, .pagina h2, .pagina h3, .pagina h4{
    margin: 35px 0 10px 0;
}
.single article h1 , .pagina h1{
    font-size: 2.625em;
    margin-bottom: 10px;
}

.single article  h2, .pagina h2{
    font-size: 36px;
}
.single article h3, .pagina h3{
    font-size: 28px;
}
.single article h4, .pagina h4{
    font-size: 1.5em;
}
.sec-share{
    padding-top: 30px;
}

/* Pagina padrão */
.pagina .container{
    
    position: relative;
    margin-top: -50px;
}
.pagina .content{
    background-color: #fff;
    padding: 50px 70px;
}
.pagina p, .pagina  li{
    color: #2E3238;
    font-size: 1.125em;
}
.pagina hr{
    margin: 20px 0;
}
hr {
    height:1px;
    border:0;
    margin:30px 0;
    background: #65708129;
}

.pagina blockquote h3, .pagina blockquote h4{
    margin-top: 0;
}
.pagina blockquote{
    border-left: 3px solid #14181F;
    padding: 10px 0 10px 20px;
    margin: 50px 0 50px 40px;
}

.pagina ul{
    margin-bottom: 30px;
}
.pagina li{
    line-height: 30px;
}
.pagina li::before{
    content: '';
    width: 25px;
    display: inline-block;
    height: 2px;
    background-color: #14181F;
    position: relative;
    top: -5px;
    margin-right: 10px;

}

/* Pagina contato */
.contato {
    padding-bottom: 60px;
}
.contato .formulario{
    margin: 0;
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 50px 30px;
    position: relative;
    top:-50px;
}

.contato .grid-5{
    margin-top: 40px;
}


@media (max-width: 920px){
   
    .blogpage .grid-8 article{
        display: block;
        padding-right: 20px;
        position: relative;
    }
    .blogpage .grid-8{
        padding-top: 50px;
    }
    .blogpage .grid-8 .image, .blogpage .grid-8 .content{
        max-width: 100%;
    }

    .blogpage .grid-8 article .title-3{
        margin-top: 30px;
    }

}

@media (max-width: 768px){
    .blogpage .container-flex{
        padding:0;
    }
    .blogpage .grid-8 article{
        display: block;
        padding-right: 0;
        position: relative;
        background-color: #fff;
    }
    .blogpage .grid-8{
        width: 100%;
        margin: 0 auto;
        padding-top: 0;
        margin-top: -40px;
        
    }
    .blogpage .grid-8 article + article{
        margin-top: 30px;
    }
    
    .blogpage .grid-8 .image, .blogpage .grid-8 .content{
        max-width: 100%;
        margin: 0;
    }
    .blogpage .grid-8 article, .blogpage .grid-4 .item{
        max-width: 480px;
        margin: 0 auto; 
    }
    .blogpage .grid-8 article .title-3{
        margin-top: 30px;
    }
    
    .blogpage aside{
        background-color: #14181F!important;
        width: 100%;
        margin: 0;
    }
    .blogpage .grid-4 .item{
        margin-bottom: 15px;
    }

    .blogpage.single .grid-8 article{
        padding: 30px 20px;
    }

    .pagina blockquote{
        padding: 10px 0 10px 20px;
        margin: 50px 0 ;
    }

    .contato .formulario{
        top:0;
        margin-bottom: 60px;
    }
    .contato .grid-5{
        position: relative;
        margin-top: -50px
    }
}

@media (max-width: 576px){
    .blogpage .grid-8 article, .blogpage .grid-4 .item{
        width: 80%;
    }
    .blogpage.single .grid-8 article{
        width: 90%;
    }
    
}

@media (max-width: 360px){
    .blogpage .grid-8 article, .blogpage .grid-4 .item{
        width: 90%;
       
    }
}

/* Whatsapp */

#nta-wa-gdpr{
    vertical-align: text-top !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nta-wa-gdpr{
    font-size: 11px;
    padding: 5px;
    margin-left: -5px;
    margin-right: -5px;
    border-radius: 4px;
}

.nta-wa-gdpr a{
    text-decoration: underline;
    color: inherit;
}

.pointer-disable{
    pointer-events: none;
}

.nta-woo-products-button:before, .nta-woo-products-button:after{
    content: '';
    display: block;
    clear: both;
}

.wa__button{
    border-bottom: none !important;
}

.wa__btn_w_img:hover{
	text-decoration: none;
}

.wa__button,
.wa__btn_popup,
.wa__button *,
.wa__btn_popup *,
.wa__btn_popup :before,
.wa__button :before,
.wa__button :after,
.wa__btn_popup :after,
.wa__popup_chat_box,
.wa__popup_chat_box *,
.wa__popup_chat_box :before,
.wa__popup_chat_box :after{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* VVV--button--VVV */
.wa__button{
    position: relative;
    width: 300px;
    min-height: 64px;
    display: block;
    font-family: Arial,Helvetica,sans-serif;
    text-decoration: none;
    color: #fff;
    box-shadow: 0px 4px 8px 1px rgba(32,32,37,0.09);
    -webkit-box-shadow: 0px 4px 8px 1px rgba(32,32,37,0.09);
    -moz-box-shadow: 0px 4px 8px 1px rgba(32,32,37,0.09);
}
.wa__btn_txt{
    display: inline-block;
    font-size: 12px;
    line-height: 1.33em;
}

.wa__btn_w_icon .wa__btn_txt{
    padding: 16px 20px 15px 71px;
}

.wa__button_text_only .wa__btn_txt,
.wa__r_button.wa__btn_w_img.wa__button_text_only .wa__btn_txt,
.wa__sq_button.wa__btn_w_img.wa__button_text_only .wa__btn_txt{
    padding-top: 25px;
    padding-bottom: 24px;
}



.wa__btn_w_icon .wa__btn_txt .wa__btn_title{
    font-weight: 600;
    padding-left: 2px;
    font-size: 14px;
}

.wa__cs_info{
    margin-bottom: 2px
}

.wa__btn_status{
    color: #F5A623;
    font-size: 9px;
    padding: 2px 0 0;
    font-weight: 700;
}

.wa__cs_info .wa__cs_name,
.wa__cs_info .wa__cs_status{
    display: inline-block;
}

.wa__cs_info .wa__cs_name{
    font-weight: 400;
    font-size: 12px;
    line-height: 1.36em;
}

.wa__stt_online .wa__cs_info .wa__cs_name{
    color: #d5f0d9
}

.wa__stt_offline .wa__cs_info .wa__cs_name{
    color: #76787d;
}

.wa__cs_info .wa__cs_status{
    width: 36px;
    height: 14px;
    margin-left: 3px;
    padding: 1px;
    font-size: 9px;
    line-height: 1.34em;
    border-radius: 5px;
    color: rgba(255,255,255,0.98);
    position: relative;
    top: -1px;
    left: 0px;
    text-align: center;
}

.wa__stt_online .wa__cs_info .wa__cs_status{
    background: #62c971;
}

.wa__stt_offline .wa__cs_info .wa__cs_status{
    background: #b9bbbe;
}


.wa__stt_online{
    background: #2DB742;
    cursor: pointer;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    backface-visibility: hidden;
    will-change: transform;
}
.wa__stt_online .wa__btn_txt{
    position: relative;
    z-index: 4;
}
.wa__r_button.wa__stt_online:before{
    border-radius: 50vh;
}
.wa__sq_button.wa__stt_online:before{
    border-radius: 5px;
}
.wa__stt_online:before{
    content: '';
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    background: rgba(0,0,0,0.2);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0;
    will-change: opacity;
}
.wa__button.wa__stt_online:focus,
.wa__button.wa__stt_online:active,
.wa__button.wa__stt_online:hover{
    box-shadow: 0px 4px 8px 1px rgba(32,32,37,0.19);
    transform: translate(0,-3px);
    -webkit-transform: translate(0,-3px);
    -moz-transform: translate(0,-3px);
    -ms-transform: translate(0,-3px);
}
.wa__button.wa__stt_online:focus:before,
.wa__button.wa__stt_online:active:before,
.wa__button.wa__stt_online:hover:before{
    opacity: 1;
}
.wa__stt_online.wa__btn_w_icon .wa__btn_icon img{
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
}

.wa__stt_offline{
    background: #EBEDF0;
    color: #595B60;
    box-shadow: none;
    cursor: initial;
}

.wa__stt_offline.wa__btn_w_icon .wa__btn_txt {
    padding: 8px 20px 6px 71px;
}

.wa__stt_offline.wa__r_button.wa__btn_w_img .wa__btn_txt{
    padding: 8px 20px 8px 100px
}

.wa__stt_offline.wa__sq_button.wa__btn_w_img .wa__btn_txt {
    padding: 8px 20px 8px 70px;
}

.wa__btn_w_icon .wa__btn_icon{
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}

.wa__btn_w_icon .wa__btn_icon img{
    width: 41px;
    height: 69px;
}

.wa__btn_w_img{
    position: relative;
    width: 300px;
    margin: 20px 0 20px;
}

.wa__btn_w_img .wa__cs_img{
    position: absolute;
    top: 50%;
    left: 0px;
    text-align: center;
    transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	-moz-transform: translate(0,-50%);
}
.wa__btn_w_img .wa__cs_img_wrap{
    width: 79px;
    height: 79px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border: 3px solid #ffffff;
    position: relative;
    overflow: hidden;
}
.wa__btn_w_img .wa__cs_img img{
    max-width: 100%;
    height: auto;
    transition: 0.2s ease transform;
    -webkit-transition: 0.2s ease transform;
    -moz-transition: 0.2s ease transform;
}
.wa__btn_w_img .wa__cs_img:after{
    content: '';
    background: #ffffff url('https://intravale.com.br/wp-content/themes/Intra/assets/img/whatsapp.png') center center no-repeat;
    background-size: 21px;
    display: block;
    width: 27px;
    height: 27px;
    position: absolute;
    top: 20px;
    right: -14px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
    -webkit-box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
    -moz-box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
}

.wa__stt_offline.wa__btn_w_img .wa__cs_img:after{
    content: '';
    background: #ffffff url('https://intravale.com.br/wp-content/themes/Intra/assets/img/whatsapp.png') center center no-repeat;
    background-size: 21px;
    display: block;
    width: 27px;
    height: 27px;
    position: absolute;
    top: 20px;
    right: -14px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
    -webkit-box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
    -moz-box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
}


.wa__btn_w_img .wa__btn_txt{
    padding:14px 20px 12px 103px;
}

.wa__r_button{
    border-radius: 50vh;
}

.wa__sq_button{
    border-radius: 5px;
}

.wa__sq_button.wa__btn_w_img{
    width: 270px;
    margin-left: 30px;
}

.wa__r_button.wa__btn_w_img .wa__cs_img{
    left: -5px;
}

.wa__sq_button.wa__btn_w_img .wa__cs_img{
    left: -35px;
}

.wa__sq_button.wa__btn_w_img .wa__btn_txt{
    padding: 10px 20px 10px 70px;
    display: table-cell;
	vertical-align: middle;
	height: 66px;
}

.wa__btn_txt .wa__btn_title{
    font-weight: 600;
}

.wa__r_button.wa__btn_w_img .wa__btn_txt{
    padding: 8px 20px 8px 100px;
	display: table-cell;
	vertical-align: middle;
	height: 66px;
}

.wa__r_button.wa__btn_w_img .wa__cs_info .wa__cs_status{
    margin-left: 3px;
}
/* ^^^--button--^^^ */

/* VVV--popup--VVV */

.wa__popup_chat_box{
    font-family: Arial,Helvetica,sans-serif;
    width: 351px;
    border-radius: 5px 5px 8px 8px;
    -webkit-border-radius: 5px 5px 8px 8px;
    -moz-border-radius: 5px 5px 8px 8px;
    position: fixed;
    overflow: hidden;
    box-shadow: 0px 10px 10px 4px rgba(0,0,0,0.04);
    -webkit-box-shadow: 0px 10px 10px 4px rgba(0,0,0,0.04);
    -moz-box-shadow: 0px 10px 10px 4px rgba(0,0,0,0.04);
    bottom: 102px;
    right: 25px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    -ms-transform: translate(0,50px);
    transform: translate(0,50px);
    -webkit-transform: translate(0,50px);
    -moz-transform: translate(0,50px);
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    will-change: transform,visibility,opacity;
    max-width: calc(100% - 50px);
}
.wa__popup_chat_box:hover,
.wa__popup_chat_box:focus,
.wa__popup_chat_box:active{
    box-shadow: 0px 10px 10px 4px rgba(32,32,37,0.23);
    -webkit-box-shadow: 0px 10px 10px 4px rgba(32,32,37,0.23);
    -moz-box-shadow: 0px 10px 10px 4px rgba(32,32,37,0.23);
}
.wa__popup_chat_box.wa__active{
    -ms-transform: translate(0,0);
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    visibility: visible;
    opacity: 1;
}
.wa__popup_chat_box .wa__popup_heading{
    position: relative;
    padding: 15px 43px 17px 74px;
    color: #d9ebc6;
    background: #2db742;
}
.wa__popup_chat_box .wa__popup_heading_sm{
    padding: 12px 15px 17px 74px;
}
.wa__popup_chat_box .wa__popup_heading:before{
    content: '';
    background: url('https://intravale.com.br/wp-content/themes/Intra/assets/img/whatsapp.png') center top no-repeat;
    background-size: 33px;
    display: block;
    width: 55px;
    height: 33px;
    position: absolute;
    top: 20px;
    left: 12px;
}
.wa__popup_chat_box .wa__popup_heading_sm:before{
    top: 19px;
    left: 11px;
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_title{
    padding-top: 2px;
    padding-bottom: 3;
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_intro{
    padding-top: 4px;
    font-size: 12px;
    line-height: 20px;
}
.wa__popup_chat_box .wa__popup_heading_sm .wa__popup_intro{
    padding-top: 0px;
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a{
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
}
.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:hover,
.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:focus,
.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:active{
    text-decoration: underline;
}

.wa__popup_chat_box  .wa__popup_notice{
    font-size: 11px;
    color: #a5abb7;
    font-weight: 500;
    padding: 0 3px;
}
.wa__popup_chat_box .wa__popup_content{
    background: #ffffff;
    padding: 13px 20px 21px 19px;
    text-align: center;
}
.wa__popup_chat_box .wa__popup_content_left{
    text-align: left;
}
.wa__popup_chat_box .wa__popup_avatar{
    position: absolute;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    left: 12px;
    top: 12px;
}

.wa__popup_chat_box .wa__popup_avatar.nta-default-avt{
    border-radius: unset;
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
}

.wa__popup_chat_box .wa__stt{
    padding: 13px 40px 12px 74px;
    position: relative;
    text-decoration: none;
    display: table;
    width: 100%;
    border-left: 2px solid #2db742;
    background: #f5f7f9;
    border-radius: 2px 4px 2px 4px;
    -webkit-border-radius: 2px 4px 2px 4px;
    -moz-border-radius: 2px 4px 2px 4px;
}
.wa__popup_chat_box .wa__stt:after{
    content: '';
    background: url('https://intravale.com.br/wp-content/themes/Intra/assets/img/whatsapp_cinza.png') 0 0 no-repeat;
    position: absolute;
    right: 14px;
    top: 26px;
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
}
.wa__popup_chat_box .wa__stt.wa__stt_offline:after{
    background-image: url('https://intravale.com.br/wp-content/themes/Intra/assets/img/whatsapp_cinza.png');
}
.wa__popup_chat_box .wa__stt.wa__stt_online{
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
}
.wa__popup_chat_box .wa__stt.wa__stt_online:hover,
.wa__popup_chat_box .wa__stt.wa__stt_online:active,
.wa__popup_chat_box .wa__stt.wa__stt_online:focus{
    background: #ffffff;
    box-shadow: 0px 7px 15px 1px rgba(55,62,70,0.07);
    -webkit-box-shadow: 0px 7px 15px 1px rgba(55,62,70,0.07);
    -moz-box-shadow: 0px 7px 15px 1px rgba(55,62,70,0.07);
}
.wa__popup_content_list .wa__popup_content_item{
    margin: 14px 0 0;
    transform: translate(0,20px);
    -webkit-transform: translate(0,20px);
    -moz-transform: translate(0,20px);
    will-change: opacity,transform;
    opacity: 0;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item{
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition-delay: 2.1s;
    -webkit-transition-delay: 2.1s;
    -moz-transition-delay: 2.1s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(1){
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(2){
    transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(3){
    transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
    -moz-transition-delay: 0.7s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(4){
    transition-delay: 0.9s;
    -webkit-transition-delay: 0.9s;
    -moz-transition-delay: 0.9s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(5){
    transition-delay: 1.1s;
    -webkit-transition-delay: 1.1s;
    -moz-transition-delay: 1.1s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(6){
    transition-delay: 1.3s;
    -webkit-transition-delay: 1.3s;
    -moz-transition-delay: 1.3s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(7){
    transition-delay: 1.5s;
    -webkit-transition-delay: 1.5s;
    -moz-transition-delay: 1.5s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(8){
    transition-delay: 1.7s;
    -webkit-transition-delay: 1.7s;
    -moz-transition-delay: 1.7s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(9){
    transition-delay: 1.9s;
    -webkit-transition-delay: 1.9s;
    -moz-transition-delay: 1.9s;
}
.wa__popup_chat_box.wa__lauch .wa__popup_content_list .wa__popup_content_item{
    opacity: 1;
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
}
.wa__popup_content_list .wa__popup_content_item .wa__member_name{
    font-size: 14px;
    color: #363c47;
    line-height: 1.188em !important;
}
.wa__popup_content_list .wa__popup_content_item .wa__member_duty{
    font-size: 11px;
    color: #989b9f;
    padding: 2px 0 0;
    line-height: 1.125em !important;
}
.wa__popup_content_list .wa__popup_content_item .wa__member_status{
    color: #F5A623;
    font-size: 10px;
    padding: 5px 0 0;
    line-height: 1.125em !important;
}
.wa__popup_content_list .wa__popup_content_item .wa__popup_txt{
    display: table-cell;
    vertical-align: middle;
    min-height: 48px;
    height: 48px;
}
.wa__popup_content_list .wa__popup_content_item .wa__stt_offline{
    border-left-color: #c0c5ca;
}
.wa__popup_avt_list{
    font-size: 0;
    margin: 7px 0 24px;
}
.wa__popup_avt_list .wa__popup_avt_item{
    display: inline-block;
    position: relative;
    width: 46px;
}
.wa__popup_avt_list .wa__popup_avt_img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 2px solid #ffffff;
    left: -7px;
}
.wa__popup_call_btn{
    background: #2db742;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    width: 275px;
    max-width: 100%;
    font-size: 16px;
    padding: 14px 10px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    margin: 25px 0 15px;
    box-shadow: 0px 8px 17px 2px rgba(13,15,18,0.2);
    -webkit-box-shadow: 0px 8px 17px 2px rgba(13,15,18,0.2);
    -moz-box-shadow: 0px 8px 17px 2px rgba(13,15,18,0.2);
}
.wa__popup_call_btn.wa__popup_call_btn_lg:before{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    background: url('https://intravale.com.br/wp-content/themes/Intra/assets/img/whatsapp_cinza.png') 0 0 no-repeat;
    background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    vertical-align: top;
    top: 0px;
    margin-right: -19px;
    left: -31px;
    transition: 0.2s ease background-image;
    -webkit-transition: 0.2s ease background-image;
    -moz-transition: 0.2s ease background-image;
}
.wa__popup_call_btn.wa__popup_call_btn_lg:hover:before,
.wa__popup_call_btn.wa__popup_call_btn_lg:focus:before,
.wa__popup_call_btn.wa__popup_call_btn_lg:active:before{
    background-image: url('https://intravale.com.br/wp-content/themes/Intra/assets/img/whatsapp.png')
}

.wa__popup_chat_box_gray{
    border-radius: 2px 2px 8px 8px;
}

.wa__popup_chat_box_gray .wa__popup_heading_gray{
    background: #f8f8f8;
    border-top: 3px solid #2db742;
    color: #868c9a;
    font-weight: 500;
}
.wa__popup_chat_box_gray .wa__popup_heading_gray .wa__popup_title{
    color: #595b60;
}
.wa__popup_chat_box_gray .wa__popup_heading_gray:before{
    content: '';
    background: url('https://intravale.com.br/wp-content/themes/Intra/assets/img/whatsapp.png') center top no-repeat;
    background-size: 33px;
    display: block;
    width: 55px;
    height: 33px;
    position: absolute;
    top: 20px;
    left: 12px;
}
.wa__popup_chat_box_gray .wa__popup_heading_gray .wa__popup_intro a{
    color: #595b60;
}

.wa__popup_chat_box_ct{
    width: 384px;
    text-align: center;
}

.wa__popup_chat_box_ct .wa__popup_heading_ct{
    text-align: center;
    padding: 18px 0 18px;
}

.wa__popup_chat_box_ct .wa__popup_heading_ct:before {
    content: '';
    background: url('https://intravale.com.br/wp-content/themes/Intra/assets/img/whatsapp.png') center top no-repeat;
    background-size: 30px;
    display: block;
    width: 30px;
    height: 31px;
    position: absolute;
    top: 15px;
    left: 72px;
}

.wa__popup_chat_box_ct .wa__popup_heading_ct .wa__popup_title{
    padding-left: 22px;
    padding-bottom: 14px;
}

.wa__popup_chat_box_ct .wa__popup_heading_ct .wa__popup_intro{
    margin-top: -5px;
    line-height: 12px;
}

.wa__popup_chat_box_ct .wa__popup_ct_avt_list:after{
    content: '';
    clear: both;
    display: block;
}

.wa__popup_chat_box_ct .wa__popup_ct_content{
    background: #ffffff;
    padding: 0 0 14px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content .wa__popup_notice{
    padding-top: 18px;
    padding-bottom: 15px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item{
    width: 33%;
    float: left;
    font-size: 10px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item a{
    text-decoration: none;
    color: #989b9f;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__popup_ct_txt{
    padding-top: 8px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_name{
    color: #363c47;
    font-size: 13px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_duty{
    color: #989b9f;
    padding: 3px 0 0;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_stt_online{
    color: #2db742;
    font-size: 9px;
    line-height: 12px;
    display: inline-block;
    padding: 3px 0 0 16px;
    background: url('https://intravale.com.br/wp-content/themes/Intra/assets/img/whatsapp.png') 0 3px no-repeat;
    background-size: 12px auto;
    -webkit-background-size: 12px auto;
    -moz-background-size: 12px auto;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_stt_offline{
    color: #f5a623;
    font-size: 9px;
    line-height: 12px;
    padding: 2px 0 0;
}


.wa__popup_chat_box_ct .wa__popup_ct_avatar img{
    border-radius: 50%
}

.wa__popup_chat_box_ct .wa__popup_ct_call_btn{
    width: 97px;
    font-size: 11px;
    padding: 9px 10px 11px;
    margin: 15px 0 15px;
}

/* ^^^--popup--^^^ */

/* VVV--popup button--VVV */
.wa__btn_popup{
    position: fixed;
    right: 30px;
    bottom: 30px;
    cursor: pointer;
    font-family: Arial,Helvetica,sans-serif;
    z-index: 999;
}
.wa__btn_popup .wa__btn_popup_icon{
    width: 56px;
    height: 56px;
    background: #2db742;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14);
    -webkit-box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14);
    -moz-box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14);
}
.wa__btn_popup .wa__btn_popup_icon:before{
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent url('https://intravale.com.br/wp-content/themes/Intra/assets/img/whatsapp.png') center center no-repeat;
    background-size: 30px auto;
    -webkit-background-size: 30px auto;
    -moz-background-size: 30px auto;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
}
.wa__btn_popup .wa__btn_popup_icon:after{
    content: '';
    opacity: 0;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent url('https://intravale.com.br/wp-content/themes/Intra/assets/img/close.png') center center no-repeat;
    background-size: 14px auto;
    -webkit-background-size: 14px auto;
    -moz-background-size: 14px auto;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -ms-transform: scale(0) rotate(-360deg);
    transform: scale(0) rotate(-360deg);
    -webkit-transform: scale(0) rotate(-360deg);
    -moz-transform: scale(0) rotate(-360deg);
}
.wa__btn_popup.wa__active .wa__btn_popup_icon:before{
    opacity: 0;
    -ms-transform: scale(0) rotate(360deg);
    transform: scale(0) rotate(360deg);
    -webkit-transform: scale(0) rotate(360deg);
    -moz-transform: scale(0) rotate(360deg);
}
.wa__btn_popup.wa__active .wa__btn_popup_icon:after{
    opacity: 1;
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
}
.wa__btn_popup .wa__btn_popup_txt{
    position: absolute;
    width: 156px;
    right: 100%;
    background-color: #f5f7f9;
    font-size: 12px;
    color: #43474e;
    /*top: 15px;*/
    top: 7px;
    /* top: 50%;
    transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%); */
    padding: 7px 0 7px 12px;
    margin-right: 7px;
    letter-spacing: -0.03em;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
}
.wa__btn_popup.wa__active .wa__btn_popup_txt{
    -ms-transform: translate(0,15px);
    transform: translate(0,15px);
    -webkit-transform: translate(0,15px);
    -moz-transform: translate(0,15px);
    opacity: 0;
    visibility: hidden;
}
/* ^^^--popup button--^^^ */


/* ---- Final Blog - Single - Padrão  - Contato ---- */


/* Tickets */
.ticket {
    margin-top:0;
    margin-bottom:0px;
    padding-top:30px;
    background: #e7e9ea;
    padding-bottom: 100px;
}
.ticket a {
    color:blue;
}

.ticket_wrapper {
    background:#fff;
    padding: 40px!important;
    border-radius: 10px;
    text-align: center;
}

.ticket_entrada_header {
    display: flex;
    justify-content: space-between;    padding: 10px;
    border-radius: 5px;
    margin-bottom:5px;
   
}
.printer {
    display:none!important;
}
.ticket_wrapper  p {
    color:#707070;
    font-weight: bold;
}
.ticket_wrapper h2{
    color:#707070;
    font-size: 1.125em;
    margin:0 auto;

}
.ticket_entrada {
    display:flex;
    justify-content: space-between;
    background: #efefef;
    padding: 10px;
    border-radius: 5px;
    margin-bottom:5px;
    padding:20px;
    border:1px solid #000;
    align-items: center;
}


.ticket input, .ticket select, .ticket textarea {
    width: 100%;
    padding:10px;
    border:1px solid #b6b6b6;
    font-size: 1em!important;
}

.acf-label {
    color:#707070;
}
.acf-form-fields {
    border: 1px solid #eeeeee;
}
.acf-button {
    width: 200px!important;
    margin-top:10px;
    float:right;
}

.updated p, .message p {
    color:red;
    margin-bottom: 10px;
    text-align:center;
}

.ticket_item:first-child {
    text-align:left;
    width: 8%;
}
.ticket_item {
    width: 16%;
    text-align: center;
   
}


.ticket_item div{
    padding:5px 10px;
    max-width: 150px;
    color:#fff;
    border-radius:5px;
    margin:0 auto;
}

.ticket_dashboard {
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    text-align: center;
    margin:10px 0;
}

.ticket_dashboard_item {
    padding:50px;
    border-radius: 10px;
}

.ticket_dashboard_item:nth-of-type(1){
    background:#298fca;
}

.ticket_dashboard_item:nth-of-type(2){
    background:#50C878    ;
}

.ticket_dashboard_item:nth-of-type(3){
    background:#eb5a46;
}
.logo_print, .table {
    display:none;
}
.ticket_dashboard_item p{
    font-size: 3em;
    color: #fff;
}
.ticket_filter {
    display:flex!important;
    width: 100%!important;
    margin:10px 0;
    align-items: center;
}
.ticket_filter p {
    white-space: nowrap;
    color:#24272E;
    align-items: center;
}
.select_filter {
    width: 30%;
    margin:0 10px;
    }
.select_filter select {
border: none;
text-align: center;
border-radius: 5px;
}

.filter_button {
    padding:10px 10px;
    font-size:1em;
    text-transform: uppercase;
    border-radius: 5px;
    border:0;
}

/* body{
    background:#f7f7f7;
} */

.form_login_ticket {
    background:#fff;
    padding:30px;
    width: 600px;
    margin:30px auto;
    
}

.form_login_ticket input {
    border:1px solid rgb(160, 160, 160);
    width:100%;
    height:40px;
    padding:10px;
    margin-bottoM:10px;
    margin-top:10px;
}

.form_login_ticket p {
    color:#24272E;
    font-size: 1em!important;
}

.form_login_ticket input[type=submit] {
    width: 200px;
    float:right;
 
}

.login-remember {
    display:flex;
}

.login-remember label {
    display:flex;
    white-space: nowrap;
    width: 120px;
}

.login-remember input[type="checkbox"]{
    height:20px;
    position: relative;
    top:3px;
}
.logout {
    padding: 10px 20px;
    border-radius: 5px;
    background: #e8e8e8;
    /* margin-top: 10px; */
    position: relative;
    top: 20px;
}
.logout a {
    color: rgb(61, 61, 61)!important;
}
.acf-field .acf-label, .select2-selection__rendered {text-align:left!important;}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
    text-align: left!important;
}
.solucoes_cat{
    display:flex;
    justify-content: space-between;
    overflow-x: auto;
}
.solucoes_item{
    min-width: 25%;
}
@media (max-width: 768px)  {
    .slider-home {
    margin-top: 72px!important;
}
.solucoes_item{
    min-width: 50%;
}
.sec-solucoes {
    padding: 65px 0 30px 0;
    text-align: center;
}
    .slick-prev {
        left: -2px;
    }
    .slick-next {
        right: -5px;
    }
    .slick-dots li button {
        position: relative;
        top: 20px;
    }
    .ticket_entrada {display:block}
    .ticket_dashboard_item {
        display:none;
    }
    .table_item {width: 100%!important;}
    .ticket a{font-size:1.5em;font-size: 1.125em;
        font-weight: bold;}
    .ticket_item:first-child {text-align:center}
    .ticket_item{padding:5px 0;width: 100%;}
    .ticket_entrada_header {display:none}
    .acf-field-5fff7e3636462 {
        display:none;
    }
    .acf-field .acf-label, .select2-selection__rendered {text-align:left!important;}
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #444;
        line-height: 28px;
        text-align: left!important;
    }
}

