/*@import url("zhttps://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;1,700&display=swap");*/
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=League+Gothic&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*,
::before,
::after
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, ul, li, a
{
    /*border: 3px solid red;*/
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    font-family: 'Poppins', Verdana, sans-serif, Arial;
    /*margin-bottom: 100px;
    width: 100%;
    height: 100vh;*/
}
dl {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
}
img
{
    *width: 100%;
}
ul, li a
{
    outline: none;
    list-style: none;
}
.center
{
    text-align: center;
}
.dist-media
{
    padding: 30px 0 30px 0;
}
.h-2
{
    font-size: 2.0em;
    color: #009999;
}
fieldset
{
    border: none;
}

fieldset>input
{
    border: none;
    border-bottom:1px solid black;
    width: 80%;
    background-color:transparent;
    line-height:30px;
    margin:10px;
    text-transform: uppercase;
}
fieldset>input:focus
{
    *background-color:transparent;
    *background-color:#FFFFCC;
    *border: 0 none!important;
    outline: none;
    border-bottom: 2px solid black;
}

input[type='date']
{
    width: 40%;
}
input[type='button'], input[type='reset']
{
    border: 1px solid green;
    width: 100px;
    height: 30px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
}
input[type='button']:hover
{
    background-color: Green;
    color: White;
}
input[type='email']
{
    text-transform: lowercase;
}

.btn-cancelar
{
    border: 1px solid #BDBAC1!important;
}
.btn-cancelar:hover
{
    background-color: #818188;
    color: White;
}
select
{
    border: none;
    border-bottom: 1px solid black;
    padding: 5px 0 5px 0px;
    margin: 10px 0 20px 10px;
    width: 170px;
    *border-radius: 8px;
    *-moz-border-radius: 8px;
    *-webkit-border-radius: 8px;
}
select:focus
{
    border: 0 none!important;
    outline: none;
    border-bottom: 2px solid black;
}
textarea
{
    resize:none;
    border:1px solid #EBEBEB;
    border-bottom:1px solid black;
    font: 15px arial, sans-serif;
    height:90px;
    width:80%;
    margin: 4px!important;
    padding: 5px 10px 5px 10px;
}
textarea:focus
{
    outline: none;
    border: 1px solid #E1E1E1;
    border-bottom: 2px solid black;
}
.dl
{
    *border:1px solid red;
    font-family: "Segoe UI"!important;
    width: 90%;
    max-width: 600px;
    *padding: 40px 0px 40px 0;
}
.dt
{
    *border: 1px solid green;
    font-size: 1.1em;
    font-weight: bold;
}
.dd
{
    font-size: .9em;
    font-weight: normal;
    padding-left:20px;
    word-wrap: break-word;
}
.exibe
{
    *border: 1px solid red;
    background-color: #FA040E; /*#FA040E; #F21D62;  #3C3C3C; */
    color: #fff;
    width: 100%;
    height: 30px;
    *position: fixed;
    display: flex;
    align-items: center;
    *margin-top: -30px;
    float: left;
    font-family: Orator Std;
    *font-size: 12px;
    z-index: 1000;
}
.l-modal-container
{
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0, .5);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
}
.l-modal
{
    background: white;
    width: 40%;
    min-width: 300px;
    padding: 40px;
    border: 10px solid #988b7a;
    box-shadow: 0 0 0 10px white;
    position: relative;
}
.l-modal-container.l-mostrar
{
    display: flex;
}
.l-modal
{
    background: white;
    width: 40%;
    min-width: 300px;
    padding: 40px;
    border: 10px solid #988b7a;
    box-shadow: 0 0 0 10px white;
    position: relative;
}
#btnFecharModal
{
    border: none;
    border-radius: 50%;
    width: 40px;
}
#btnFecharModal:hover
{
    border: none;
    border-radius: 50%;
    width: 40px;
    background-color: Red;
}

