.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-button {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 16px 45px rgba(6, 21, 74, .25);
  font-weight: 900;
  font-size: 22px;
}

.floating-button svg {
  width: 24px;
  height: 24px;
}

.whatsapp-float {
  background: #25D366;
}

.back-to-top {
  background: #06144a;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.lead-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 21, 74, .56);
}

.lead-modal__dialog {
  position: relative;
  width: min(560px, calc(100% - 32px));
  margin: 7vh auto;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 32px;
}

.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: 24px;
}

.lead-modal__subtitle {
  color: var(--muted);
  margin-top: -6px;
  margin-bottom: 20px;
}

.lead-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-modal__grid label {
  display: grid;
  gap: 6px;
}

.lead-modal__grid label.full {
  grid-column: 1 / -1;
}

.lead-modal__consent {
  display: flex;
  gap: 10px;
  margin: 18px 0 22px;
  color: var(--muted);
}

.lead-modal__consent input {
  width: auto;
  margin-top: 3px;
}

.lead-modal__feedback {
  margin-top: 16px;
  min-height: 24px;
  font-size: 14px;
  font-weight: 700;
}

.lead-modal__feedback.is-error {
  color: #9f1d1d;
}

.lead-modal__feedback.is-success {
  color: #176b35;
}

@media (max-width: 700px) {
  .floating-actions {
    right: 18px;
    bottom: 18px;
  }

  .floating-button {
    width: 52px;
    height: 52px;
  }

  .lead-modal__grid {
    grid-template-columns: 1fr;
  }
}
