* {
  font-family: "Poppins", sans-serif;
}

.verde {
  color: #c2e93a;
}

.container-geral {
  max-width: 1660px;
  padding: 0 30px;
  margin-left: auto !important;
  margin-right: auto !important;
  width: -webkit-fill-available;
}

.title-geral {
  color: #3e4037;
  font-size: 80px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -4.4px;
  line-height: 1.1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  padding-top: 30px;
  border-top: 1px solid #1d1e1a21;
  margin-top: 30px;
}

.product-card {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 15px;
  overflow: hidden;
  background: #eef0e3;
  position: relative;
}

.product-badge {
  font-weight: 700;
  position: absolute;
  top: 30px;
  left: 30px;
  background: #f9fbee;
  font-size: 16px;
  color: #41423a;
  display: inline-block;
  padding: 7px 30px;
  line-height: 1;
  border-radius: 100px;
}

.product-body {
  padding: 30px;
  width: -webkit-fill-available;
}

.product-title {
  font-size: 33px;
  text-transform: none;
  letter-spacing: -1.5px;
  font-weight: 500;
  line-height: 1;
  color: #41423a;
  margin-bottom: 5px;
}

.product-desc {
  font-size: 16px;
  color: #41423a;
  font-weight: 500;
  opacity: 70%;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  align-items: center;
}

.product-price {
  font-size: 34px;
  color: #1d1e1a;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
}

.product-btn {
  background: #c2e93a;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -1px;
  padding: 9px 30px;
  border-radius: 8px;
  transition: 200ms ease-in-out;
  color: #1d1e1a;
}

.product-btn:hover {
  background: #1d1e1a;
  color: #c2e93a;
}

.product-media {
  height: 470px;
  width: -webkit-fill-available;
  border-radius: 10px;
  overflow: hidden;
}

.product-media img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .container-geral {
    padding: 0;
  }

  .title-geral {
    font-size: 50px;
    letter-spacing: -3px;
    text-align: center;
  }

  .product-media {
    height: 290px;
  }

  .product-body {
    padding: 20px;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 230px;
  }

  .product-title {
    font-size: 22px;
  }

  .product-desc {
    font-size: 14px;
    line-height: 1.3;
  }

  .product-footer {
    justify-content: flex-start;
    margin-top: 40px;
    align-items: flex-start;
    flex-direction: column;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-footer {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    position: absolute;
    bottom: 20px;
    gap: 15px;
  }

  .product-price {
    font-size: 30px;
  }

  .product-badge {
    top: 250px;
    left: 20px;
    font-size: 11px;
  }
}

:root {
    --loader-progress: 0%;
}

body.preloader-active {
    overflow: hidden;
}

#page-preloader {
    position: fixed;
    inset: 0;
    background: #c2e93a;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#page-preloader .loader-wave-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

#page-preloader .loader-wave {
    position: absolute;
    left: -10%;
    bottom: 0;
    width: 120%;
    height: 0;
    background: #f9fbee;
    border-top-left-radius: 50% 20%;
    border-top-right-radius: 50% 20%;
    box-shadow: 0 -15px 35px rgba(0, 0, 0, 0.12);
    transition: height 0.3s ease-out;
    animation: waveMove 3s ease-in-out infinite alternate;
}

#page-preloader .loader-text {
    position: relative;
    z-index: 1;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1b1b1b;
}

#page-preloader #loader-percent {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

#page-preloader .loader-label {
    display: block;
    font-size: 0
