/* Bellalux WhatsApp Popup — widget de chat no canto inferior direito, junto do
 * botão flutuante. Não bloqueia a página (sem overlay). Roxo da marca: #774D8E. */

.bxwp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99998;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  padding: 0;
  transition: transform 0.15s ease, background 0.15s ease;
}
.bxwp-fab:hover {
  background: #1ebe5a;
  transform: scale(1.06);
}
.bxwp-fab:focus-visible {
  outline: 3px solid #774d8e;
  outline-offset: 3px;
}

.bxwp-popup {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 99999;
  width: 330px;
  max-width: calc(100vw - 24px);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  font-family: Ubuntu, "Helvetica Neue", Arial, sans-serif;
}
.bxwp-popup[hidden] {
  display: none;
}
.bxwp-popup * {
  box-sizing: border-box;
  line-height: 1.35;
}

.bxwp-head {
  background: linear-gradient(135deg, #844195, #5e3a72);
  color: #fff;
  padding: 14px 48px 14px 16px;
  position: relative;
}
.bxwp-head p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.bxwp-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  padding: 0;
  cursor: pointer;
}

.bxwp-form {
  padding: 14px 16px 16px;
  margin: 0;
}
.bxwp-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin: 0 0 4px;
}
.bxwp-form input[type="text"],
.bxwp-form input[type="email"],
.bxwp-form input[type="tel"] {
  display: block;
  width: 100%;
  height: auto;
  padding: 9px 10px;
  font-size: 14px;
  color: #333;
  background: #fff;
  border: 1px solid #d5d9dd;
  border-radius: 8px;
  margin: 0 0 12px;
  box-shadow: none;
}
.bxwp-form input:focus {
  outline: none;
  border-color: #774d8e;
  box-shadow: 0 0 0 2px rgba(119, 77, 142, 0.2);
}
.bxwp-form .iti {
  display: block;
  width: 100%;
  margin: 0 0 12px;
}
.bxwp-form .iti input[type="tel"] {
  margin: 0;
}
.bxwp-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
}
.bxwp-erro {
  margin: -4px 0 10px;
  font-size: 12px;
  color: #c0392b;
}
.bxwp-submit {
  display: block;
  width: 100%;
  background: #25d366;
  color: #fff;
  border: 0;
  border-radius: 24px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-transform: none;
}
.bxwp-submit:hover {
  background: #1ebe5a;
}
.bxwp-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

@media (max-width: 480px) {
  .bxwp-fab {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
  .bxwp-popup {
    right: 12px;
    bottom: 84px;
    width: calc(100vw - 24px);
  }
}

/* Página Contato: cartão no lugar do formulário grande de cada aba. */
.bxwp-card {
  background: #f7f3f9;
  border: 1px solid #e4d9ea;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}
.bxwp-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #774d8e;
  text-transform: none;
}
.bxwp-card p {
  margin: 0 0 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.45;
}
.bxwp-card .bxwp-card-btn {
  max-width: 300px;
  margin: 0 auto;
  font-family: Ubuntu, "Helvetica Neue", Arial, sans-serif;
}
