/* Estilos do Modal Newsletter */

.nsp-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.nsp-modal.active {
  display: block;
}

.nsp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.nsp-modal__content {
  position: relative;
  max-width: 420px;
  margin: 10% auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 100000;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.nsp-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.nsp-modal__content form input[type="text"],
.nsp-modal__content form input[type="email"] {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.nsp-modal__content form button {
  background: #0073aa;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.nsp-modal__content form button:hover {
  background: #005f8d;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}
