/* CONTENEDOR ESQUINA DERECHA */
#email-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 9999;
}

/* FORMULARIO */
#email-form {
  width: 320px;
  max-width: 90vw;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: absolute;
  bottom: 76px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
  transition: opacity 0.25s, transform 0.25s;
  display: none;
}

#email-form.open {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.email-header {
  background: #db2f21;
  color: #fff;
  padding: 14px 16px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.email-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 16px 20px;
}

.email-body input,
.email-body textarea {
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.email-body button {
  padding: 12px;
  background: #db2f21;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.email-body button:hover {
  background: #b9261b;
}

.email-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* BOTÓN FLOTANTE */
#email-toggle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #db2f21;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

#email-toggle:hover {
  transform: scale(1.06);
}

#email-toggle i {
  font-size: 30px;
  color: #fff;
}
