/* Carrossel abertura */
    /* Carrossel A - Horizontal */
    .carrosselA-container {
      width: 100%;
      margin: 50px auto;
      position: relative;
      overflow: hidden;
    }

    .carrosselA-track {
      display: flex;
      transition: transform 0.4s ease;
      touch-action: pan-y;
      cursor: grab;
      user-select: none;
    }

    .carrosselA-item {
      flex: 0 0 auto;
      width: 300px;
      height: auto;
      margin-right: 10px;
      background: #fff;
    }

    .carrosselA-dots {
      text-align: center;
      margin-top: 15px;
    }

    .carrosselA-dot {
      display: inline-block;
      width: 12px;
      height: 12px;
      margin: 5px;
      background: #bbb;
      border-radius: 50%;
      cursor: pointer;
    }

    .carrosselA-dot.active {
      background: #333;
    }

    /* Carrossel B - Fade */
    .carrosselB {
      position: relative;
      width: 100vw;
      height: 80vh;
    }

    .carrosselB-item {
      position: absolute;
      padding-top: 100px; left: 0;
      width: 100vw;
      height: 100vh;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 0;
    }

    .carrosselB-item.active {
      opacity: 1;
      z-index: 1;
    }

    .carrosselB-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .carrosselB-dots {
      position: absolute;
      top: 40vh;
      left: 30px;
      transform: translateX(-50%);
      width: 10px;
      gap: 10px;
      z-index: 2;
    }

    .carrosselB-dots button {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      background-color: var(--color4);
      cursor: pointer;
    }

    .carrosselB-dots button.active {
      background-color: var(--color2);
    }
/* Final */


    .logo {
        max-height: 8vh;
    }

    .menu a {
      text-decoration: none;
      font-size:0.9em;
      color: var(--color5);
      font-weight: 300;
      transition: color 0.3s;
      background-color: var(--color1);
      padding: 10px 15px;
      height: 45px;
    }

    .menu a:hover {
        color: var(--color5);
        background-color: var(--color3);
    }


    a.menu-link {
        color:var(--color5);
        padding: 15px 8px;
        font-weight:bold;
        font-size:.8em;     
    }
    a.menu-link:hover,a.menu-link:focus {
        text-decoration:none;
        padding: 15px 8px;
        color:var(--color1);
        background-color: var(--color5);
    }

    a.menu-link-pedido {
        color:var(--color5);
        padding: 16px;
        font-weight:bold;
        background-color: var(--color1);
        font-size:.7em;
    }
    a.menu-link-pedido:hover,a.menu-link-pedido:focus {
        text-decoration:none;
        padding: 16px;
        color:var(--color1);
        background-color: var(--color5);
        height: 45px;     
    }

    .menu-desktop{
        margin-top: -25px;
        height: 45px;
        padding: 6px 10px;
    }



/* Menu hamburguer */
   nav {
      background-color: #ffffff;
      padding: 10px 20px;
      position: absolute;
      width: 100vw;
      z-index: 3;
      height: 10vh;
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
        max-height: 8vh;
    }

    .menu {
      display: flex;
    }

    .menu a {
      text-decoration: none;
    font-size:0.9em;
      color: var(--color5);
      font-weight: 300;
      transition: color 0.3s;
      background-color: var(--color1);
      padding: 10px 15px;
      height: 5
    }

    .menu a:hover {
        color: var(--color5);
        background-color: var(--color3);
    }


    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: #333;
    }

    /* Mobile styles */


.descricao {
    display:none;
    animation:descricao 0.5s reverse;
    background-color:var(--color7);
    color:#fff
}
@keyframes descricao {
    from {
        background-color:var(--color7);
        color:#fff
    }
    to {
        background-color:#fff
    }
}
.item:hover .descricao {
    display:block
}

    @media (max-width: 768px) {
      .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 10vh;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 10px 0;
      }

      .menu.active {
        display: flex;
      }

      .hamburger {
        display: flex;
        position: absolute;
        top: 20px;
        right: 30px;
      }
    }
/* Final */


