* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: 'Lato', sans-serif;
  color: #000;
  font-size:15px;
}
.nozoom{
  zoom:100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/* container  and content*/

.container {
  width:100%;
  padding-left:80px;
  padding-right:80px;
  zoom: 85%;
}

.container-produto {
  width:100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-left:60px;
  padding-right:60px;
}

.content{
  margin:0 auto;
  max-width: 1350px;
}

iframe{
  border-radius:10px;
}
/* formulários */
form{
  display:flex;
}
  .input{
      width:100%;
      background:#fff;
      padding:0px 15px;
      display:table;
      margin-bottom:5px;
      font-size:13px;
      border-radius:5px;
      border:1px solid #707070;
      height:50px;
      outline:none;
  }
  .input:focus{
    border-color:red;
  }
      .e_input{
          width:49.5%;
      }
      .three_input{
          width:33%;
      }
      .b_input{
          width:70%;
      }
      .s_input{
          width:29%;
      }
      .msg{
          height:154px;
      }

      .btn{
          padding: 15px 20px;
          font-size: 16px;
          font-weight: bold;
          text-align: center;
          border-radius: 2px;
          border: 0px;
          cursor: pointer;
      }


/* header */

.header {
  padding-left:80px;
  padding-right:80px;
  height: 185px;
  position:fixed;
  top:0px;
  left:0px;
  right:0px;
  z-index: 3;
  background:#fff;
  border-bottom:3px solid #ddd;

  transition-duration:0.2s;
  -webkit-transition-duration:0.2s;
  -moz-transition-duration:0.2s;

  zoom:85%;
}

/*.header::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 4px;
  border-radius: 0 5px 5px 0;
  background-color: #333;
  content: '';
}*/

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo img{
  width:170px;
}
.header-logo a {
  display: block;
}

.header-logo{
  width:199px;
  transition-duration:0.2s;
  -webkit-transition-duration:0.2s;
  -moz-transition-duration:0.2s;
}

.header-cart {
  width: 90px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
}

.header-cart-box {
  text-align: center;
}

.header-cart-box h3 {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
}

.header-cart-icon {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 32px;
  background-image: url('../img/icon-cart.png');
}

.header-cart-icon span {
  position: absolute;
  top: -10px;
  right: -17px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #333;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}


/* social */

.social {
  display: flex;
}

.social li {
  margin-left: 4px;
  margin-right: 4px;
}

.social a {
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.social a.yt {
  background:url("../img/i_social.png") no-repeat left center;
}
.social a.fb {
  background:url("../img/i_social.png") no-repeat center center;
}
.social a.ig {
  background:url("../img/i_social.png") no-repeat right center;
}

/* nav */

.nav ul {
  display: flex;
}

.nav li {
  margin-left: 5px;
  margin-right: 5px;
}

.nav a {
  display: flex;
  align-items: center;
  height: 48px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}

.nav li{
  position:relative;
}

.nav li:hover a,
.nav li.ativo a{
  color: #fff;
  border-radius: 30px;
  background-color: #333;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.nav li .dl-submenu{
  position:absolute;
  top:49px;
  left:-100px;
  width:280px;
  background:#333;
  display:flex;
  border-radius:15px;
  overflow: hidden;
  opacity:0;
  visibility: hidden;
  transition-duration:0.2s;
  -webkit-transition-duration:0.2s;
  -moz-transition-duration:0.2s;
  flex-direction: column;
}
.nav li .dl-submenu li{
  width:100%;
  float:left;
}
.nav li .dl-submenu li a{
  width:100%;
  border:0px;
  background:none;
  padding:10px 20px;
  box-shadow:none;
  border-radius: 0px;
  font-weight:300;
  font-size:13px;
  position:relative;

  transition-duration:0.2s;
  -webkit-transition-duration:0.2s;
  -moz-transition-duration:0.2s;
}
.nav li .dl-submenu li:hover a{
  border:0px;
  padding-left:30px;
  box-shadow:0px;
}

.nav li:hover .dl-submenu{
  opacity:1;
  visibility: visible;
  left:0px;
}

img{
  margin:0 auto;
  display:table;
  width:auto;
  max-width:100%;
}

 /* header scroll */
 header.scroll{
      height:80px;
      box-shadow:0px 0px 15px #aaa;
      border-bottom:0px;
 }
 header.scroll .header-logo{
   width:90px;
 }
 header.scroll .header-cart-box h3{
   margin-bottom:6px;
 }


/* SLIDERS ORIGINAIS  */
#banner{  
    margin-top:157px;
}
.swiper-pagination{
  position:relative;
  margin-top:20px;
} 
.swiper-pagination-bullet{
  background:#E8121A;
  width:13px;
  height:13px;
  opacity:1;
  border-radius:50px;
}
.swiper-pagination-bullet-active{
  background:#45444F !important;
}

#banner .swiper-pagination{
  position:absolute;
  margin-top:0px;
}
#banner .swiper-pagination-bullet{
  background:#fff;
}
#banner .swiper-pagination-bullet-active{
  background:#aaa !important;
}

