/* ADERA_REVIEW_WHATSAPP_V1 */

.adera-review-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 34px;
  align-items: center;
  width: min(1120px, calc(100% - 34px));
  margin: 34px auto;
  padding: 30px;
  background: #f8f1e7;
  border: 1px solid #e4d5c1;
  border-radius: 26px;
}

.adera-review-kicker {
  color: #087a58;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.adera-review-copy h2 {
  margin: 8px 0 12px;
  color: #432715;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1;
}

.adera-review-copy p {
  max-width: 650px;
  color: #655347;
  line-height: 1.6;
}

.adera-review-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: #fff;
  background: #087a58;
  border-radius: 14px;
  font-weight: 850;
  text-decoration: none;
}

.adera-review-qr {
  display: grid;
  gap: 10px;
  justify-items: center;
  color: #432715;
  text-align: center;
  text-decoration: none;
}

.adera-review-qr img {
  display: block;
  width: 190px;
  height: 190px;
  padding: 9px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(67, 39, 21, .12);
}

.adera-floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 450000;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: #fff;
  background: #25d366;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .25);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.adera-floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

.adera-floating-whatsapp:hover,
.adera-floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  background: #1fba59;
}

@media (max-width: 760px) {
  .adera-review-section {
    grid-template-columns: 1fr;
    width: calc(100% - 18px);
    margin: 20px auto;
    padding: 22px 16px;
    text-align: center;
  }

  .adera-review-qr img {
    width: 178px;
    height: 178px;
  }

  .adera-floating-whatsapp {
    right: 13px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

  .adera-floating-whatsapp svg {
    width: 29px;
    height: 29px;
  }
}

/* END ADERA_REVIEW_WHATSAPP_V1 */
