*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body, html{
    position: relative;
    height: 100%;
    background-color: #e0e5ed;
    min-height: 100vh;
}
a{
    text-decoration: none;
}

/* width */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-thumb {
    background-color: rgb(177, 177, 177); 
}
::-webkit-scrollbar-thumb:hover {
    background-color: rgb(143, 143, 143); 
}
@-moz-keyframes slideInFromRight {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        opacity: 0;
    }
    69%{
        opacity: 0;
    }
    100% {
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}
@-webkit-keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        opacity: 0;
    }
    69%{
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        opacity: 0;
    }
    69%{
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        opacity: 1;
    }
}

@-moz-keyframes slideInFromBottom {
    0% {
      transform: translateY(100%);
      -webkit-transform: translateY(100%);
      -moz-transform: translateY(100%);
      opacity: 0;
    }
    69%{
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        opacity: 1;
    }
}
@-webkit-keyframes slideInFromBottom {
    0% {
      transform: translateY(100%);
      -webkit-transform: translateY(100%);
      -moz-transform: translateY(100%);
      opacity: 0;
    }
    69%{
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        opacity: 0;
    }
    69%{
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        opacity: 1;
    }
}

.loaded-bottom{
    -moz-animation: 1.7s slideInFromBottom;
    -webkit-animation: 1.7s slideInFromBottom;
    animation: 1.7s slideInFromBottom;
} 
.loaded-right{
    -moz-animation: 1.7s slideInFromRight;
    -webkit-animation: 1.7s slideInFromRight;
    animation: 1.7s slideInFromRight;
}

/*Boot*/
.center{
    margin: 0 auto;
    padding: 0 18px;
    max-width: 1280px;
}
.clear{
    clear: both;
}
/***/


/*Header*/
header{
    width: 100%;
    background: #222222;
    border-bottom: 1px solid #474e50;
    padding: 12px 0;
    position: fixed;
    top: 0;
    z-index: 3;
}
.logo{
    color: #fefefe;
    display: flex;
    float: left;
}
.logo img{
    width: 186px;
}
.nav-header{
    float: right;
}
.nav-header ul{
    display: flex;
    align-items: center;
    list-style: none;
    height: 52.28px;
}
.nav-header ul li{
    margin-left: 42px;
    cursor: pointer;
    opacity: 0;
}
.nav-header ul li:last-child{
    width: 23px;
}
.nav-header ul li a{
    color: #fefefe;
    font-weight: 400;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 0;
    transition: 1s;
}
.nav-header ul li a::after{
    content: '';
    display: block;
    background-color: #4e4e4e;
    height: 1.3px;
    transform: scaleX(0);
    transform-origin: 0 100%;
    transition: transform 150ms ease-in-out;
}
.nav-header ul li a:hover::after{
    transform: scaleX(1);
}
a[title="Carrinho"]{
    display: flex;
    height: 23px;
}
a[title="Carrinho"] span{
    display: none;
}
.whatsapp{
    width: 53px;
    height: 53px;
    border-radius: 32.5px;
    position: fixed;
    top: 10.5%;
    right: 2%;
    background-image: url('/public/images/whatsapp.png');
    background-size: cover;
    box-shadow: rgb(0 0 0 / 16%) 0 1px 4px;
    border: 3px solid #fff;
    cursor: pointer;
    z-index: 2;
    animation: lds-circle 13.4s ease-in-out infinite;
    /*display: none;*/
}
.comunicado{
    width: 85%;
    padding: 14px;
    border-radius: 22.5px;
    position: fixed;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, 0);
    right: 2%;
    background-size: cover;
    background-color: #1e90ff;
    box-shadow: rgb(0 0 0 / 16%) 0 1px 4px;
    border: 2px solid #fff;
    z-index: 2;
    text-align: center;
    display: none;
}
@keyframes lds-circle {

      85% {
        transform: rotateY(0deg);
        animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
      }
      100% {
        transform: rotateY(1800deg);
      }
}
/***/


/*Carousel*/

.carousel{
    width: 100%;
    height: 74.2vh;
    min-height: 400px;
    margin-top: 50px;
    padding: 20px;
    padding-top: 0;
    position: relative;
    background: rgb(2,0,36);
    background: linear-gradient(323deg, rgba(2,0,36,1) 0%, rgba(27,27,27,1) 0%, rgb(38 38 38) 100%);
}
.items-wrapper{
    position: relative;
    bottom: -50px;
    display: flex;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0px 8px 13px -4px rgba(0,0,0,0.34);
}
.items-wrapper::-webkit-scrollbar{
    display: none;
}
.items-wrapper{
    scrollbar-width: none;
}