/* outro slider

#banner{  
    margin-top:157px;
}
.swiper-pagination{
  position:relative;
  margin-top:20px;
} 
.swiper-pagination-bullet{
  background:#E8121A;
  width:13px;
  height:13px;
  opacity:1;
  border-radius:50px;
}
.swiper-pagination-bullet-active{
  background:#45444F !important;
}

#banner .swiper-pagination{
  position:absolute;
  margin-top:0px;
}
#banner .swiper-pagination-bullet{
  background:#fff;
}
#banner .swiper-pagination-bullet-active{
  background:#aaa !important;
}

#banner .swiper-slide a{
  background-size:cover !important;
  height:641px;
  width:100%;
  display:table;
}

 fim outro slider */

/* title */
.title {
  font-size: 27px;
  font-weight: 400;
  color: #333;
  text-transform: uppercase;
}

.title-center {
  text-align: center;
}

.subtitle{
  font-size:19px;
  font-weight:bold;
  color: #333;
  margin-bottom:10px;
}

/* collections */
#wrap-coll{
  padding-top:30px;
  padding-bottom:50px;
}

.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 100%);
  grid-gap: 26px;
  margin-top: 70px;
  zoom: 85%;
    position: relative;
}

.coll-box{
  position:relative;
    display: flex;
}

.select-collect{
    width:100%;
    margin-bottom:40px;  
    border: 0px;
    font-size: 15px;
    font-weight: bold;
    padding: 20px 30px;
    border-radius: 50px;
    outline:none;
    border:0px;
    background: #E2E2E2;
}

 
.coll-box span{
  position:absolute;
  bottom:0px;
  width:100%;
  left: 0;
  height:auto;
  border-radius:10px;
  background:#EBEBEB;
  color:#333;
  font-size:21px;
  text-align:center;
  display:table;
  padding:14px 15px;

  transition-duration:0.2s;
  -webkit-transition-duration:0.2s;
  -moz-transition-duration:0.2s;
}
.coll-box:hover span{
  background:#333;
  color:#fff;
  border-radius:50px;
}
.coll-box img{
  border-radius:10px 10px 20px 20px;
    position: relative;
    width: 100%;
    height: 100%;
}

.coll-box.child{
  display:table;
  width:100%;
  margin-bottom:25px;
}

/* marcas */

.marcas {
  box-shadow:-5px 0px 20px #ddd;
  background: #fff;
  padding-top:25px;
  padding-bottom:25px;
}
  .marcas .content{
      width:100%;
  }

  #wrap-brand{
    position:relative;
  }
  #wrap-brand .swiper-slide img{
    width:auto;
    max-width:245px;
    opacity:0.7;

    transition-duration:0.2s;
    -webkit-transition-duration:0.2s;
    -moz-transition-duration:0.2s;
  }
  #wrap-brand .swiper-slide:hover img{
    opacity:1;
  }

  #wrap-brand .swiper-container{
    width:100%;
  }
  #wrap-brand .swiper-slide img{
    width:100%;
  }

  #wrap-brand .swiper-button-prev,
  #wrap-brand .swiper-button-next {
      margin-top:-50px;
      z-index:444;
  }