/* Galeria */
    .galeria {
    width: 100%;
    object-fit: cover;
    height: 280px;
    margin-bottom: 5px;
    }

    .galeria-adm {
    width: 100%;
    object-fit: cover;
    height: 150px;
    }    

    .efeito {
        border: none;
        color: var(--color1);
        font-size: 13px;
        cursor: pointer;
        position: relative;
        box-sizing: border-box;
        transition: all 400ms ease;
}

    .efeito-2{
    background: var(--color2t);

}

.efeito-2:before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  bottom: 0;
  background: var(--color2t);
  transition: all 1s ease;
}

.efeito-2:hover:before {
  height: 20%;
  padding: 25px 0 0 0;
  content: attr(data-texto);
  font-family: "Poppins", sans-serif;
}

/* Final */

  .set{
    position: relative;
    height: auto;
  }
  .set > button {
    display: block;
    background-color: var(--color2);
    padding: 20px 10px 20px 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s linear;
    display: block !important;
    width: 100%;
    font-weight: bold;
    text-align: left;
    color: var(--color5);
    border: 1px solid var(--color4);
    border-radius: 25px;
  }
  .set > button i {
    float: left;
    top: 0;
    left: 0;
    padding: 22px 25px;
    position: absolute;
  }
  .set > button.active {
    background-color: var(--color3);
    color: var(--color5);
  }
  
