body {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

a:focus, input:focus, button:focus, select:focus, textarea:focus {
  outline: none;
}

p {
  margin-bottom: 0;
}

.banner .desk {
  display: block;
}
.banner .mob {
  display: none;
}
@media (max-width: 980px) {
  .banner .desk {
    display: none;
  }
  .banner .mob {
    display: block;
  }
}

.sect1-lp {
  background: rgba(198, 180, 158, 0.3607843137);
  padding: 7vh 0;
}
.sect1-lp .title-lp {
  font-size: 22px;
  text-align: center;
  margin-bottom: 3vh;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sect1-lp .campos {
  margin-bottom: 1vh;
}
.sect1-lp .campos input {
  width: 100%;
  padding: 1vh 2vh;
  height: 7vh;
  border-radius: 5px;
  border: 1px solid #000000;
}
.sect1-lp .botao-form {
  text-align: center;
  margin-top: 1vh;
}
.sect1-lp .botao-form input {
  background: black;
  color: white;
  border: 1px solid black;
  padding: 1.5vh 4vh;
  border-radius: 5px;
  transition: 0.5s;
}
.sect1-lp .botao-form input:hover {
  background: #b5a898;
  border-color: #b5a898;
  color: black;
}
.sect1-lp .botao-form span {
  display: block;
}

footer {
  padding: 5vh 0;
}
footer p {
  font-size: 12px;
}
footer .ass {
  text-align: center;
}
footer .ass img {
  width: 20%;
}
footer .legal {
  margin-top: 3vh;
}
footer .legal p {
  text-align: center;
}
footer .lynq {
  text-align: right;
  margin-top: 2vh;
}
footer .lynq a {
  font-size: 13px;
  color: #212121;
}
footer .lynq a img {
  width: 5%;
}

@media (max-width: 980px) {
  .sect1-lp .campos input {
    height: 8vh;
  }
  footer .ass img {
    width: 50%;
  }
  footer .lynq {
    text-align: center;
    margin-top: 3vh;
  }
  footer .lynq a img {
    width: 18%;
  }
}

/*# sourceMappingURL=style.css.map */


/* Página Home */
.title{
  font-size: 22px;
  text-align: center;
  margin-bottom: 3vh;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px; }

.sect2{
  padding: 10vh 0;
  background: #b7aa98;
  .container-fluid{
    padding: 0;
  }
  .carousel-galeria{
    .img-galeria{
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 70vh;
      border-radius: 5px;
      position: relative;
      .legenda{
        position: absolute;
        border-radius: 5px;
        padding: 10vh 2vh 2vh;
        bottom: 0;
        color: white;
        background: linear-gradient(0deg, #00000066, transparent);
        width: 100%;
        font-size: 12px;
      }
    }
  }
}

.slick-arrow{
  border-radius: 5px;
  width: 80px;
  height: 60px;
  bottom: 40%;
  background: white;
  transition: .5s;
  &.slick-prev{
    left: 17%;
  }
  &.slick-next{
    left: inherit;
    right: 17%;
  }
  &:hover{
    background: #212121;
    &::before{
      filter: brightness(100);
    }
  }
  &::before{
    filter: brightness(0);
    transition: .5s;
  }
}

.sect3{
  background: linear-gradient(45deg, #e36e1f, #a31c26);
  padding: 10vh 0;
  .title{
    color: white;
  }
  .carousel-plantas{
    .slick-arrow{
      background: #212121;
      &::before{
        filter: brightness(100);
      }
      &:hover{
        background: #d75214;
      }
      &.slick-prev{
        left: 2%;
      }
      &.slick-next{
        right: 2%;
      }
    }
    .content-planta{
      background: white;
      border-radius: 5px;
      .img-planta{
        width: 100%;
        height: 60vh;
        object-fit: contain;
      }
      .legenda{
        text-align: center;
        font-size: 12px;
        color: #212121;
        font-weight: bold;
      }
    }
  }
}

.sect4{
  padding: 10vh 0;
  .content-dif{
    display: flex;
    flex-wrap: wrap;
    .item-dif{
      width: 20%;
      padding: 3vh;
      background: #eae4dc00;
      cursor: pointer;
      border-radius: 5px;
      transition: .5s;
      &:hover{
        background: #eae4dcb5;
      }
      .img-icone{
        text-align: center;
        img{
          width: 35%;
          margin-bottom: 3vh;
          filter: brightness(0);
        }
      }
      p{
        text-align: center;
        font-weight: bold;
        font-size: 14px;
      }
    }
  }
}

.sect5{
  padding: 10vh 0;
  .endereco{
    text-align: center;
    font-size: 25px;
    letter-spacing: 2px;
    margin-bottom: 3vh;
  }
  .mapa{
    position: relative;
    .botoes-mapa{
      display: flex;
      justify-content: space-between;
      gap: 4vh;
      border-radius: 5px;
      position: absolute;
      top: 2vh;
      transform: translate(50%, 0);
      right: 50%;
      background: white;
      padding: 2vh 4vh;
      .maps{
        img{
          width: 7vh;
        }
      }
      .waze{
        background: #0099ff;
        padding: 1vh;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        svg{
          width: 5vh;
          path{
            fill: white;
          }
        }
      }
    }
    .img-mapa{
      border-radius: 5px;
      width: 100%;
    }
  }
}

.sect6{
  background: #d5d5d5;
  padding: 10vh 0;
  .container{
    max-width: 66%;
  }
  .campos{
    margin-bottom: 1vh;
    input{
      width: 100%;
      padding: 1vh 2vh;
      height: 7vh;
      border-radius: 5px;
      border: 1px solid #000000;
    }
  }
  .botao-form{
    text-align: center;
    margin-top: 1vh;
    span{
      display: block;
    }
    input{
      background: black;
      color: white;
      border: 1px solid black;
      padding: 1.5vh 4vh;
      border-radius: 5px;
      transition: 0.5s;
      &:hover{
        background: white;
        color: #212121;
      }
    }
  }
}

.footer2{
  .ass{
    img{
      width: 30%;
    }
  }
}

.page-id-30 .footer1{
  display: none;
}

@media(max-width: 980px){
  .sect2{
    padding: 7vh 0;
    .carousel-galeria{
      .slick-arrow{
        &.slick-prev{
          left: 3%;
        }
        &.slick-next{
          right: 3%;
        }
      }
      .item{
        padding: 10px;
      }
      .img-galeria{
        height: 48vh;
      }
    }
  }
  .slick-arrow{
    width: 70px;
    height: 50px;
  }
  .sect3{
    padding: 7vh 0;
    .carousel-plantas{
      .slick-arrow{
        &.slick-prev{
          left: 0%;
        }
        &.slick-next{
          right: 0%;
        }
      }
      .content-planta{
        padding: 3vh;
        .img-planta{
          height: 35vh;
        }
      }
    }
  }
  .sect4{
    padding: 7vh 0;
    .content-dif .item-dif{
      width: 33.3%;
      padding: 1vh;
      p{
        font-size: 12px;
      }
    }
  }
  .sect5{
    padding: 7vh 0;
    .endereco{
      font-size: 23px;
    }
    .mapa{
      .botoes-mapa{
        gap: 3vh;
        top: 1vh;
        padding: 1vh 3vh;
        .maps{
          img{
            width: 5vh;
            height: 5vh;
          }
        }
        .waze{
          width: 5vh;
          height: 5vh;
          svg{
            width: 3vh;
            height: 3vh;
          }
        }
      }
    }
  }
  .sect6{
    padding: 7vh 0;
    .container{
      max-width: inherit;
    }
    .campos{
      input{
        height: 8vh;
      }
    }
  }

  .footer2{
    .ass{
      &:nth-child(1){
        margin-bottom: 2vh;
      }
      img{
        width: 40%;
      }
    }
  }
}