/* BLOG and  MOVIE */
.blogmovie{
  position:relative;
  background:#F2F2EF;
}
/* .blogmovie:before{
    content:'';
    position:absolute;
    right:0px;
    width:50%;
    height:100%;
    display:block;
    background:#333;
} */

#wrap-blogmovie{
    z-index:2;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1,100%);
}

  .box-blog{
      padding-top:40px;
      padding-bottom:15px;
      /* padding-right:60px; */
      position:relative;
      display:flex;
      flex-direction: column;
      width: 100%;
  }

    .box-post-home{
      display:flex;
      justify-content: space-between;
      margin-top:30px;
      margin-bottom:15px;
    }

    .box-post-home figure{
      width:35%;
    }
    .box-post-home figure img{
      border-radius:10px;
    }
    .box-post-home article{
      width:62%;
    }

    .box-post-home article span{
      font-size:17px;
      display:table;
      font-weight:bold;
      margin-bottom:15px;
      color:#222;
    }
    .box-post-home article h6{
      color:#222;
      font-size:17px;
      display:table;
      font-weight:bold;
      margin-bottom:15px;
      line-height:22px;
    }
    .box-post-home article p{
      color:#222;
      font-size:15px;
      display:table;
    }

    .box-video{
      padding-top:40px;
      padding-bottom:15px;
      padding-left:60px;
      position:relative;
      display:flex;
      flex-direction: column;
    }
      .box-video iframe{
        border-radius:10px;
      } 

    .bt-seemore{
      margin:0 auto;
      font-style:italic;
      font-size:15px;
      margin-top:15px;
      color:#666;
    }
    
    .box-video .bt-seemore{
      color:#fff;
    }


    #wrap-dep{
      padding-top: 30px;
      padding-bottom: 50px;
      position:relative;
    }
    #wrap-dep .title{
      margin-bottom:40px;
    }

    #wrap-dep .swiper-container{
      width:90%;
    }
    #wrap-dep .swiper-slide{
      display:flex;
      justify-content: space-between;
      align-content: center;
      align-items: center;
    }
    #wrap-dep figure{
      width:21%;
      overflow: hidden;
      display: block;
      border-radius:50%;
      line-height:0px;
    }
    #wrap-dep article{
      width:75%;
      font-size:15px;
    }


    #wrap-dep article h6{
      font-size:17px;
      margin-bottom:15px;
    }

    #wrap-dep .swiper-button-prev,
    #wrap-dep .swiper-button-next {
        margin-top:-20px;
    }


    #wrap-news{
        background:#E4E4E4;
        padding-top:25px;
        padding-bottom:25px;
        zoom: 85%;
    }
      .box-newsletter{
          margin:0 auto;
          max-width:85%;
          display:flex;
          justify-content:space-between;
      }

          .box-newsletter h6{
            padding:8px 0px 0px 50px;
            background:url("../img/i_mail.png") no-repeat left center;
            color:#222;
            font-size:20px;
            width:30%;
          }


      #form-news{
        width:85%;
        justify-content: space-between;
        align-items: center;
      }
      #form-news .input{
        margin:0px 2px;
      }
      #form-news .btn{
        background:#222;
        color:#fff;
        font-size:16px;
        border-radius:45px;
        padding:17px 35px;
        margin-left:5px;
        cursor: pointer;
      }

      footer{
        background:#222;
        padding:25px 20px;
        zoom: 85%;
      }
      footer .content{
        display:flex;
        align-items: center;
        justify-content: space-between;
      }

      .logo-footer img{
        width:180px;
      }

        .bt-agendar{
          border-radius:50px;
          background:#fff;
          padding:20px 35px;
          color:#333;
          display:table;
          margin-bottom:15px;
          border:0px;
          font-weight:bold;
          cursor: pointer;
        }
        .txt-schedule p{
          color:#fff;
          line-height:15px;
          font-size:15px;
        }

        .address{
          display:flex;
          justify-content: space-between;
          align-items: center;
        }
        .address p,
        .address p a,
        .address ul li{
          color:#fff;
          font-size:15px;
          line-height:20px;
        }
        .address p{
          padding-left:45px;
          background:url("../img/i_mail2.png") no-repeat left;
        }

        .address ul{
          margin-left:50px;
        }
        .address ul li{
          font-size:19px;
          font-weight:bold;
          padding:10px 0px 10px 45px;
        }
        .address ul li.phone{
          background:url("../img/i_phone.png") no-repeat left center;
          margin-bottom:10px;
        }
        
        .address ul li.whats{
          background:url("../img/i_whats.png") no-repeat left center;
        }
        .address ul li.whats a{
          color:#fff;
        }


      #development{
        padding:15px 20px;
        display:flex;
        zoom: 85%;
      }
      #development .content{
        display:flex;
        width:100%;
        justify-content: space-between;
      }
      #development span,
      #development span a{
        font-size:16px;
        color:#222;
      }
      #development span a{
        font-weight:bold;
      }


      .footer-social .social a.yt {
        background:url("../img/i_social2.png") no-repeat left center;
      }
      .footer-social .social a.fb {
        background:url("../img/i_social2.png") no-repeat center center;
      }
      .footer-social .social a.ig {
        background:url("../img/i_social2.png") no-repeat right center;
      }

      /* PÁGINAS INTERNAS */
      .lineup{
        margin-top:185px;
        padding-top:30px;
        padding-bottom:40px;
      }
      .lineup h1{
        margin-bottom:25px;
        margin-top: 30px;
      }

      .content p{
        text-align: justify;
        margin: 5px 0 15px 0;
        line-height: 170%;
      }


      .two-columns{
        display:flex;
        justify-content: space-between;
        margin-bottom:25px;
      }
      .two-columns-movie{
        display: grid;
          grid-template-columns: repeat(2,1fr);
          grid-auto-rows: minmax(100px,100%);
          grid-gap: 4%;
          margin-bottom:25px;
      }

      .dline{
          border-top:3px solid #ddd;
      }

      .three-columns{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        grid-auto-rows: minmax(100px,100%);
        grid-gap:3%;
        padding:40px 0px 0px 0px;
    }

      .list-videos li{
        margin-bottom:30px;
        display:flex;
        flex-direction: column;
      }
      .list-videos li span{
        margin-bottom:15px;
        font-weight:bold;
      }


      /* BLOG */
      .grid-columns,
      .grid-columns2{
        display:flex;
        justify-content: space-between;
          height: auto;
      }
      .col-100{
        width:100%;
      }
      .col-70{
        width:70%;
      }
      .col-38{
        width:25%;
        }


      .list-blog li{
          margin-bottom:3px;
      }
      .list-blog li .box-post-home{
          margin-top:0px;
      }
      .list-blog li .box-post-home figure{
          width:28%;
      }
      .list-blog li .box-post-home article{
        width:69%;
      }

      .list-others{
        margin-top:70px;
        padding-top:40px;
        border-top:1px solid #707070;
        padding-left:12%;
        padding-right:12%;
        margin-bottom:70px;
      }
      .list-others .list-blog{
        margin-top:40px;
      }

      #form-filter{
          display:flex;
          flex-direction:column;
      }
      #form-filter legend{
        font-weight: bold;       
        margin: 25px 0 15px 0;
      }
      #form-filter div{
        margin-bottom:20px;
        border-bottom:1px solid #aaa;
        padding-bottom:15px;
      }

      #form-filter .field-length,
      #form-filter .field-size,
      .size-descr{
        display: grid;
        grid-template-columns: repeat(6,1fr);
        grid-auto-rows: minmax(40px,100%);
        grid-gap:2%;
      }


      #form-filter .field-color{
        display: grid;
        grid-template-columns: repeat(6,1fr);
        grid-auto-rows: minmax(40px,100%);
        grid-gap:2%;
      }
      #form-filter .field-color div{
          width: 46px;
          height: 36px;
          display:block;
          align-content: center;
          align-items: center;
          margin-bottom:10px;
          border:1px solid #555;
          cursor: pointer;
          position:relative;
          outline: none;
      }
      #form-filter .field-color div input{
          line-height:0px;
          width:59px;
          height:36px;
          outline: none;
        
          appearance: none;
          -webkit-appearance: none;
          -moz-appearance: none;
          opacity:0;


          z-index: 555;
          position: relative;
      }

      #form-filter .field-color div:before{
          transform: scale(0.8) rotate(0deg);

          transform: scale(1) rotate(0deg);
          transition-duration: 0.2s;
          -webkit-transition-duration: 0.2s;
          -moz-transition-duration: 0.2s;
      }
      #form-filter .field-color div:hover:before,
      #form-filter .field-color div.ativo:before{
          content:'';
          display:table;
          width:54px;
          height:45px;
          border:2px solid #aaa;
          position:absolute;
          left:-6px;
          top:-6px;

          transform: scale(1) rotate(0deg);
      }


      
      .field-size span,
      .field-length span{
        font-size:18px;
        cursor: pointer;
      }


      .field-size label,
      .size-descr label{
        width:100%;
        height:35px;
        cursor: pointer;
        border:1px solid #ddd;
        position:relative;
        margin-bottom:5px;
      }
      .field-size label input,
      .size-descr label input{
        opacity:0;
      }
      .field-size label span,
      .size-descr label strong{
        width:100%;
        top:5px;
        left:0px;
        right:0px;
        position:absolute;
        text-align:center;
        font-weight:bold;
      }
      .field-size label:hover,
      .field-size label.ativo,
      .size-descr label:hover,
      .size-descr label.ativo{
        border:1px solid #333;
      }


      .bt-filter{
        background: #222;
        color: #fff;
        font-size: 14px;
        border-radius: 45px;
        padding: 17px 35px;
        cursor: pointer;
        margin-top:15px;
        border:0px;
        outline:none;
      }


      .list-collect{
        width:100%;
        display: grid;
        grid-template-columns: repeat(3,1fr);
        grid-auto-rows: minmax(0,100%);
        grid-gap:2%;
        height: auto;
      }

      .list-collect li{
        margin-bottom:35px;
      }

      .list-collect a figure,
      #photo-thumb-view{
          position:relative;
          z-index:1;
      }
      .list-collect a figure span.off,
      #photo-thumb-view span.off{
        position:absolute;
        right:20px;
        top:30px;
        font-size:13px;
        color: #fff;
        background:crimson;
        border-radius:50px;
        line-height:14px;
        width:50px;
        text-align:center;
        height:50px;
        padding-top:18px;
        font-weight:bold;
      }

      .list-collect a figure img{
          border-radius:10px;
      }
      .list-collect a span{
        text-align:center;
        background:#F3F3F3;
        padding:14px 20px;
        border-radius:6px;
        display:flex;
        flex-direction: column;
        text-align: left;
        font-size:16px;
        color:#333;
        margin-top:-15px;
        position:relative;
        z-index:2;
          
        max-height: 100px;
        height: 100%;
        align-items: center;
        justify-content: center;

        transition-duration:0.2s;
        -webkit-transition-duration:0.2s;
        -moz-transition-duration:0.2s;
      }
        .list-collect a span strong{
            text-transform: uppercase;
            text-align: center;
        }

      .list-collect a span.off{
        padding:14px 0px;
      }


      .list-collect li:hover a span{
        background:#333;
        color:#fff;
      }

      .legend-collect a{
        color:#333;
        font-weight:bold;
      }

      .four-list{
          width:100%;
          display: grid;
          grid-template-columns: repeat(4,1fr);
          grid-auto-rows: minmax(100px,100%);
          grid-gap:2%;
      }

      .five-list{
        width:100%;
        display: grid;
        grid-template-columns: repeat(5,1fr);
/*        grid-auto-rows: minmax(100px,100%);*/
        grid-gap:20px;
    }

        .five-list a span{
        text-align:center;
        background:#F3F3F3;
        padding:14px 20px;
        border-radius:6px;
        display:flex;
        flex-direction: column;
        text-align: left;
        font-size:16px;
        color:#333;
        margin-top:-15px;
        position:relative;
        z-index:2;
          
        height: 100px;
/*        height: 100%;*/
        align-items: center;
        justify-content: center;

        transition-duration:0.2s;
        -webkit-transition-duration:0.2s;
        -moz-transition-duration:0.2s;
      }


      .title-product{
        font-size:25px;
      }

      .bt-budget{
        background: #29a628;
        color: #fff;
        font-size: 16px;
        border-radius: 45px;
        padding: 20px 80px;
        cursor: pointer;
        margin:25px 0 25px 0;
        border:0px;
        outline:none;
        width:100%;
        display:table;
        text-align:center;
        text-transform: uppercase;
      }
      .bt-budget strong{
        padding: 10px 10px 10px 40px;
        background:url("../img/i_whats.png") no-repeat left center;
      }


      .txt-descript{
        margin-top:40px;
      }
      .txt-descript strong{
          font-size:18px;
          margin-bottom:10px;
      }

      .article-post{
        width:80%;
        margin:0 auto;
      }
      .article-post p img{
        width:100%;
        max-width:1300px;
        border-radius:10px;
        margin:0 auto;
        display:table;
      }

    .list-event{
      display: grid;
      grid-template-columns: repeat(3,1fr);
/*      grid-auto-rows: minmax(100px,100%);*/
      grid-gap: 20px;
    }
    .list-event li{
        margin-bottom:20px;
        height: auto;
    }
    .list-event li a{
      display:flex;
      flex-direction: column;
      margin-top:0px;
    }
    .list-event li figure{
      width:100%;
      margin-top:0px;
      margin-bottom:15px;
    }
    .list-event li figure img{
      width:100%;
    }
    .list-event li .box-post-home article{
      width:100%;
    }
    .list-event li article span{
      width:100%;
      text-align:center;
      font-size:15px;
      margin-bottom:0px;
    }
    .list-event li article h6{
      text-align:center;
      width:100%;
      font-weight:normal;
      font-size:19px;
    }