.set3 {
    position:relative;
    height:auto
}
.set3>a {
    background-color:transparent;
    display:block;
    padding:20px 10px 20px 50px;
    text-decoration:none;
    margin-bottom:5px;
    transition:all 0.2s linear;
    color:var(--color6);
    cursor:pointer;
    border:solid 1px var(--color6)
}
.set3>a i {
    float:left;
    top:0;
    left:0;
    padding:25px;
    position:absolute
}
.set3>a.active {
    background-color:transparent
}  
  .content {
    display:none;
    width: 100%;
    padding: 30px 0;
    background-color: transparent;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.padding-30 {
    padding: 15px 30px;
}

.padding-topo {
    padding-top: 50px;
}

.padding-bottom {
    padding-bottom: 50px;
}

.sombra {
    text-shadow:.05em .05em .05em rgba(0,0,0,.5)
}

.btnwhatsapp {
    position:fixed;
    bottom:10px;
    right:10px;
    z-index:5;
    color:var(--color5)
}

.btn {
    display:inline-block;
    vertical-align:middle;
    touch-action:manipulation;
    cursor:pointer;
    line-height:1.42857143;
    padding:12px 20px;
    font-size:.85em;
    font-weight: bold;
    border-radius: 25px;
}

p, .p-custom {
    margin-bottom: 10px;
}

h1,.h1,.h1-custom {
    font-family: "Poppins", sans-serif;
    font-weight:800;
}
h2,.h2,.h2-custom {
    font-family: "Poppins", sans-serif;
    font-weight:300;
}
h3,.h3,.h3-custom {
    font-family: "Poppins", sans-serif;
    font-weight:300;
    margin: auto;
    font-size: 1.5em;

}
h4,.h4,.h4-custom {
    font-family: "Poppins", sans-serif;
    font-weight:400;
    line-height:1.3;
    font-size: 1.2em;
}
h5,.h5,.h5-custom {
    font-family:'Roboto',sans-serif;
    font-weight:400;
    font-size:1.1em;
    line-height:1.42857143;
    color:var(--color6);
    background-color:var(--color3);
    padding:12px 25px;
    margin:0
}
h6,.h6,.h6-custom {
    font-family:'Roboto',sans-serif;
    font-weight:400;
    font-size:1.1em;
    line-height:1.42857143;
    color:var(--color5);
    background-color:var(--color2);
    padding:12px 25px;
    margin:0
}

.btn-default {
    color:var(--color5);
    border:solid 1px var(--color2);
    background-color:var(--color2)
}
.btn-default:hover,.btn-default:focus,.btn-default.focus,.btn-default:active,.btn-default.active {
    border:solid 1px var(--color5t);
    color:var(--color1);
    background-color:var(--color4)
}

.btn-pagina {
    color:var(--color5);
    border:solid 1px var(--color1);
    background-color:var(--color1)
}
.btn-pagina:hover,.btn-pagina:focus,.btn-pagina.focus,.btn-pagina:active,.btn-pagina.active {
    border:solid 1px var(--color4);
    color:var(--color1);
    background-color:var(--color4)
}

.btn-inserir {
    color:rgba(255,255,255,.8);
    border:solid 1px #00b612;
    background-color:#00b612
}
.btn-inserir:hover,.btn-inserir:focus,.btn-inserir.focus,.btn-inserir:active,.btn-inserir.active {
    color:#fff;
    background-color:#027f0f
}
.btn-excluir {
    color:rgba(255,255,255,.8);
    border:solid 1px red;
    background-color:red
}
.btn-excluir:hover,.btn-excluir:focus,.btn-excluir.focus,.btn-excluir:active,.btn-excluir.active {
    color:#fff;
    background-color:#8b0303
}
.btn-editar {
    color:rgba(255,255,255,.8);
    border:solid 1px #3b6d77;
    background-color:#3b6d77
}
.btn-editar:hover,.btn-editar:focus,.btn-editar.focus,.btn-editar:active,.btn-editar.active {
    color:#fff;
    background-color:#0b5790
}
.btn-xs {
    margin-top:5px;
    padding:1px 5px;
    font-size:12px;
    line-height:1.5;
    border-radius:5px
}
.btn-pq {
    margin:-15px 1px 5px;
    padding:2px 7px;
    font-size:12px;
    line-height:1.5;
    border-radius:5px
}
.displayblock {
    display:block
}
.displaynone {
    display:none
}

::marker {
    color:var(--color2)
}

.gradiente {
    background:linear-gradient(0deg,var(--color6),transparent)
}

.fundo {
    position:relative;
    float: left;
    width: 100%;
}

.fundo-menu-adm {
    background-color:#f9f9f9;
    border:solid 1px #e1e1e1;
    border-top:0;
    padding:20px
}


@media (min-width:398px) {
    h1,.h1,.h1-custom {
    font-size: 2em;
    }
    h2,.h2,.h2-custom {
    font-size: 1.5em;
    }
    h3,.h3,.h3-custom {
    font-size: 1.2em;
    }    
}
@media (min-width:568px) {


}
@media (min-width:768px) {
    h1,.h1,.h1-custom {
    font-size: 2.8em;
    }
    h2,.h2,.h2-custom {
    font-size: 2em;
    }
    h3,.h3,.h3-custom {
    font-size: 1.5em;
    }        
}
@media (min-width:992px) {
  
}
@media (min-width:1200px) {
}


@media (max-height:540px) {

    .barra-rodape-blocado {
        display:none
    }
    .barra-rodape-sangrado {
        display:none
    }

}
img {
    margin:0;
    padding:0;
    border:0;
    font-size:100%;
    font:inherit;
    vertical-align:baseline
}
button {
    font-size:16px;
    font-family:'Roboto',sans-serif
}

.icon-redes {
    height:42px;
    padding-right:10px;
    transition:0.5s;
    color:var(--color1)
}
.icon-redes:hover {
    color:var(--color2)
}

hr {
    box-sizing:content-box;
    height:0;
    margin-top:10px;
    margin-bottom:10px;
    border:0;
    border-top:1px solid #e1e1e1
}
* {
    box-sizing:border-box
}
body {
    font-family:'Roboto',sans-serif;
    font-size: 17px;
    line-height:1.5;
    color:var(--color6);
    overflow-x:hidden;
    background-color:#fff
}


.foto-preview {
    width:180px;
    height:180px;
    object-fit:cover
}
.alinhamento {
    display:inline-block;
    vertical-align:middle
}
.center {
    text-align:center
}
.right {
    text-align:right
}
.bold {
    font-weight:700
}
.justify {
    text-align:justify
}
.branco {
    color:#fff
}
a.branco {
    color:var(--color5);
    text-decoration:none
}
a.branco:hover,a.branco:focus {
    color:rgba(255,255,255,.7);
    text-decoration:none
}
a {
    color:var(--color6);
    text-decoration:none
}
a:hover,a:focus {
    color:#555;
    text-decoration:none
}
.img-responsive {
    width:100%;
    display:block;
}

.img-responsive2 {
    max-width:100%;
}

.container {
    margin-right:auto;
    margin-left:auto
}
@media (min-width:397px) {
    .container {
        margin-right:3%;
        margin-left:3%
    }
}
@media (min-width:767px) {
    .container {
        margin-right:3%;
        margin-left:3%
    }
}
@media (min-width:768px) {
    .container {
        margin-right:6%;
        margin-left:6%
    }
    .container-left {
        margin-left:6vw
    }
}
@media (min-width:991px) {
    .container {
        margin-right:10%;
        margin-left:10%
    }
    .container-left {
        margin-left:10vw
    }
}
@media (max-width:397px) {
    .hidden-xs {
        display:none!important
    }
}
@media (min-width:398px) and (max-width:567px) {
    .hidden-398 {
        display:none!important
    }
}
@media (min-width:568px) and (max-width:767px) {
    .hidden-568 {
        display:none!important
    }
}
@media (min-width:768px) and (max-width:991px) {
    .hidden-sm {
        display:none!important
    }
}
@media (min-width:992px) and (max-width:1199px) {
    .hidden-md {
        display:none!important
    }
}
@media (min-width:1200px) {
    .hidden-lg {
        display:none!important
    }
}
.row {
    margin-left:-15px;
    margin-right:-15px
}
.col-xs-1,.col-568-1,.col-368-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-568-2,.col-368-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-568-3,.col-368-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-568-4,.col-368-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-568-5,.col-368-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-568-6,.col-368-6,.col-sm-6,.col-md-6,.col-lg-6,.col-568-7,.col-368-7,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-568-8,.col-368-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-568-9,.col-368-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-568-10,.col-368-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-568-11,.col-368-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-568-12,.col-368-12,.col-sm-12,.col-md-12,.col-lg-12 {
    position:relative;
    min-height:1px;
    padding-left:15px;
    padding-right:15px
}
.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12 {
    float:left
}
.col-xs-12 {
    width:100%
}
.col-xs-11 {
    width:91.66666667%
}
.col-xs-10 {
    width:83.33333333%
}
.col-xs-9 {
    width:75%
}
.col-xs-8 {
    width:66.66666667%
}
.col-xs-7 {
    width:58.33333333%
}
.col-xs-6 {
    width:50%
}
.col-xs-5 {
    width:41.66666667%
}
.col-xs-4 {
    width:33.33333333%
}
.col-xs-3 {
    width:25%
}
.col-xs-2 {
    width:16.66666667%
}
.col-xs-1 {
    width:8.33333333%
}
@media (min-width:398px) {
    .col-398-1,.col-398-2,.col-398-3,.col-398-4,.col-398-5,.col-398-6,.col-398-7,.col-398-8,.col-398-9,.col-398-10,.col-398-11,.col-398-12 {
        float:left
    }
    .col-398-12 {
        width:100%
    }
    .col-398-11 {
        width:91.66666667%
    }
    .col-398-10 {
        width:83.33333333%
    }
    .col-398-9 {
        width:75%
    }
    .col-398-8 {
        width:66.66666667%
    }
    .col-398-7 {
        width:58.33333333%
    }
    .col-398-6 {
        width:50%
    }
    .col-398-5 {
        width:41.66666667%
    }
    .col-398-4 {
        width:33.33333333%
    }
    .col-398-3 {
        width:25%
    }
    .col-398-2 {
        width:16.66666667%
    }
    .col-398-1 {
        width:8.33333333%
    }
}
@media (min-width:568px) {
    .col-568-1,.col-568-2,.col-568-3,.col-568-4,.col-568-5,.col-568-6,.col-568-7,.col-568-8,.col-568-9,.col-568-10,.col-568-11,.col-568-12 {
        float:left
    }
    .col-568-12 {
        width:100%
    }
    .col-568-11 {
        width:91.66666667%
    }
    .col-568-10 {
        width:83.33333333%
    }
    .col-568-9 {
        width:75%
    }
    .col-568-8 {
        width:66.66666667%
    }
    .col-568-7 {
        width:58.33333333%
    }
    .col-568-6 {
        width:50%
    }
    .col-568-5 {
        width:41.66666667%
    }
    .col-568-4 {
        width:33.33333333%
    }
    .col-568-3 {
        width:25%
    }
    .col-568-2 {
        width:16.66666667%
    }
    .col-568-1 {
        width:8.33333333%
    }
}
@media (min-width:768px) {
    .col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12 {
        float:left
    }
    .col-sm-12 {
        width:100%
    }
    .col-sm-11 {
        width:91.66666667%
    }
    .col-sm-10 {
        width:83.33333333%
    }
    .col-sm-9 {
        width:75%
    }
    .col-sm-8 {
        width:66.66666667%
    }
    .col-sm-7 {
        width:58.33333333%
    }
    .col-sm-6 {
        width:50%
    }
    .col-sm-5 {
        width:41.66666667%
    }
    .col-sm-4 {
        width:33.33333333%
    }
    .col-sm-3 {
        width:25%
    }
    .col-sm-2 {
        width:16.66666667%
    }
    .col-sm-1 {
        width:8.33333333%
    }
}
@media (min-width:1200px) {
    .col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12 {
        float:left
    }
    .col-md-12 {
        width:100%
    }
    .col-md-11 {
        width:91.66666667%
    }
    .col-md-10 {
        width:83.33333333%
    }
    .col-md-9 {
        width:75%
    }
    .col-md-8 {
        width:66.66666667%
    }
    .col-md-7 {
        width:58.33333333%
    }
    .col-md-6 {
        width:50%
    }
    .col-md-5 {
        width:41.66666667%
    }
    .col-md-4 {
        width:33.33333333%
    }
    .col-md-3 {
        width:25%
    }
    .col-md-2 {
        width:16.66666667%
    }
    .col-md-1 {
        width:8.33333333%
    }
}
@media (min-width:1360px) {
    .col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12 {
        float:left
    }
    .col-lg-12 {
        width:100%
    }
    .col-lg-11 {
        width:91.66666667%
    }
    .col-lg-10 {
        width:83.33333333%
    }
    .col-lg-9 {
        width:75%
    }
    .col-lg-8 {
        width:66.66666667%
    }
    .col-lg-7 {
        width:58.33333333%
    }
    .col-lg-6 {
        width:50%
    }
    .col-lg-5 {
        width:41.66666667%
    }
    .col-lg-4 {
        width:33.33333333%
    }
    .col-lg-3 {
        width:25%
    }
    .col-lg-2 {
        width:16.66666667%
    }
    .col-lg-1 {
        width:8.33333333%
    }
}

.rounded {
    border-radius:25px
}

.icone-contato {
    background-color:transparent;
    position:absolute;
    width:35px;
    color:var(--color2);
    text-align:center;
    padding:6px 6px 5px 6px;
    border:none;
    border-radius:8px 0 0 8px;
    height:35px
}
::placeholder {
    color:#999;
    opacity:1
}
.form-cores {
    display:inline-block
}
.form-control2 {
    display:inline-block;
    vertical-align:middle;
    padding:12px;
    line-height:1.42857143;
    margin:5px;
    background-color:#fff;
    border:1px solid #ccc;
    height:45px;
    font-size:16px;
    border-radius:10px
}
.maiuscula {
    text-transform:uppercase
}

textarea.form-control {
    height:auto;
    font-family:'Monts',sans-serif
}


.video-responsive {
    position:relative;
    display:block;
    height:0;
    padding:0;
    overflow:hidden
}
.video-responsive .video-responsive-item,.video-responsive iframe,.video-responsive video,.video-responsive object,.video-responsive video {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    height:100%;
    width:100%;
    border:0
}
.video-responsive-16by9 {
    padding-bottom:56.25%
}

.form-control {
    width:100%;
    display:inline-block;
    vertical-align:middle;
    padding:8px;
    line-height:1.42857143;
    margin-bottom:5px;
    background-color:#fff;
    border:1px solid #f1f1f1;
    height:35px;
    border-radius:10px
}
.form-control-contato {
    width:100%;
    display:inline-block;
    vertical-align:middle;
    line-height:1.42857143;
    background-color:#fff;
    border:1px solid #f1f1f1;
    margin-bottom:5px;
    padding-left:40px;
    height:35px;
    font-family:'Monts',sans-serif;
    overflow-x:hidden;
    border-radius:10px
}
.icone-contato {
    background-color:transparent;
    position:absolute;
    width:35px;
    color:var(--color2);
    text-align:center;
    padding:6px 6px 5px 6px;
    border:none;
    border-radius:8px 0 0 8px;
    height:35px
}