/* ================= WIDGET CONTACTO ================= */

.contact-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: inherit;
}

/* Botão redondo */
.contact-widget__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #0091bd 0%, #2f157f 100%);
  color: #ffffff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.55);
}

/* Painel */
.contact-widget__panel {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 280px;
  max-width: 80vw;
  background: #ffffff;
  color: #111827;
  border-radius: 18px;
  padding: 1.2rem 1.4rem 1.1rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
  font-size: 0.9rem;

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}

.contact-widget__panel h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.contact-widget__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-widget__label input,
.contact-widget__label textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 0.45rem 0.55rem;
  font: inherit;
  resize: vertical;
  margin-top: 0.15rem;
}

.contact-widget__send {
  width: 100%;
  margin-top: 0.4rem;
  border-radius: 999px;
  border: none;
  padding: 0.5rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #0091bd 0%, #2f157f 100%);
  color: #ffffff;
}

.contact-widget__note {
  margin-top: 0.4rem;
  font-size: 0.7rem;
  color: #6b7280;
}

/* Painel aberto */
.contact-widget--open .contact-widget__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