.item-single{
    flex: none;
    width: 100%;
    scroll-snap-align: start;
    background-size: cover;
    background-position: top;
    position: relative;
    overflow: hidden;
}
.item-single img{
    position: absolute;
    left:-10000%; right: -10000%; 
    top: -10000%; bottom: -10000%;
    margin: auto auto;
    min-width: 1000%;
    min-height: 1000%;
    -webkit-transform:scale(0.1);
    transform: scale(0.1);
}

.overlay{
    background-color: rgba(34, 34, 34, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
}
@font-face {
    font-family: 'aceh-light';
    src: url('/public/fonts/Aceh-Light.otf');
}
.box-description{
    display: inline-block;
    margin-top: 10%;
    margin-left: 10%;
    /*margin-left: 190px;
    margin-top: 190px;*/
}
.arrow-right{
    width: 62px;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 10px;
    cursor: pointer;
}
.arrow-left{
    width: 62px;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 10px;
    cursor: pointer;
}
.box-description .text{
    color: white;
    font-size: 83px;
    font-family: 'aceh-light';
}
.ver-catalogo{
    display: table;
    padding:  10px 40px;
    border-radius: 45px;
    background-color: #008eff;
}
.ver-catalogo span{
    display: table-cell;
    vertical-align: middle;
    color: white;
    font-size: 19px;
    font-weight: 700;
    font-family: 'Lato';
}
.bullets{
    display: none;
    transform: translateX(-50%);
    position: absolute;
    bottom: 10px;
    left: 50%;
}
.single-bullet{
    width: 7px;
    height: 7px;
    border-radius: 5px;
    background-color: rgb(246, 246, 246);
}
.single-bullet:nth-of-type(2){
    margin: 0 10px;
}
.bullets .selected{
    background-color: #0095f6;
    transform: scale(1.3);
}
/***/

/*qualities*/
.qualities{
    border-top: 1.3px solid #c9c9c9;
    background-color: #222226;
}
.qualities .center{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1700px;
    padding: 0 10px;
    padding-top: 40px;
    padding-bottom: 10px;
}
.single-quality{
    width: 20%;
    /*display: flex;*/
    display: none;
    justify-content: center;
    padding-top: 5px;
    padding-bottom: 7px;
    opacity: 0;
}
.single-quality:nth-child(2){
    margin: 0 24px;
    border-right: 1px solid #00adff;
    border-left: 1px solid #00adff;
}
.single-quality h2{
    padding: 0 14px;
    margin-top: 5px;
    color: #00adff;
    font-weight: 500;
    font-size: 13px;
    transform: scaleY(1.08);
}
.single-quality .text p{
    font-family: 'lato', 'sans-serif';
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin-top: 4px;
    color: #fcfcfc;
}
.single-quality a{
    color: #007ade;
    text-decoration: underline;
}
.single-quality a:visited{
    color: #9f00de;
}
/***/




/*Quem Somos*/

.quem-somos{
    position: relative;
    height: 630px;
    background-color: #f6f6f6;
    background-size: cover;
    background-position: top;
    position: relative;
    overflow: hidden;
}
.quem-somos > img{
    position: absolute;
    left:-10000%; right: -10000%; 
    top: -10000%; bottom: -10000%;
    margin: auto auto;
    min-width: 1000%;
    min-height: 1000%;
    -webkit-transform:scale(0.1);
    transform: scale(0.1);
}
.quem-somos .overlay{
    display: flex;
    align-items: center;
    background-color: rgb(34 34 38 / 80%)
}
.quem-somos .center{
    max-width: 1100px;
    padding: 70px 0;
    background-color: rgba(0, 0, 0, 0.36);
}
.quem-somos .overlay h2{
    color: #fefefe;
    text-align: center;
    font-size: 57px;
    font-weight: 300;
}
.quem-somos .quem-somos-content{
    width: 100%;
    opacity: 0;
    padding: 0 11%;
    text-align: center;
}

.line{
    width: 60%;
    height: 2px;
    margin: 0 auto;
    background-color: #004aad;
}
.quem-somos p, .quem-somos q{
    padding: 40px 0;
    padding-bottom: 0;
    font-size: 19px;
    color: #fefefe;
    font-family: 'lato';
}
.quem-somos q{
    padding: 8px 0;
    padding-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    display: block;
    transform: scaleY(1.08);
}
/***/


/*Cerificados*/
.certificados{
    background-color: #222226;
    padding: 30px 0;
    display: none;
}
.certificados h2{
    color: #fdfdfd;
    font-weight: 300;
    font-size: 40px;
    text-align: center;
}
.certificados p{
    color: #f0f0f0;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    margin-top: 10px;
}
.certificados .top a{
    text-decoration: underline;
    color: #008eff;
}
.certificados .certificados-list{
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #313136;
    display: flex;
    justify-content: center;
}
.certificado-single-home{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}
.certificados .vertical-line{
    margin: 0 auto;
}
.certificado-single-home img{
    width: 47px;
}
.certificado-single-home h3{
    margin-top: 30px;
}
.certificado-single-home h3{
    color: #f0f0f0;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
}
.certificados .bottom{
    display: flex;
    align-items: center;
    justify-content: center;
}
.certificados .bottom p a{
    margin-left: 10px;
    text-decoration: underline;
    color: #fdfdfd;
}
.certificados .bottom img{
    width: 70px;
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid #313136;
}



/**/

.contato{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 725px;
    background: rgb(2,0,36);
    background: linear-gradient(323deg, rgba(2,0,36,1) 0%, rgba(34,34,34,1) 0%, rgba(39,39,41,1) 100%);
}
#background-contato{
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    opacity: 0.5;
    
}
.contato-infos{
    width: 96%;
    max-width: 1200px;
    padding: 40px;
    background-color: #222226;
    box-shadow: 0px 9px 25px -8px rgb(0 0 0 / 38%);
    z-index: 1;
}
form[name="send-email"]{
    width: 100%;
}
.contato .left{
    width: 45%;
    float: left;
}
.contato .right{
    width: 45%;
    float: right;
}
.contato iframe{
    width: 90%;
    margin-left: auto;
    height: 300px;
    border: 2px solid #fefe;
}
form[name="send-email"] h2{
    color: #fefefe;
    font-size: 32px;
    font-weight: 400;
    padding-bottom: 17px;
    text-align: center;
    opacity: 0;
}
.left p{
    color: #767676;
    font-weight: 500;
}
form[name="send-email"] input[type="email"]{
    width: 100%;
    font-weight: 500;
    padding: 10px;
    font-size: 20px;
    color: #fefefe;
    background-color: #252528;
    border: 1px solid #505050;
    border: unset;
    border-width: 0.01em;
    border-color: #3b3b3b;
    border-style: solid;
    outline: 0;
}
.textarea-wrapper{
    margin-top: 30px;
    width: 100%
}
.textarea-wrapper textarea{
    width: 100%;
    height: 375px;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
    resize: unset;
    outline: 0;
    background-color: #252528;
    border: 1px solid #505050;
    border: unset;
    border-width: 0.01em;
    border-color: #3b3b3b;
    border-style: solid;
    color: #fefefe;
}
.single-info{
    margin-top: 6.5px;
    padding-top: 6.5px;
    opacity: 0;
}
.single-info h3{
    font-weight: 500;
    font-size: 17px;
    color: #fefefe;
}
.single-info p{
    color: #f0f0f0;
    font-size: 15px;
}
form[name="send-email"] input[type="submit"]{
    width: 55px;
    height: 55px;
    padding: 0;
    border: 0;
    border-radius: 27.5px;
    background-color: dodgerblue;
    background-repeat: no-repeat;
    background-image: url('/public/images/send.png');
    background-position: 40% 53%;
    background-size: 50%;
    display: block;
    margin-left: auto;
    position: relative;
    top: -30px;
    right: -30px;
    cursor: pointer;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.location{
    position: absolute;
    transform: translateX(-50%) !important;
    font-size: 20px !important;
    bottom: 2%;
    left: 50%;
}
.contact-method span{
    margin-left: 20px;
    font-weight: 400;
    letter-spacing: 0.2;
    color: #fefefe;
}
.single-info:nth-of-type(3) a{
    text-decoration: underline;
    color: #f0f0f0;
}
.single-info:nth-of-type(5){
    border: unset;
    border-top-width: 0.01em;
    border-color: #fefefe; 
    border-top-style: solid;
}
.single-info:nth-of-type(6){
    margin: 0;
    padding: 0;
}
.single-info:nth-of-type(7){
    margin: 0;
    padding: 0;
}
.single-info:nth-of-type(5) p, .single-info:nth-of-type(6) p, .single-info:nth-of-type(7) p{
    font-size: 13px;
}
.single-info a span{
    text-decoration: underline;
    color: #f0f0f0;
}
.single-info.financeiro p{
    font-size: 13.3px;
}

  
/***/

/*Certificados Page*/

.certificados-wrapper{
    padding-top: 77px;
}
.certificado-container{
    width: 100%;
    height: 90vh;
    background-color: #222226;
}
.certificado-container:nth-of-type(even){
    background-color: #191919;
}
.certificado-container{
    display: flex;
    align-items: center;
}
.certificado{
    width: 80%;
    height: 100%;
    border: unset;
}
.certificado-container h2{
    color: #fdfdfd;
    font-weight: 300;
    font-size: 55px;
    width: 20%;
    margin-left: auto;
    text-align: center;
}
.categoria-title{
    padding: 20px 0;
    background-color: #222226;
}
.categoria-title h2{
    color: #fdfdfd;
    font-weight: 300;
    font-size: 55px;
    margin-left: 2%;
}
.certificados-wrapper aside{
    position: fixed;
    top: 15%;
    right: 2%;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
}
.certificados-wrapper aside .header{
    background-color: #131313;
}
.certificados-wrapper aside h2 {
    color: #fff;
}
.certificados-wrapper .categorias-list {
    background-color: #242424;
}
.certificados-wrapper .categorias-list a {
    color: #fff;
}

/*Products Page*/
.products{
    min-height: 100%;
    padding-top: 120px;
    background-color: #e0e5ed;
}
.products .center{
    display: flex;
    max-width: 1350px;
}
aside{
    width: 100%;
    max-width: 220px;
}
.header{
    background-color: #ffffff;
    padding: 16px;
}
.header h2{
    font-weight: 300;
    transform: scaleY(109%);
    color: #222222;
}

aside .categorias-list{
    background-color: #efefef;
    border-top: unset;
}
.categoria-single{
    padding: 15px;
    border-bottom: 1px solid #ccc;
}
.categoria-single a{
    font-weight: 400;
    font-size: 15px;
    color: #242424;
    cursor: pointer;
    transition: 200ms;
}
.categoria-single a:hover{
    color: #004aad;
    text-decoration: underline;
}
.categoria-single:last-of-type{
    border-bottom: 0;
}
.find-products{
    flex: 0.87;
    margin-left: auto;
}
form[name="search"]{
    display: flex;
    width: calc(100% - 20px);
}
input[name="search"]{
    width: 95%;
    padding: 10px 5px;
    border: 1px solid #ccc;
    border-right: 0;
    outline: 0;
    font-size: 17px;
    font-weight: 500;
}
form[name="search"] input[type="submit"]{
    flex: 1;
    border-radius: unset;
    border: 1px solid #ccc;
    border-left: 0;
    background-image: url('/public/images/lup.png');
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: 50%;
    transition: 150ms;
    cursor: pointer;
}
form[name="search"] input[type="submit"]:hover{
    background-color: #dbdbdb;
}
.products-list{
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}
.single-product{
    display: flex;
    flex-direction: column;
    width: calc(25% - 20px);
    margin-right: 20px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: white;
    position: relative;
    transition: 150ms;
}
.single-product:hover{
    transform: scale(1.05);
}
.single-product .centralize-image{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.single-product .imagem-do-produto{
    width: 100%;
    padding: 17px;
}
.single-product .text{
    padding: 5px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.single-product .text p:first-of-type{
    color: #333333;
    font-size: 15px;
    font-weight: bold;
    border-top: 1px solid #ccc;
    padding-top: 4px;
}
.single-product .text .bitola{
    color: #333333;
    margin-top: 2px;
    font-size: 15px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    padding-bottom: 3px;
}
.bitola-preco{
    font-size: 15px;
    font-weight: 500;
    color: #004aad;
}
.categoria-single-product{
    color: #0070bf;
    margin-top: 7px;
    font-size: 13px;
    font-weight: 500;
    transform: scaleY(1.01);
}
/***/
.single-product-section{
    margin-top: 80px;
    padding: 20px 0;
}
.single-product-section .float-box{
    display: flex;
    width: 100%;
    max-width: 995px;
    padding: 60px;
    margin: 0 auto;
    margin-top: 10px;
    flex-direction: column;
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 16%) 0 1px 4px;
}
.product-part{
    display: flex;
}
.single-product-section .float-box .product-part p{
    color: #00adff;
    text-decoration: underline;
}
.img-wrapper{
    width: 30%;
}
.img-wrapper img{
    width: 100%;
}
.single-product-section .float-box .text{
    width: 70%;
    padding: 18px;
    opacity: 1;
}
.vertical-line{
    align-items: stretch;
    width: 1.66px;
    border-top: 25px solid white;
    border-bottom: 25px solid white;
    margin-left: 40px;
    background-color: rgb(223, 223, 223);
}
.single-product-section h2{
    color: #191919;
    font-weight: 300;
    font-size: 55px;
}
.single-product-section .float-box p{
    padding: 10px 0;
    padding-bottom: 0;
    font-size: 19px;
    color: #535353;
    font-family: 'lato';
    text-align: left;
}
.single-product-section .float-box q{
    padding: 10px 0;
    padding-bottom: 0;
    font-size: 19px;
    color: #535353;
    font-family: 'lato';
    text-align: left;
}
.single-product-section .line{
    width: 90%;
    height: 1.99999999px;
    margin-top: 20px;
    background-color: rgb(223, 223, 223);
}
.budget-part{
    margin-top: 40px;
}
.budget-part form h2{
    color: #131313;
    width: 100%;
    text-align: center;
    font-size: 43;
    font-weight: 400;
}
.single-product-section .input-wrapper{
    width: 47%;
    float: left;
}
.single-product-section .input-wrapper:nth-of-type(even){
    float: right;
}
.single-product-section .input-wrapper:nth-of-type(even) > span{
    float: right;
}
.single-product-section .input-wrapper2{
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-product-section .input-wrapper2 span{
    color: #004aad;
    display: block;
    font-size: 30px;
    padding: 0 10px;
    border-right: 1px solid rgb(233, 233, 233);
    margin-right: 5px;
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.single-product-section .input-wrapper2 span:nth-of-type(even){
    border-left: 1px solid rgb(233, 233, 233);
    margin-left: 5px;
    border-right: none;
    margin-right: none;
}
.single-product-section .input-wrapper input{
    background-color: white;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    color: #004ac2;
    border: unset;
    border-bottom: 1px solid #979797;
    padding: 10px 0;
    outline: 0;
}
form[name="adicionar-ao-carrinho"]{
    margin-top: 40px;
}
form[name="adicionar-ao-carrinho"] .inputs-wrapper{
    width: 90%;
    margin: 0 auto;
    border: 1px solid rgb(234, 234, 234);
    padding: 10px;
    max-height: 450px;
    overflow-y: scroll;
}
form[name="adicionar-ao-carrinho"] input[type='submit'] {
    width: 100%;
    height: 60;
    margin-top: 30px;
    padding: 20px 0;
    border: 1px solid #ccc;
    transition: 200ms;
    cursor: pointer;
}
form[name="adicionar-ao-carrinho"] input[type='submit']:hover {
    background-color: rgb(222 222 222);
}
.single-product-section .find-products{
    float: none;
    max-width: 1000px;
    margin: 30px auto;
}
.single-product-section .find-products form{
    margin: 20 auto;
}
.single-product-section .find-products .products-list{
    width: 100%;
    margin: 30px auto;
}
.single-product-section .single-product{
    max-width: 280px;
    margin-left: 20px;
    margin-right: 0px;
}
.find-products h2{
    width: 100%;
    margin: 40px 0;
    font-size: 45px;
    text-align: center;
    color: #131313;
    font-weight: 400;
}
/***/




/*Carrinho*/
.carrinho{
    margin: 0 auto;
    min-height: 100%;
}
.carrinho .products-list{
    width: 62%;
    margin: unset;
    padding: 90px 40px;
    float: left;
}
.carrinho .products-list h2{
    color: #131313;
    text-align: center;
    font-size: 55px;
    font-weight: 400;
}
.carrinho .products-list > .line{
    width: 100%;
    height: 1.4px;
    margin: 40px auto;
    background-color: #ccc;
}
.carrinho .single-product{
    width: 23%;
    margin-right: 2%;
}
.carrinho .single-product > span{
    padding: 10px 0;
    padding-bottom: 0;
    font-size: 19px;
    color: #535353;
    font-family: 'lato';
    text-align: left;
}
.carrinho .single-product > span:nth-of-type(2){
    position: absolute;
    right: 35px;
    top: 10px;
}
.carrinho .single-product img:nth-of-type(1){
    position: absolute;
    width: 20px;
    right: 5px;
    top: 10px;
    right: 10px;
}
.carrinho aside{
    background-color: #f5f5f6;
    max-width: unset;
    width: 30%;
    min-height: 100%;
    padding: 80px 30px;
    padding-bottom: 30px;
    float: right;
}
.carrinho aside form h2{
    color: #131313;
    text-align: center;
    font-size: 55px;
    font-weight: 400;
}
.carrinho form{
    width: 100%;
}
.carrinho form h2{
    font-size: 36px;
}
.carrinho .inputs-wrapper{
    margin-top: 25px;
}
.carrinho .input-wrapper{
    margin-bottom: 30px;
}
.input-wrapper.estado{
    width: 30%;
    float: left;
}
.input-wrapper.cidade{
    width: 60%;
    float: right;
}
aside input[type="text"], aside input[type="email"], aside input[type="tel"]{
    width: 100%;
    padding: 14px 5px;
    border: none;
    outline: 0;
    font-size: 17px;
    font-weight: 500;
}
aside select{
    width: 100%;
    border: unset;
    padding: 14px 5px;
    outline: 0;
    font-size: 17px;
}
.carrinho textarea{
    width: 100%;
    height: 240px;
    padding: 15px;
    font-size: 17px;
    border: unset;
    outline: 0;
    resize: none;
}
.carrinho input[type="submit"]{
    width: 100%;
    padding: 15px 0;
    height: 60px;
    margin-top: 30px;
    transition: 300ms;
    border: unset;
    cursor: pointer;
    background-color: #0091ff;
    color: white;
    font-weight: 500;
    font-size: 15px;
    outline: 0;
}


/***/


.login{
    width: 100%;
    height: 100%;
    padding-top: 80px;
    background-color: #222226;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login form{
    width: 300px;
    background-color: #fefefe;
    padding: 10px;
}
.login input[type="text"], .login input[type="password"]{
    width: 100%;
    margin-bottom: 10px;
    padding: 14px 5px;
    border: none;
    outline: 0;
    font-size: 17px;
    font-weight: 500;
    border-bottom: 1px solid #ebebeb;
}
.login input[type="submit"]{
    width: 100%;
    padding: 15px 0;
    height: 60px;
    transition: 300ms;
    border: unset;
    cursor: pointer;
    background-color: #0091ff;
    color: white;
    font-weight: 500;
    font-size: 15px;
    outline: 0;
}

/*Control Panel*/
.main{
    margin-top: 30px;
}
.first-line{
    padding: 60px;
    height: 800px;
    display: flex;
}

.categorias-container{
    width: 30%;
    height: 100%;
    margin: 0 auto;
    padding: 50px 0;
    padding-bottom: 0;
    display: block;
    background-color: #f7f7f7;
    box-shadow: rgb(0 0 0 / 16%) 0 1px 4px;
}
.categorias h2{
    font-weight: 400;
    font-size: 45px;
    text-align: center;
}
.options{
    border: 1px solid #c9c9c9;
    border-left: 0;
    border-right: 0;
    margin-top: 40px;
}
.single-option{
    width: 100%;
    position: relative;
    background-color: #fff;
    border: unset;
    border-bottom: 1px solid #ccc;
    display: block;
    cursor: pointer;
    transition: 230ms;
    text-align: center;
}
.single-option:hover{
    background-color: #f0f0f0;
}
.single-option:nth-of-type(even){
    background-color: #e0e0e0;
}
.single-option img{
    width: 23px;
    position: absolute;
    top: 5px;
    right: 5px;
}
.single-option h2{
    font-size: 23px;
    font-weight: 400;
    padding: 20px;
    color: #333333;
}
.single-option.criar{
    border: unset;
}
.single-option.criar h2{
    color: mediumseagreen;
}

/***/

/*Criar Produto*/
.create-product, .editar-produto, .criar-categoria{
    margin-top: 100px;
}
.form form{
    max-width: 800px;
    width: 95%;
    height: auto;
    margin: 30px auto auto;
    padding: 30px;
    background-color: #fefefe;
    box-shadow: 0px 6px 8px 4px rgba(0,0,0,0.06);
}
.form form  > h2{
    text-align: center;
    font-size: 63px;
    font-weight: 400;
    padding: 20px;
    color: #333333;
}
.form .input-wrapper{
    margin-top: 30px;
}
.form .input-wrapper h2{
    font-size: 17px;
    color: rgb(75 75 75);
}
.form form p{
    font-size: 15px;
    font-weight: 500;
    color: rgb(75 75 75);
}
.form input[type="text"], .form input[type="file"], .form textarea{
    width: 100%;
    padding: 11px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #ccc;
    outline: none;
    color: #004aad;
}
.form textarea{
    height: 100px !important;
    resize: none;
}
.form input[type='submit']{
    width: 100%;
    height: 60px;
    border: 1px solid #ccc;
    transition: 300ms;
    cursor: pointer;
}
.form input[type='submit']:hover{
    background-color: rgb(219 219 219);
}
.products-list-wrapper{
    margin-top: 50px;
}
.create-product .products-list{
    max-width: 1000px;
    margin: 40px auto;
}
.products-list-wrapper .header{
    padding: 20px 0;
    background-color: white;
}
.products-list-wrapper .header h2{
    text-align: center;
    font-size: 25px;
    color: rgb(75 75 75);
}
.single-product a{
    position: absolute;
    width: 25px;
    right: 5px;
    top: 5px;
}
.single-product a:nth-of-type(2){
    right: 30px;
}
.delete-product img, .edit-product img{
    width: 100%;
}


/***/



/***/
.h1-return-home, .h1-return-controller-pannel{
    margin-top: 130px;
    padding: 0 20px;
    color: rgb(63, 63, 63);
    text-align: center;
}
.return-controller-pannel, .return-home{
    text-align: center;
}
/***/



footer{
    width: 100%;
    padding: 20px 5px;
    color: #00adff;
    background-color: #252525;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}
footer span{
    transform: scaleY(1.08);
}
@media screen and (max-width: 1350px) {
    .float-box{
        padding: 3vw;
        flex-wrap: wrap;
    }
    .float-box > img{
        margin: 0 auto;
    }
    .float-box .text{
        margin-top: 20px;
        padding: 0;
    }

    .inputs-wrapper{
        margin-top: 20px;
    }
    .contato .center{
        flex-direction: column;
    }
    .other-contacts{
        margin: 0 auto;
        margin-top: 20px;
        width: 98%;
        max-width: 600px;
    }
    .location{
        text-align: center;
        position: static !important;
        transform: translate(0) !important;
        margin: 0 auto;
    }
    /***/

    .carrinho .products-list{
        float: none;
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
    }
    .carrinho aside{
        float: none !important;
        margin: 0 auto !important;
        width: 90%;
        max-width: 600px;
    }
    .carrinho .single-product{
        width: 60%;
        margin: 20px auto;
    }

    /*Certificados*/
    .certificados-wrapper aside{
        width: 150px;
        position: fixed;
        top: unset;
        bottom: 5%;
        right: 2%;
        box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
        -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
        -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    }
    .certificados-wrapper a{
        font-size: 11px;
    }
    .certificados-wrapper aside h2{
        font-size: 15px;
    }
    .certificados-wrapper .categoria-single{
        padding: 10px 0;
    }
}
@media screen and (max-width: 1000px) {
    header{
        overflow: visible;
    }
    .nav-header{
        width: 43px;
        height: 43px;
        background-image: url('/public/images/menu.png');
        background-repeat: no-repeat;
        background-size: 60%;
        background-position: center;
        cursor: pointer;
    }
    .nav-header ul{
        width: 100%;
        height: 0;
        background-color: #222226;
        border: 2px solid #242424;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1.4px 1px;
        display: block;
        position: absolute;
        top: 66px;
        left: 0;
        overflow-y: hidden;
        transition: 700ms;
        z-index: 1;
    }
    .nav-header ul li{
        width: 100%;
        margin: 0;
        text-align: center;
        display: block;
        opacity: 0;
    }
    .nav-header ul li:last-child{
        width: 100%;
    }
    .nav-header ul li a{
        color: #fefefe;
        border-top: 1px solid rgba(153, 153, 153, 0.058);
        display: block;
        width: 100%;
        padding: 15px 0;
    }
    .nav-header ul li:nth-of-type(1) a{
        border-top: none;
    }
    .nav-header ul li a::after{
        width: 0;
    }
    a[title="Carrinho"] span{
        display: inline;
    }
    a[title="Carrinho"] img{
        display: none;
    }
    /***/

    .ver-catalogo{
        margin: 0 auto;
    }
    .carousel{
        text-align: center;
        padding: 0;
        max-height: 400px;
    }
    .items-wrapper{
        width: 100%;
    }
    .box-description{
        margin-top: 13vw;
        margin-left: 0;
    }
    .box-description p{
        text-align: center;
        font-size: calc(50px + 1.5vw) !important;
        padding: 0 20px;
    }
    .arrow-left, .arrow-right{
        top: 80%;
    }
    .bullets{
        display: flex;
    }

    /***/

    .whatsapp{
        right: 9px;
    }

    /***/
    .qualities .center{
        flex-direction: column;
    }
    .qualities .single-quality{
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        margin-top: 10px;
    }
    /***/
    .quem-somos{
        height: 610px;
        text-align: center;
        background-position: bottom;
    }
    .quem-somos .center{
        height: 100%;
        padding: 20px 0;
    }
    .quem-somos h2{
        font-size: 48px !important;
    }
    .quem-somos .quem-somos-content{
        padding: 0px 20px;
        opacity: 0;
    }
    /***/

    .certificados-list{
        flex-wrap: wrap;
        border-top: 1px solid #313136;
        padding-top: 45px;
    }
    .certificados-list .certificado-single-home{
        width: 40%;
        margin-bottom: 20px;
    }


    /***/

    .contato{
        height: auto;
        padding: 15px 0;
        /*padding-bottom: 200px; Comunicado*/
    }
    .contato .contato-infos{
        padding: 0;
    }
    .contato .left, .contato .right{
        float: none;
        width: 100%;
    }
    .contato .left{
        padding: 40px;
        padding-bottom: 20px;
    }
    .contato .right{
        padding: 30px;
        padding-top: 20px;
        background-color: #242428;
        border-top: 1px solid #4e4e4e;
    }
    .contato iframe{
        display: block;
        margin: 0 auto;
        width: 100%;
    }
    /***/
    
    .products .center{
        display: flex;
        flex-direction: column;
        max-width: 610px;
    }
    aside{
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }
    .find-products{
        margin-top: 15px;
        margin-left: unset;
    }
    .products-list{
        flex-direction: column;
    }
    .single-product{
        width: 85%;
        margin: 10px auto !important;
    }
    form[name="search"]{
        max-width: 320px;
        margin: 0 auto;
    }
    form[name="search"] input[name="search"]{
        width: 85%;
    }
    /***/

    .product-part{
        display: block;
    }
    .img-wrapper{
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .vertical-line{
        display: none;
    }
    .single-product-section .center{
        padding: 10px;
    }
    .single-product-section .float-box{
        padding: 10px;
    }
    .single-product-section .float-box .text{
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
        padding: 0;
    }
    .single-product-section h2{
        font-size: 32px;
        text-align: center;
    }
    .single-product-section .float-box p{
        text-align: center;
    }
    .single-product-section .float-box .inputs-wrapper{
        padding: 0;
    }
    .single-product-section .float-box .input-wrapper{
        width: 100%;
        float: none;
    }
    .single-product-section .input-wrapper:nth-child(4n+1){
        background-color: #e0e5ed;
        border-bottom: 1px solid #d7dce3;
    }
    .single-product-section .input-wrapper:nth-child(4n+2){
        background-color: #e0e5ed;
    }
    .single-product-section .input-wrapper input{
        font-size: 18.2px;
        background-color: unset;
        border: unset;
        text-align: center;
    }
    .single-product-section .input-wrapper input[name="qntd"]{
        width: 30%;
    }
    form[name="send-email"] input[type="submit"]{
        top: -35px;
        right: -15px;
    }
    /***/

    footer{
        position: static !important;
    }
}