@keyframes modal-animation
{
    from {
        opacity: 0;
        transform: translate3d(0, -60px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.l-mostrar .l-modal
{
    animation: modal-animation .3s;
}

.l-mostrar .l-modal-i
{
    animation: modal-animation .3s;
}
.l-fechar
{
    position: absolute;
    font-size: 1.2em;
    top: -30px;
    right: -30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid white;
    background: #988b7a;
    color: White;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,.3);
}

.sz-1
{
    font-size: 1.1vw;
}
.fsz-05
{
    font-size: 0.6vw;
}
.divisorio_site
{
    margin-top: 95px;
}
.divisorio
{
    margin-top: 98px;
    padding: 100px 50px;
    *background-color: Aqua;
}
.divisorio_flex
{
    display: flex;
    justify-content: space-around;
    align-items: center;
    justify-content: center;
}
#header
{
    /*border: 2px solid yellow;*/
    *background-color: #222222;
    *opacity: .5;
    color: #fff;
    font-weight: bold;
    font-family: 'Poppins', Verdana;
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0px;
    display: flex;
    *align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
    *background-image: linear-gradient(15deg, red, black);
    *background-image: linear-gradient(white 30% ,green 30% 50%, white 50% 70%, green 70% );
    background-image: linear-gradient(#1F4E5F, black, #1F4E5F, black);
}
.cont-nav
{
    *border: 3px solid blue;
    height: 80px;
    display: flex;
}
#logo
{
    *border: 2px solid red;
    width: 120px;
    height: 6vh;
    height: inherit;
    padding-left: 10px;
    *background-color: red;
}
#logo img
{
    width: 100px;
    height: inherit;
}
#contato-cab
{
    *border: 2px solid green;
    *background-color: green;
    *color: #fff;
    width: 700px;
    max-width: 700px;
    *min-width: 280px;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Orator Std", Arial;
}
#nav
{
    *border: 2px solid cyan;
    *background-color: cyan;
    padding: 0 10px 0 20px;
    margin-left: 40px;
    height: inherit;
    display: flex;
    align-items: center;
}
#menu
{
    /*border: 2px solid red;
    *background-color: yellow;
    **position: fixed;*/
    width: 100%;
    height: inherit;
    display: flex;
    align-items: center;
    list-style: none;
    gap: .5rem;
}
#menu a
{
    *border: 1px solid #FA040E;
    *background-color: Gray;
    *background: #078;
    display: block; /*block*/
    padding: .5rem;
    color: #fff;  /*AD932B FFD42A;*/
    *font-weight:bold;
    font-size: 16px;
    *font-family: 'Poppins';
    font-weight:normal;
    text-decoration: none;
    border-color: #222222; /* #28a745;*/
    *border-radius: 8px 8px;
    *border-style: dotted;
    *border: 2px dotted #222222;
    line-height: 80px;
    *width: 70px;
    text-align: center;
    *height: 80px;
}
#menu a:hover
{
    background: #1390A2; /* #958C60 - rgba(0,0,0,.05); */
    *color: #958C60;
    border-radius: 8px 8px;
    *height: 30px;
    *text-align: center;
    *display: inline-flex;
    *align-items: center;
    *justify-content: center;
    *background-image: linear-gradient(15deg, red, black);
}
#menuz li:nth-child(5) a:hover
{
    background: #24262B!important;
}
#menuz li:nth-child(5)
{
    border-bottom: 1px solid yellow;
}
/*
#menu li:nth-child(-n + 4)
{
    border-right: 1px solid #E1E1E1;
    height: 40px;
    display: flex;
    align-items: center;
}*/
#menu > ul .is-selected a {
    margin-left: -3px;
    color: #0978EA;
}
.is-selected
{
    background-color: #1390A2;
    border-radius: 8px 8px;
    *background-image: linear-gradient(15deg, red, black);
}
.ativo
{
    background-color: #FA040E;
    border-radius: 8px 8px;
}
.n-ativo
{
    background-color: inherit;
    border-radius: 8px 8px;
}
.container-cabecalho
{
    /*border: 1px solid red;*/
    /*width: 100%;*/
    /*height: 280px;*/
    top: 0px;
    position: relative;
    display: block;
    padding: 0 0 40px 0;
}
.container-cabecalho div img
{
    width: 100%;
    max-height: 300px;
}
.container-cab__apr
{
    *border: 4px solid green;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container-cab__apr p
{
    position: absolute;
    color: #fff;
    font-size: 5vw;
}
#btn-mobile
{
    display: none;
}
.footerz
{
    border: 1px solid red;
    *margin: 150px 0 0 0;
    bottom: 0;
    *height: 300px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    font-family: 'Poppins';
    
}
.footer-containerz
{
    border: 3px solid green;
    display: flex;
    padding: 40px 0 40px 0;
    gap: 15px;
}
.rowz
{
    border: 1px solid gray;
    background-color: Aqua;
    width: 100%;
    display: flex;
    gap: 1.5rem;
}
.footer-colz
{
    width: 15vw;
    padding: 10px 0;
}
.footer-copyrightz
{
    border: 1px solid blue;
    padding: 40px 0 40px 0;
    *display: flex;
    flex-wrap: wrap;
    *justify-content: center;
    text-align: center;
    font-size: 16px;
}
.footer-copyrightz p
{
    text-align: right;
    margin: 20px 10px 0 0;
    font-size: 11px;
}
.container-titulo
{
    *border: 1px solid black;
    *background-color: Aqua;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    font-size: 2.4vw;
    color: #818188;
    text-shadow: 2px 2px 2px #facefd;
}
.container-titulo span::after
{
    content: '';
    display: block;
    height: 2px;
    width: auto;
    background: #818188;
}
.container
{
    /*border: 1px solid black;
    background: cyan;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 40px 40px 40px;
}
.container .box
{
    /*border: 2px solid red;*/
    position: relative;
    width: 350px;
    padding: 40px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    border-radius: 4px;
    margin-bottom: 20px;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
}
.container .box:before
{
    content: '';
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255,255,255,.2);
    z-index: 2;
}
.container .box .icon
{
    position: relative;
    width: 80px;
    height: 90px;
    color: #fff;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 50%;
    border: 5px solid #6c868a;
    font-size: 40px;
    font-weight: 700;
    transition: 1s;
}
.container .box:nth-child(1) .icon
{
    box-shadow: 0 0 0 0 #6EAFE5;
    background: #1390A2;
}
.container .box:nth-child(1):hover .icon
{
    box-shadow: 0 0 0 400px #1390A2;
    border: none;
}
.container .box:nth-child(2) .icon
{
    box-shadow: 0 0 0 0 #6EAFE5;
    background: #1390A2;
}
.container .box:nth-child(2):hover .icon
{
    box-shadow: 0 0 0 400px #1390A2;
    border: none;
}
.container .box:nth-child(3) .icon
{
    box-shadow: 0 0 0 0 #6EAFE5;
    background: #1390A2;
}
.container .box:nth-child(3):hover .icon
{
    box-shadow: 0 0 0 400px #1390A2;
    border: none;
}
.container .box .content
{
    position: relative;
    z-index: 1;
    transition: 0.5s;
}
.container .box:hover .content
{
    color: #fff;
}
.container .box:hover .content .info
{
    color: #fff;
}
.container .box .content h3
{
    font-size: 20px;
    margin: 10px 0;
    padding: 0;
}
.container .box .content p
{
    margin: 0;
    padding: 0;
}
.content h3
{
    /*border: 1px solid blue;*/
    height: 50px;
}
.content p
{
    /*border: 1px solid red;*/
    height: 80px;
}
.content a
{
    display: inline-block;
    padding: 20px 20px;
    background: #fff;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    color: #000;
    font-weight: 500;
    margin-top: 60px;
    box-shadow: 0 2px 5px rgba(0,0,0,.2);
}
.container-servz
{
    /*border: 5px solid green;
    *height: 400px;*/
    width: 100vw;
    padding: 50px 0 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.container__s-infoz
{
    /*border: 1px solid blue;
    *background-color: #FB6740;*/
    height: 200px;
    min-width: 200px;
    padding: 30px 0 30px 0;
    display: flex;
}
.container__s-infoz:hover
{
    /*background-color: #BA5539;*/
}
.container-sobre
{
    /*border: 2px solid yellow;
    background: yellow;*/
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 50px 0 50px 0;
}
.container__sobre
{
    /*border: 1px solid red;*/
    max-width: 600px;
    padding: 0 10px 0 10px;
}
.container__sobre-img
{
    max-width: 450px;
}
.container__sobre-img img
{
    /*padding: 0 20px 0 40px;*/
    width: 100%;
    /*max-width: 450px;*/
    height: auto;
    /*min-width: 100vw;*/
    border-radius: 8px;
}
.dv-btn-link
{
    color: Red;
    text-align: center;
    padding: 40px 0 90px 0;
    *background-color: gray;
}
.btn-link
{
    font-size: 17px;
    color: #fff;
    text-align: center;
    padding: 20px;
    background-color: red;
    border-radius: 8px;
    cursor: pointer;
}
.btn-link:hover
{
    font-size: 17px;
    color: #fff;
    text-align: center;
    padding: 20px;
    background-color: gray;
    border-radius: 8px;
    cursor: pointer;
}
.container-local
{
    *border: 3px solid gray;
    *height: 400px;
    *width: 100%;
    padding: 50px 0 50px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.Zcontainer-localz div
{
    /*border: 1px solid red;*/
    flex: 1 1 400px;
    width: 100px;
    /*margin: 5px;*/
    padding: 20px;
    /*-webkit-border-radius: 10px 20px;*/
    /*-moz-border-radius: 10px 20px;*/
}
.container__s-local
{
    /*border: 1px solid blue;
    *padding: 50px 0 50px 0;
    *background-color: #FB6740;
    *position: relative;*/
}
.container__s-img
{
    /*border: 2px solid yellow;*/
    /*padding-bottom: 50px;*/
}
.container__s-local img
{
    width: 350px;
    height: auto;
}
.container__s-localz:hover
{
    /*background-color: #BA5539;*/
}
.apresentacao
{
    /*border: 2px solid green;*/
    /*width: 50%;*/
    /*text-indent: 100px;*/
    text-align: justify;
    /*word-spacing:2.em;*/
    line-height: 25px;
    /*font-size: 40px;*/
    color: #7B7B7B;
}
.titulo
{
    padding-left: 50px;
}
.info
{
    color: #7B7B7B;
    font-size: 14px;
}
.italico
{
    font-style: normal;
}
.texto-sombra
{
    text-shadow: 2px 12px 14px #999;
}
.borda-sombra
{
    box-shadow: 2px 2px 56px #999;
    opacity: 100%!important;
}
.box-sombra
{
    box-shadow: 2px 4px 4px #999;
}
.h2-verde
{
    color: #009999;
}
.h2-verde::after
{
    content:'';
    display: block;
    height: 1px;
    width: 300px;
    background: #D4D4D4;
    *margin: auto 120px;
    text-align:left;
}
.h-sub-titulo
{
    *padding: 0px 0 0px 210px;
    color: #009999;
}
.paralax
{
    /*border: 1px solid yellow;*/
    height:300px;
    background: url("../../assets/img/slider/caminhao.jpg") repeat fixed 100% #009999;
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    padding: 20px 0 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*opacity: .5;
    *background-color: #009999;*/
}
.paralax p
{
    color: White;
    font-family: 'Poppins';
    font-size: 4.3vw;
    padding: 20px 0;
}
.paralax-color
{
    /*border: 1px solid yellow;*/
    max-height: 300px;
    height: 250px;
    width: 100%;
    background: url("../../assets/img/estrutura/cilindro-escravo.jpg") repeat fixed; /* 100%;"/ /* #009999;*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 30px 0 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    *opacity: .5;
    *background-color: #009999;
}
.color
{
    color: White;
    font-family: 'Poppins';
    font-size: 4.3vw;
    padding: 20px 0;
}
.color-gr
{
    color: #009999;
}
.color-bck
{
    color: #505050;
}
.contato
{
    *border: 1px solid black;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    flex-wrap: wrap;
    position: relative;
}
.contato__fone
{
    display: flex;
    align-items: center;
    *flex-wrap: wrap;
    *position: absolute;
    font-size: 13px;
}
.contato__fone:nth-child(1)
{
    *border: 1px solid green;
    top: 0px;
}
.contato__fone:nth-child(2)
{
    *border: 1px solid yellow;
    top: 40px;
}
.contato img
{
    width:30px;
    height:30px;
    cursor:pointer;
}
.card-marcas {
    *border: 1px solid blue;
    *width: 99%;
    *border-radius: 45%;
    *background-color: #7B7B7B;
    *margin: 20px 0px;
    *box-shadow: 1px 2px 14px #1E4B5C;
}
.card-marcas div
{
    *border: 1px solid green;
    *border-radius: 50%;
    *background-color: #75B041;
    *background: #ccc;
    *box-shadow: 0 1.4rem 8rem rgba(0,0,0,.2);
    padding: 20px 0 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;    
    gap: 1.9rem;
}
.card-marcas img
{
    *border: 1px solid red;
    border: none;
    border-radius: 0;
    *background: #ccc;
    width: 170px;
    *background: #fff;
}
/* flex */
.flex
{
    *border: 1px solid blue;
    *height: 40px;
    padding: 80px 10px 80px 10px;
    *background-color: Teal;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;    
    gap: 50px;
}
.flex__info
{
    *border: 1px solid green;
    max-width: 600px;
}
.flex div img
{
    border-radius: 5px;
}
.flex img
{
    width: 300px;
    height: auto;
}
.flex-contato
{
    *border: 3px solid yellow;
    /*padding: 40px 0 40px 10px;*/
    padding: 40px 0 40px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    gap: 40px;
}
.flex__contato
{
    *border: 1px solid red;
    padding-left: 20px;
    width: 45%;
    min-width: 300px;
    max-width: 600px;
}
.flex__map
{
    *border: 1px solid green;
    width: 45%;
    min-width: 300px;
}
.flex__map-mapa
{
    *border: 1px solid green;
    width: 100%;
    height: 450px;
    *min-width: 300px;
}
.flex-salvar
{
    *border: 1px solid orange;
    *padding: 30px 0 30px 20px;
    *padding-left: 20px;
    width: 30vw!important;
    min-width: 300px;
    max-width: 600px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.flex-h2
{
    display: flex;
    justify-content: center;
}
.flex__fone p
{
    *border: 1px solid blue;
    display: flex;
    align-items: center;
}
.flex__fone-cont
{
    *border: 1px solid red;
    padding-bottom: 20px;
}
.flex-linha
{
    /*border: 1px solid red;*/
    width: 350px;
    max-width: 400px;
}
.flex-linha p
{
    font-size: 1.5vw!important;
}
.flex-linha img
{
    width: inherit;
    /*height:235px;*/
}
.texto-produto {
    font-family: "Roboto Flex", sans-serif!important;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: #144E8B!important;
}
.card-post
{
    /*border: 1px solid black;*/
    border-radius: 20px;
    width: 800px;
    max-width: 800px;
    *height: 200px;
    padding: 40px 10px 40px 0;
    margin: 20px 0 60px 0;
    box-shadow: 0 1.4rem 8rem rgba(0,0,0,.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}
.card-post__img
{
    /*border: 1px solid green;*/
    width: 270px;
    height: 95px;
    padding-bottom: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    *transform: translateX(-8rem);
}
.card-post__img img
{
    width: 230px;
    height: 90px;
    *box-shadow: 2px 2px 0px #9fefec;
}
.card-post__info
{
    /*border: 1px solid red;*/
    width: 300px;
    text-align: center!important;
    text-align: justify;
    padding: 0 10px 0 10px;
}
.card-post__info_img
{
    *border: 1px solid blue;
    /*width: 300px;
    *height: 300px;*/
    padding: 0px 2px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
    gap: 30px;
}
.card-post__info_img img 
{
    width: 100px;
    *height: 120px;
}

.container_img {
    *border: 1px solid blue;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: -20px;
}

.image-box {
    *border: 1px solid red;
    width: 220px;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.image-box img {
    *border: 1px solid green;
    width: 140px;
    height: auto;
    border-radius: 5px;
    *position: relative;
}

.caption {
    *border: 1px solid cyan;
    font-family: "Roboto Flex", sans-serif;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    height: 50px;
    *position: relative;
    *padding-top: 10px;
}

.card-post__title
{
    /*border: 1px solid blue;*/
    color: #1390A2;
    font-size: 2rem;
    font-weight:600;
    font-style:italic;
    padding-bottom: 10px;
}
.card-post__title::after, .card-post__title::before
{
    content: '';
    display: block;
    width: 150px;
    height: 1px;
    background-color: currentColor;
    margin-left: 63px;
    background: linear-gradient(to right, rgba(79,172,254,.8), rgba(0,242,254,.8));    
}
.card-post__lista .texto-produto li
{
    /*border: 1px solid cyan;*/
    font-family: Segoe Print;
    font-size: .9rem;
    color: #144E8B;
    font-weight: bold;
    *margin-top: 15px;
}
.card-post__s-listaZ {
    border: 2px solid black;
    display: flex;
}
.card-post__s-lista li {
    /*border: 1px solid #C6755A;*/
    font-family: Segoe Print;
    font-size: .9rem;
    color: #144E8B;
    font-weight: bold;
    *margin-top: 15px;
}

.blog-post
{
    border: 1px solid red;
    *padding: 10px 10px;
    width: 300px;
    height: 350px;
    *max-width: 98rem;
    *padding: 5rem;
    background-color: #fff;
    box-shadow: 0 1.4rem 8rem rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    *flex-wrap: wrap;
    *justify-content: center;
    *gap: 30px;
    *max-width: 800px;
}
.blog-post__img
{
    border: 1px solid blue;
    /*background-color:Blue;*/
    width: 200px; 
    /*height:220px;
    **margin-left: -200px;
    **display: flex;
    *min-width: 35rem;
    *max-width: 35rem;*/
    transform: translateX(-8rem);
    position: relative;
}
.blog-post__img img
{
    width: 190px;
    *height: 100%;
    object-fit: cover;
    display: block;
    border-radius: .8rem;
}
.blog-post__img::before
{
    content: '';
    /*width: 100%;
    *height: 100%;*/
    position: absolute;
    top: 0;
    left: 0;
    /*background: linear-gradient(to right, rgba(79,172,254,.8), rgba(0,242,254,.8));*/
    border-radius: .8rem;
}
.blog-post__date span
{
    display: block;
    color: rgba(0,0,0,.5);
    /*font-size: 1.6rem;
    *font-weight: 600;
    *margin: .5rem 0;*/
}
.blog-post__title
{
    /*font-size: 2.5rem;*/
    margin: 1.5rem 0 2rem;
    text-transform: uppercase;
    color: #4facfe;
}
.blog-post__text
{
    margin-bottom: 3rem;
    /*font-size: 1.4rem;*/
    color: rgba(0,0,0,.7);
}
.blog-post__cta
{
    display: inline-block;
    padding: 1.5rem 3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #fff;
    background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    border-radius: .8rem;
    text-decoration: none;
}
.blog-post__cta:hover
{
    background-image: linear-gradient(to right, #00f2fe 0%, #4facfe 100%);
}
.blog-post__info
{
    border: 1px solid green;
    width: 500px;
    height: 300px;
}
.container-email
{
    /*border: 1px solid blue;*/
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 20px 0;
    width: 90vw;
}
.fone img
{
    width: 25px!important;
    height: 29px;
}
.recuo
{
    /*border: 1px solid black;*/
    padding: 20px 80px;
}
.container-body
{
    /*border: 1px solid red;*/
    padding: 20px 50px;
}
.container-body-int
{
    /*border: 1px solid green;*/
    padding: 0 100px 0 80px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.container-span-titulo
{
    *border: 1px solid green;
}
.container-span-texto
{
    /*border: 1px solid red;*/
    max-width: 900px;
    text-align:justify;
}
.container-body-int-text{
    padding: 0 100px 30px 80px;
    /*border:1px solid red;*/
}
.text-descript{
    text-align:justify;
    color: #234F62;
    padding: 5px 0 5px 0;
}
.text-descript span{
    /*border: 1px solid red;*/
    padding: 5px 20px;
    /*line-height: 20px;*/
    display: inline-flex;
    flex-wrap: wrap;
}
.text-descript span::before{
    *content: "\00B7";
    font-size: 40px;
    padding: 40px 10px 0 0;
    margin: -60px 0px 0px 0;
    *display:flex;
    *line-height: 20px;
    list-style: none;
}
.text-descript a.coment{
    *border: 1px solid red;
    padding: 5px 20px;
    *line-height: 20px;
    display: inline-flex;
    flex-wrap: wrap;
}
.text-descript a.coment-i{
    border: 1px solid blue;
    padding: 5px 20px;
    *line-height: 20px;
    display: inline-flex;
}
.text-descript a.sombra-descript{
    /*border: 1px solid red;*/
    *padding: 5px 20px;
    *line-height: 20px;
}
.sombra-descript{
    text-shadow: 1px 2px 14px #1E4B5C;
}
h4{
    color: #234F62;
}
.container-flex-center
{
    *border: 1px solid red;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 600px;
}
.container-flex-center div
{
    *border: 1px solid blue;
}
.flex-container-col
{
    *border: 1px solid blue;
    display: flex;
    *align-items: center;
    flex-direction: column;
    gap: 30px;
}
.flex-container-row
{
    *border: 1px solid blue;
    display: flex;
    *align-items: center;
    *flex-direction: column;
    gap: 30px;
}
.flex-container-row p
{
    width: 50px;
}
.texto-paragrafo
{
    font-size: 20px;
    font-family: Candara;
}
.texto-paragrafo::after
{
    content:'';
    display: block;
    height: 2px;
    width: inherit;
    background: #D4D4D4;
    *margin: auto 120px;
    *text-align:left;
}
.texto-anuncio
{
    font-family:Candara;
    font-size: 22px;
    color: #6EAFE5; /*#191;*/
}
.texto-descricao
{
    *border: 0px solid black;
    font-family: Arial;
    font-size: 14px;
    text-align:justify;
    color: #666666;
    /*margin-left: 30px!important;*/
}
.texto-frase
{
    font-family: Segoe Print;
    font-size: 0.9em;
    color: #144E8B;
}
.posts-author
{
    color: #000066;
    font-size: 22px;
    text-shadow: 2px 2px #999;
}
.sombra-titulo
{
    text-shadow: 2px 2px 6px #055;
}
.sobre
{
    text-align: justify;
    font: 1em candara;
    color: #234F62;
}

/***************************************** media início *********************************/
@media (max-width: 1068px)
{
    .blog-postz
    {
        max-width: 80rem;
    }
    .blog-post__imgz
    {
        min-width: 30rem;
        max-width: 30rem;
    }
}
@media (max-width: 868px)
{
    .blog-postz
    {
        *max-width: 80rem;
        padding: 2.5rem;
        flex-direction: column;
    }
    .blog-post__imgz
    {
        min-width: 30rem;
        max-width: 30rem;
        transform: translate(0, -5rem);
    }
}
@media (max-width: 800px)
{
    #header
    {
        opacity: 100%;
        position: fixed;
        *top:-300px;
    }
    #menu
    {
        display: block;
        position: absolute;
        width: 100%;
        top: 100px;
        right: 0px;
        *background: #e7e7e7;
        height: 0px;
        transition: .6s;
        z-index: 1000;
        visibility: hidden;
        overflow-y: hidden;
        background-color: #2D2D2D;
    }
    #nav.active #menu
    {
        height: calc(100vh - 70px);
        visibility: visible;
        overflow-y: auto;
    }
    #menu a
    {
        padding: 1rem 0;
        margin: 1rem 0;
        border-bottom: 1px inset rgb(108, 122, 137);
        left: 0px;
        position: relative;
        padding-left:40px;
        width: 100vw;
        text-align: left;
    }
    #menuz li
    {
        border-right: 0;
        display: block;
        height: 0;
    }
    #hamburger
    {
        *border: 1px solid red;
        display: block;
        border-top: 2px solid;
        width: 20px;
        cursor: pointer;
        margin-right: 20px;
        color: White;
    }
    #hamburger::after, #hamburger::before
    {
        content:'';
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        margin-top: 5px;
        transition: .3s;
        position: relative;
        color: White;
    }
    #nav.active #hamburger
    {
        border-top-color: transparent;
    }
    
    #nav.active #hamburger::before
    {
        transform: rotate(135deg);
    }
    
    #nav.active #hamburger::after
    {
        transform: rotate(-135deg);
        top: -7px;
    }
    #menu li:nth-child(5)
    {
        border-bottom: none;
    }
    #jssor_1
    {
        *top: 52px!important;
    }
    .footer-container
    {
        *border: 3px solid green;
        *display: flex;
        *padding: 40px 0 40px 0;
        flex-direction: column;
    }
    .row
    {
        display: flex;
        flex-direction: column;
    }
    #slidesZZ
    {
        top: 100px;
    }
    .container-body-int-text{
        padding: 0;
    }
    .container-body-int{
        padding: 0;
    }
}
/* -> inicio 1705230856*/
@media only screen and (max-width: 750px) and (min-width: 676px)
{
    .flex-contato {
        gap:25px;
        padding: 40px 0 40px 20px;
    }
}
@media only screen and (max-width: 675px) and (min-width: 370px)
{
    .flex-contato {
        padding: 40px 0 40px 0px;
    }
    .flex__contato {
        width:90vw;
    }
    .flex__map {
        width:90vw;
        padding-left: 25px;
    }
}
/* -> fim 1705230856*/

@media only screen and (max-width: 360px) and (min-width: 300px)
{
    #logo
    {
        *border: 2px solid yellow;
        width: 40px;
        height: inherit;
        padding-left: 10px;
        display: inline-flex;
        align-items: center;
    }
    #logo img
    {
        width: inherit;
        height: 30px;
    }
    #nm_Emp
    {
        display: none;
    }
    .f-header
    {
        *border: 1px solid yellow;
        font-size: 12px;
        width: 190px;
        padding-left: 19px;
    }
    #nav
    {
        *border: 1px solid blue;
        padding: 0;
        margin: 0 0px 0 20px;
    }
}
@media only screen and (max-width: 425px) and (min-width: 361px)
{
    #logo
    {
        *border: 2px solid orange;
        width: 80px;
        height: inherit;
        padding-left: 10px;
        display: inline-flex;
        align-items: center;
    }
    #logo img
    {
        width: inherit;
        height: 60px;
    }
    #nm_Emp
    {
        display: none;
    }
    .f-header
    {
        *border: 1px solid orange;
        *font-size: 12px;
        width: 210px;
        padding-left: 10px;
    }
    #nav
    {
        *border: 1px solid blue;
        padding: 0;
        margin: 0 0px 0 20px;
    }
}
@media only screen and (max-width: 800px) and (min-width: 360px)
{
    #header-fone
    {
        display: flex;
        gap: 0.5px;
        font-size: 3.5vw;
    }
    #header-fone div img
    {
        width: 30px;
    }
    .f-header
    {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        *gap: 12px;
    }
    #nm_Emp
    {
        display: none;
    }
}
@media only screen and (max-width: 1024px) and (min-width: 801px)
{
    #nm_Emp
    {
        display: none;
    }
}
@media only screen and (max-width: 1200px) and (min-width: 800px)
{
    #nm_Emp
    {
        display: none;
    }
}
@media only screen and (max-width: 1211px) and (min-width: 800px)
{
    .exibez
    {
        z-index: 1000;
    }
}
@media only screen and (max-width: 800px) and (min-width: 350px)
{
    .h-sub-tituloz
    {
        padding: 0px 0 0 0;
    }
}
