@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    overflow-x: hidden;
    font-size: 1.3rem;
}

main {
    overflow: hidden;
    background-color: #4ec1dc;
}

header {
  width: 100%;
  position: absolute;

}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
  opacity: 0.5;
}

.destaque {
  height: 80vh;
  max-height: 800px;
  background-image: url(../img/bg-destaque.jpg);
  background-size: cover;
  background-position: center;
  color: #FFF;
}

.destaque h1 {
  color: #FFF;
  font-weight: 900;
}

.destaque img {
  width: 100%;
}

.infoResumo {
  background-color: #F8F8F8;
  padding: 50px;
  border-radius: 30px;
  margin-left: -100px;
  font-weight: 100;
  font-size: 1.3rem;
  box-shadow: 5px 5px 25px 0px rgba(204,204,204,1);
}

.row1 {
  height: 80vh;
  background-image: url('../img/row1.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.row2 {
  height: 80vh;
  background-image: url('../img/row2.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.lazer {
  background-color: #F8F8F8;
}

.lazer img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}

.plantas img {
  
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  object-position: center;
}

.botaoSaibaMais {
  display: block;
  width: 150px;
  padding: 5px 10px;
  border: 1px solid #a4884b;
  border-radius: 5px;
  margin-top: 30px;
  text-align: center;
  background-color: #a4884b;
  color: #FFF;
}

.botaoContato {
  background-color: darkgreen;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

@media only screen and (max-width: 575px) {

}

@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 991px) {

}

@media only screen and (min-width: 991px) {

}

@media only screen and (max-width: 1024px) {

}
    
@media only screen and (max-width: 1200px) {

}

@media only screen and (min-width: 1201px) {

}
@media only screen and (min-width: 1201px) and (max-width: 1400px) {
    
}

@media only screen and (min-width: 1401px) {

}

#whatsapp-btn {
    position: fixed;
    bottom: 70px;
    right: 100px;
    z-index: 1000;
  }
  
  #whatsapp-btn button:focus {
    outline: none;
  }
  
  #whatsapp-btn button {
    position: absolute;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.2s ease;
    animation: pulse 2s infinite;
    padding: 0;
  }
  
  #whatsapp-btn span {
      position: absolute;
      right: -16px;
      width: 203px;
      margin-top: 10px;
      background-color: #919191;
      height: 30px;
      color: #FFF;
      padding: 10px;
      font-size: 12px;
      text-align: center;
      text-transform: uppercase;
      border-radius: 10px;
      z-index: -1;
  
  }
  
  #whatsapp-btn .fa-whatsapp {
    font-size: 2em;
  }
  
  #wpp-link-btn {
    line-height: 0.5rem;
  }
  
  #whatsapp-btn .box-option {
    display: none;
    background-color: #eee5de;
    width: 220px;
    padding: 5px 10px;
    position: absolute;
    bottom: 5px;
    border-radius: 19px;
    border: 1px solid #d2ccc5;
    font-size: 13px;
  }
  @-webkit-keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 #25d366;
    }
    70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
  }
  @keyframes pulse {
    0% {
      -moz-box-shadow: 0 0 0 0 #25d366;
      box-shadow: 0 0 0 0 #25d366;
    }
    70% {
      -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
      box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
      -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
      box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
  }

  @keyframes cloud {
    0% {
      background-position: top right;
    }

    100% {
      background-position: bottom left;
    }

  }
  