/* PAGINAÇÃO */
      .wrap_page{
        width:100%;
        display:flex;
        margin-top:35px;
    }
        .pagination{
            display:flex;
            margin:0 auto;
            height:auto;
            width:auto;
            margin-bottom:15px;
            flex-wrap: wrap;
        }
        .pagination li{
            float:left;
            font-size:12px;
            display:table;
            margin:0px 2px;
        }
        .pagination li a{
            color: #777;
            float: left;
            height: auto;
            width: auto;
            text-align: center;
            display: block;
            text-decoration: none;
            border-radius: 50%;
            font-weight: bold;
            width:35px;
            height:35px;
            padding:7px;
            background: #fff;
            font-family: 'Kanit',sans-serif;
            font-size:13px;
            border: 1px solid #e5e5e5;
            transition-duration: 0.2s;
            -webkit-transition-duration: 0.2s;
            -moz-transition-duration: 0.2s;
        }
        .pagination li a.antProx{
            width: 75px;
            border-radius: 30%;
        }
        .pagination li a:hover, .pagination li.ativo a{
            background:#333;
            border:1px solid #333;
            color:#fff;
        }
        
        #form-busca{
          position:relative;
          margin-bottom:20px;
        }

        #form-busca .input{
            border:0px;
            font-size:12px;
            font-weight:bold;
            padding:10px 30px;
            border-radius:50px;
            background:#E2E2E2;
        }
        #form-busca #bt_search{
          position:absolute;
          right:0px;
          top:0px;
          background:url("../img/search.png") no-repeat center center;
          width:50px;
          height:50px;
          cursor: pointer;
          border:0px;
        }



        .list-cat{
          display:flex;
          flex-direction: column;
        }
        .list-cat li{
          margin-bottom:5px;
        }
        .list-cat li a{
          display:flex;
          color:#333;
          font-weight:bold;
          padding:14px 25px;
          font-size:16px;
          background:#fff;
          border-radius:50px;
          border:1px solid #666;

          transition-duration:0.2s;
          -webkit-transition-duration:0.2s;
          -moz-transition-duration:0.2s;
        }
        .list-cat li.ativo a,
        .list-cat li:hover a{
          background:#333;
          color:#fff;
        }

        #select-cat{
          display:none;
          width:100%;
          outline:none;
          color:#333;
          font-weight:bold;
          padding:14px 25px;
          font-size:16px;
          background:#fff;
          border-radius:50px;
          border:1px solid #666;
        }

        .header-post{
          width:80%;
          margin:0 auto;
          display:flex;
          justify-content: space-between;
          align-items: center;
        }
        .header-post h1{
          width:55%;
          line-height:24px;
          margin-bottom:0px;
          text-align:center;
        }

        .header-post .post-social{
          width:100%;
          display:flex;
          flex-direction: column;
          text-align:center;

        }
        .header-post .post-social span{
          width:100%;
          color:#ABA793;
          font-size:17px;
          font-weight:bold;
        }

        .photo-post{
          margin-top:40px;
          margin-bottom:40px;
        }
        .photo-post img{
          width:auto;
          margin:0 auto;
          display:table;
          border-radius:10px;
        }

        .bt-facebook{
          margin:0 auto;
          width:180px;
          display:table;
          border-radius:50px;
          background:#709BF1;
          color:#fff;
          font-weight:bold;
          font-size:13px;
          padding:10px 25px;
          margin-top:10px;
        }

      /* CONTATO  */
      fieldset{
        border:0px;
      }
      .msg{
        height:160px;
        font-family:'Lato',sans-serif;
        font-size:16px;
        padding-top:10px;
        margin-bottom:0px;
      }
      #form_contact{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-auto-rows: minmax(100px,100%);
        grid-gap:1%;
        margin-bottom:25px;
      }

    .wrap_button{
          grid-column-start:2;
          grid-column-end:2;
    }

    #btn_send,
    .btn_agendar_visita{
      float:right;
      border:0px;
      font-weight:bold;
      background: #222;
      color: #fff;
      font-size: 13px;
      border-radius: 45px;
      padding: 17px 60px;
      margin-top:10px;
      outline:none;
      cursor: pointer;
    }


      #map{
        border-radius:0px;
        line-height:0px;
        margin-bottom:-6px;
      }


      /* CARRINHO - PADRÃO PARA TODOS OS SITES */
      .wrap-cart{
          display:flex;
          flex-direction: column;
      }
      .wrap-cart li{
        display:flex;
        flex-wrap:wrap;
        margin-bottom:30px;
        border-bottom:2px solid #ddd;
        padding-bottom:25px;
        align-items: center;
      }
      .wrap-cart li:nth-of-type(1){
        margin-bottom:0px;
        padding-bottom:0px;
        border:0px;
      }
        .cart-h-product{
            width:60%;
            margin-bottom:30px;
        }
        .cart-h-quant{
          width:25%;
        }
        .cart-h-product h1,
        .cart-h-quant h1{
          margin-bottom:0px;
          font-size:16px;
        }
          .txt-right{
            text-align:right;
          }

        .cart-photo{
          width:18%;
          padding:0px 20px;
        }
        .cart-photo .cart-photo-corner{
          overflow: hidden;
          margin:0 auto;
          width:auto;
          display:table;
        }
        .cart-photo img{
          width:auto;
          border-radius:10px;
        }
        .cart-product{
          width:42%;
        }
        .cart-quant{
          width:25%;
        }
        .cart-action{
          width:15%;
        }

        .change-cart{
          float:right;
          width:120px;
          display:flex;
          justify-content: space-between;
        }

        .change-cart input{
          text-align:center;
          height:45px;
          margin-left:5px;
          margin-bottom:0px;
          margin-right:5px;
        }

        .change-cart button{
          display:flex;
          padding:0px 10px;
          border:0px;
          background:none;
          font-size:16px;
          cursor: pointer;
          outline:none;
        }

        .content-table{
          display:table;
          width:100%;
        }
        .cart-buttons{
          display:flex;
          float:right;
          width:100%;
          justify-content: space-between;
        }
        .cart-btn{
          font-size: 14px;
          border-radius: 45px;
          padding: 17px 35px;
          cursor: pointer;
          margin-top:15px;
          border:0px;
          outline:none;
          margin:0px 5px;
          width:100%;
          font-weight:bold;
          outline:outline;
        }
          .bt-buy{
            background: #fff;
            color: #222;
            border:1px solid #222;
            text-align:center;
          }
          .bt-finish{
            background: #222;
            color: #fff;
            border:1px solid #222;
          }
          


          .dlt-prod{
            margin:0 auto;
            border:0px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: #333;
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            cursor: pointer;

            transition-duration:0.2s;
            -webkit-transition-duration:0.2s;
            -moz-transition-duration:0.2s;
          }
          .dlt-prod:hover{
            background:#666;
          }

          #dl-menu{
            display:none;
          }
