.evt-nl {
  --nl-surface: #fffaf0;
  --nl-border: #f0e4c8;
  --nl-text: #2b2620;
  --nl-muted: #8a8072;
  --nl-accent: #c8a96e;
  --nl-accent-dark: #a3824e;
  --nl-whatsapp: #25d366;
  --nl-whatsapp-dark: #1da851;
}
.evt-nl * {
  box-sizing: border-box;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}
.evt-nl-card {
  position: relative;
  background: linear-gradient(155deg, var(--nl-surface), #fff);
  border: 1px solid var(--nl-border);
  border-radius: 32px;
  padding: 44px 40px;
  overflow: hidden;
  text-align: center;
}
.evt-nl-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.16), transparent 70%);
  pointer-events: none;
}
.evt-nl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nl-accent-dark);
  margin-bottom: 14px;
}
.evt-nl-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--nl-text);
  margin: 0 0 10px;
  line-height: 1.3;
}
.evt-nl-subtitle {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--nl-muted);
  max-width: 460px;
  margin: 0 auto 26px;
}
.evt-nl-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 16px;
}
@media (max-width: 480px) {
  .evt-nl-form {
    flex-direction: column;
  }
}
.evt-nl-input {
  flex: 1;
  appearance: none;
  border: 1.5px solid var(--nl-border);
  background: #fff;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 0.95rem;
  color: var(--nl-text);
  min-width: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.evt-nl-input::placeholder {
  color: var(--nl-muted);
}
.evt-nl-input:focus {
  outline: none;
  border-color: var(--nl-accent);
  box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.15);
}
.evt-nl-input.evt-nl--invalid {
  border-color: #e0645a;
  box-shadow: 0 0 0 4px rgba(224, 100, 90, 0.12);
}
.evt-nl-submit {
  appearance: none;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--nl-accent), var(--nl-accent-dark));
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
  padding: 13px 26px;
  white-space: nowrap;
  transition: transform 0.15s ease, opacity 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.evt-nl-submit:hover {
  transform: translateY(-1px);
}
.evt-nl-submit:disabled {
  opacity: 0.65;
  cursor: default;
  transform: none;
}
.evt-nl-error {
  display: none;
  font-size: 0.82rem;
  color: #c94c3f;
  margin: -6px 0 14px;
}
.evt-nl-error.evt-nl--visible {
  display: block;
}
.evt-nl-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.1);
  color: var(--nl-whatsapp-dark);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none !important;
  border-radius: 999px;
  padding: 10px 20px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.evt-nl-whatsapp i {
  font-size: 1.05rem;
}
.evt-nl-whatsapp:hover {
  background: rgba(37, 211, 102, 0.18);
  transform: translateY(-1px);
}
.evt-nl-fineprint {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--nl-muted);
}
.evt-nl-form-wrap {
  transition: opacity 0.2s ease;
}
.evt-nl-success {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0 4px;
}
.evt-nl-success.evt-nl--visible {
  display: flex;
  animation: evtNlPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.evt-nl-success-emoji {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 4px;
}
.evt-nl-success-text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--nl-text);
  max-width: 420px;
}
.evt-nl-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 8, 0.45);
  backdrop-filter: blur(4px);
  z-index: 99997;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.evt-nl-popup-overlay.evt-nl--visible {
  display: flex;
}
.evt-nl-popup {
  position: relative;
  width: 100%;
  max-width: 480px;
  animation: evtNlPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.evt-nl-popup .evt-nl-card {
  padding: 40px 32px;
}
.evt-nl-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  color: var(--nl-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.evt-nl-popup-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--nl-text);
}

@keyframes evtNlPop {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(8px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@media (max-width: 560px) {
  .evt-nl-card {
    padding: 32px 22px;
    border-radius: 26px;
  }
}
