#whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* Botón */
#wa-open {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #25D366;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0,0,0,.25);
}

/* Modal */
#wa-modal {
  position: absolute;
  bottom: 70px; /* 👈 arriba del botón */
  right: 0;
  display: none;
}

#wa-modal.active {
  display: block;
}

.wa-box {
  width: 260px;
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

.wa-box h4 {
  margin: 0 0 8px;
  font-size: 15px;
}

.wa-box textarea {
  width: 100%;
  height: 70px;
  resize: none;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 8px;
}

.wa-box button {
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 9px;
  border-radius: 8px;
  cursor: pointer;
}

#wa-close {
  float: right;
  cursor: pointer;
  font-size: 18px;
}