/* GALERIA ROTACIONADA DO SWIPER NAS PÁGINAS */
.double-col,
.double-colP{
  width:50%;
  zoom: 100%;
}
.double-info,
.double-infoP{
  width:45%;
  zoom: 85%;
}



.double-colP{
  width:47%;
}

.double-infoP{
  width:49%;
  margin-top:30px;
}
#photo-thumb-view{
  line-height:0px;
}
#photo-thumb-view a{
  outline:none;
}
#photo-thumb-view img{
  border-radius:10px;
  outline:none;
}

#gallery-slide{
  margin-top:30px;
  padding:0px 50px;
  position:relative;
}
#gallery-slide .swiper-slide img{
  border-radius:6px;
  cursor: pointer;
  outline:none;
}

#gallery-slide .swiper-button-prev, 
#gallery-slide .swiper-button-next{
  margin-top:-52px;
  outline:none;
}

.direction #photo-thumb-view{
  width:80%;
  float:right;
}
.direction #gallery-slide{
  width: 18%;
  min-height: 500px;
  padding: 34px 0px;
}

.direction .swiper-container{
  height:500px;
}
.direction .swiper-slide{
  overflow: hidden;
}
.direction .swiper-slide img{
  width:auto;
  max-width:auto;
  max-height:117px;
  margin:0 auto;
  display:table;
  /*
  width:100%;
  height:100%;
  object-fit: cover;
  */
}
.direction #gallery-slide .swiper-button-prev,
.direction #gallery-slide .swiper-button-next {
  transform: rotate(90deg);
}

.direction #gallery-slide .swiper-button-next{
  top: 0%;
  left: 50%;
  margin-left: -20px;
  margin-top: -34px;

  -webkit-transform:scale(1) rotate(-90deg);
  -moz-transform:scale(1) rotate(-90deg);
  -o-transform:scale(1) rotate(-90deg);
  transform:scale(1) rotate(-90deg);
}

.direction #gallery-slide .swiper-button-prev{
  top:98%;
  left: 50%;
  margin-left: -20px;
  
  -webkit-transform:scale(1) rotate(270deg);
  -moz-transform:scale(1) rotate(270deg);
  -o-transform:scale(1) rotate(270deg);
  transform:scale(1) rotate(270deg);
} 



/* AGENDAR VISITA */
#form_call{
  display:flex;
  flex-direction: column;
}



.modal_data .titles{
  text-align:center;
  margin-bottom:30px;
}

.alert {
    border-radius: 10px;  
    padding: 20px 30px;
    text-align: center;
    background: #222;
    color: #fff;
}


.col-24{
  width:24%;
}
.col-72{
  width:72%;
}


.values i{
    font-style:italic;
    text-decoration:line-through;
}
.values strong{
  font-size:20px;
}
.double-infoP label{
  cursor: pointer;
}



.mostra_filtro{
  display:none;
}


/* Parceiros */
.gridParceiros{
  width: 100%;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(3,1fr);
  margin-top: 30px;
}

.itemParceiro{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #45444F;
  padding: 20px;
  border-radius: 10px;
}

.imgParceiro{
  width: 100%;
  height: fit-content;
  height: -moz-fit-content;
  max-height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.imgParceiro img{
  margin: auto;
}

.itemParceiro h4{
  font-size: 22px;
  line-height: 27px;
}

.redesSociaisParceiro{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.redesSociaisParceiro a{
  width: 26px;
  height: 26px;
  margin: 0 5px;
}
.redesSociaisParceiro a i{
  font-size: 28px;
  color: #000;
}
.redesSociaisParceiro a:hover i{
  color: #709BF1;
}