/*
 * NOCTURNA WEB — nocturna-form.css v6
 * Tipografía grande · Full width · Botón fuchsia · Wizard paso a paso
 * Subir a: /wp-content/uploads/nocturna/nocturna-form.css
 */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;0,9..40,800;1,9..40,400&family=Playfair+Display:wght@700;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Paleta */
  --pu:     #7c2dbd;
  --pu2:    #9b3de0;
  --pl:     #c084fc;
  --pl2:    #e2b8ff;
  --fx:     #e03090;   /* FUCHSIA botón principal */
  --fx2:    #f050a8;
  --fx3:    #ff80c8;
  --pd:     #07071a;
  --pc:     #100e28;
  --pcl:    #181540;
  --pa:     #28205a;
  --pa2:    #3a2f78;
  --wh:     #f5f2ff;
  --whs:    #c0bade;
  --mu:     #8a84b0;
  --fd:     #52498a;
  --gn:     #30d08a;
  --or:     #f0a030;
  --re:     #f06070;

  /* Tipografías — GRANDES */
  --t-hero:   clamp(2.4rem, 6vw, 4rem);
  --t-h2:     clamp(1.9rem, 4.5vw, 3rem);
  --t-h3:     clamp(1.3rem, 3vw, 1.8rem);
  --t-body:   clamp(1.05rem, 2vw, 1.2rem);
  --t-card:   clamp(1rem, 1.8vw, 1.1rem);
  --t-sm:     clamp(.875rem, 1.5vw, .95rem);
  --t-xs:     clamp(.75rem, 1.2vw, .82rem);
  --t-label:  clamp(.65rem, 1vw, .72rem);

  --trans: .3s cubic-bezier(.4,0,.2,1);
  --shad: 0 4px 28px rgba(0,0,0,.5);
  --glow: 0 0 0 4px rgba(124,45,189,.3);
  --glow-fx: 0 0 0 4px rgba(224,48,144,.3);
}

/* ════════════════════════════════════════════════
   BASE / WRAPPER
════════════════════════════════════════════════ */
html, body {
  margin: 0; padding: 0;
  background: var(--pd);
  min-height: 100vh;
}

#nwwizard {
  width: 100vw;
  max-width: 100%;
  min-height: 100vh;
  background: var(--pd);
  color: var(--wh);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: var(--t-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Ambiente */
#nwwizard::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 15%, rgba(124,45,189,.14) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 85% 85%, rgba(224,48,144,.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* ════════════════════════════════════════════════
   TOP BAR
════════════════════════════════════════════════ */
.nw-topbar {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.125rem 3rem;
  border-bottom: 1px solid rgba(124,45,189,.3);
  background: rgba(7,7,26,.85);
  backdrop-filter: blur(14px);
  flex-wrap: wrap; gap: .875rem;
}
.nw-logo img { height: 46px; width: auto; display: block; }
.nw-topbar-hint { font-size: var(--t-xs); color: var(--fd); }

/* Barra de progreso */
.nw-progress { display: flex; align-items: center; flex: 1; max-width: 560px; margin: 0 auto; }
.nw-prog-step { display: flex; flex-direction: column; align-items: center; gap: 5px; flex: 1; position: relative; cursor: default; }
.nw-prog-step::after {
  content: ''; position: absolute; top: 16px; left: 50%; width: 100%; height: 2px;
  background: var(--pa); z-index: -1; transition: background var(--trans);
}
.nw-prog-step:last-child::after { display: none; }
.nw-prog-step.done::after { background: var(--pu); }
.nw-prog-dot {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--pa); background: var(--pc);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; color: var(--mu);
  transition: all var(--trans); z-index: 1; position: relative;
}
.nw-prog-step.active .nw-prog-dot { border-color: var(--pu); background: var(--pu); color: #fff; box-shadow: 0 0 0 5px rgba(124,45,189,.25); }
.nw-prog-step.done .nw-prog-dot { border-color: var(--gn); background: var(--gn); color: #fff; }
.nw-prog-step.done .nw-prog-dot::after { content: '✓'; font-size: .8rem; }
.nw-prog-step.done .nw-prog-num { display: none; }
.nw-prog-label { font-size: var(--t-xs); color: var(--mu); text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; transition: color var(--trans); }
.nw-prog-step.active .nw-prog-label { color: var(--pl); }
.nw-prog-step.done .nw-prog-label { color: var(--gn); }

/* ════════════════════════════════════════════════
   PASOS
════════════════════════════════════════════════ */
.nw-steps-wrap { position: relative; z-index: 1; width: 100%; overflow: hidden; }

.nw-step {
  display: none;
  min-height: calc(100vh - 88px);
  width: 100%;
  padding: 3.5rem 4rem 2.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: stepIn .38s ease forwards;
}
.nw-step.active { display: flex; }
.nw-step.going-back { animation: stepBack .38s ease forwards; }

@keyframes stepIn  { from{opacity:0;transform:translateX(48px)}  to{opacity:1;transform:none} }
@keyframes stepBack { from{opacity:0;transform:translateX(-48px)} to{opacity:1;transform:none} }

.nw-step-content { width: 100%; max-width: 1100px; }
.nw-step-content.wide { max-width: 1300px; }
.nw-step-content.center { text-align: center; display: flex; flex-direction: column; align-items: center; }

/* ════════════════════════════════════════════════
   TIPOGRAFÍA
════════════════════════════════════════════════ */
.nw-tag {
  font-size: var(--t-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: .22em; color: var(--pu); margin-bottom: .875rem;
  display: flex; align-items: center; gap: .5rem;
}
.nw-tag::before { content: ''; display: inline-block; width: 22px; height: 2px; background: var(--pu); }
.nw-tag.center { justify-content: center; }
.nw-tag.center::before { display: none; }

.nw-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--t-h2);
  font-weight: 700; color: var(--wh); line-height: 1.15; margin-bottom: .75rem;
}
.nw-title.hero { font-size: var(--t-hero); }
.nw-title span { color: var(--pl); }
.nw-title.success-title { font-size: var(--t-hero); }

.nw-sub {
  font-size: var(--t-body); color: var(--whs); line-height: 1.75; margin-bottom: 2.25rem; max-width: 680px;
}
.nw-sub.center { text-align: center; margin-left: auto; margin-right: auto; }
.nw-sub.big { font-size: var(--t-h3); }

/* ════════════════════════════════════════════════
   BIENVENIDA
════════════════════════════════════════════════ */
.nw-welcome-logo { width: 200px; margin: 0 auto 2rem; display: block; }
.nw-stats { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.nw-stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--pl); line-height: 1; }
.nw-stat-lbl { font-size: var(--t-xs); color: var(--mu); text-transform: uppercase; letter-spacing: .1em; margin-top: .3rem; }

/* ════════════════════════════════════════════════
   TARJETAS DE SERVICIO (selector principal)
════════════════════════════════════════════════ */
.nw-srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem; width: 100%;
}
.nw-srv-card {
  position: relative; cursor: pointer;
  padding: 1.625rem 1.5rem 1.375rem;
  background: var(--pc);
  border: 2px solid var(--pa);
  border-radius: 16px;
  transition: all .2s ease; user-select: none;
}
.nw-srv-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,45,189,0) 0%, rgba(124,45,189,.08) 100%);
  opacity: 0; transition: opacity .2s; pointer-events: none;
}
.nw-srv-card:hover { border-color: var(--pa2); transform: translateY(-2px); box-shadow: var(--shad); }
.nw-srv-card:hover::after { opacity: 1; }
.nw-srv-card.selected { border-color: var(--pu); background: var(--pcl); box-shadow: var(--glow), var(--shad); }
.nw-srv-card.selected::after { opacity: 1; }

.nw-srv-check {
  position: absolute; top: 1.125rem; right: 1.125rem;
  width: 28px; height: 28px; border: 2px solid var(--pa); border-radius: 7px;
  background: var(--pd);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.nw-srv-card.selected .nw-srv-check { background: var(--pu); border-color: var(--pu); }
.nw-srv-check-icon {
  width: 12px; height: 12px;
  border: 2.5px solid transparent;
  border-bottom-color: #fff; border-right-color: #fff;
  transform: rotate(45deg) translate(-1px,-2px);
  opacity: 0; transition: opacity .15s;
}
.nw-srv-card.selected .nw-srv-check-icon { opacity: 1; }

.nw-srv-ico { font-size: 2.25rem; line-height: 1; margin-bottom: .875rem; display: block; }
.nw-srv-name { font-size: var(--t-card); font-weight: 700; color: var(--wh); line-height: 1.25; margin-bottom: .375rem; padding-right: 2.25rem; }
.nw-srv-desc { font-size: var(--t-sm); color: var(--mu); line-height: 1.6; }
.nw-srv-card.selected .nw-srv-name { color: var(--pl2); }

/* ════════════════════════════════════════════════
   OPCIONES CHECKBOX
════════════════════════════════════════════════ */
.nw-opt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem; width: 100%;
}
.nw-opt-card {
  cursor: pointer; display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.375rem;
  background: var(--pc); border: 1.5px solid var(--pa); border-radius: 14px;
  transition: all .2s; user-select: none;
}
.nw-opt-card:hover { border-color: var(--pa2); }
.nw-opt-card.selected { border-color: var(--pu); background: var(--pcl); box-shadow: var(--glow); }
.nw-opt-tick {
  width: 24px; height: 24px; flex-shrink: 0;
  border: 2px solid var(--pa); border-radius: 6px; background: var(--pd);
  display: flex; align-items: center; justify-content: center;
  margin-top: .1rem; transition: all .2s;
}
.nw-opt-card.selected .nw-opt-tick { background: var(--pu); border-color: var(--pu); }
.nw-opt-tick::after {
  content: ''; display: none;
  width: 5px; height: 9px;
  border: 2px solid #fff; border-top: 0; border-left: 0;
  transform: rotate(42deg) translate(-1px,-2px);
}
.nw-opt-card.selected .nw-opt-tick::after { display: block; }
.nw-opt-body { flex: 1; min-width: 0; }
.nw-opt-name { display: block; font-size: var(--t-card); font-weight: 700; color: var(--wh); margin-bottom: .3rem; line-height: 1.3; }
.nw-opt-desc { display: block; font-size: var(--t-sm); color: var(--mu); line-height: 1.6; margin-bottom: .4rem; }
.nw-opt-price { display: inline-block; font-size: var(--t-sm); font-weight: 700; color: var(--pl); }
.nw-opt-badge {
  display: inline-block; font-size: .65rem; font-weight: 700; padding: 2px 8px; border-radius: 20px;
  background: rgba(124,45,189,.25); color: var(--pl); border: 1px solid rgba(124,45,189,.4);
  margin-left: .4rem; vertical-align: middle; letter-spacing: .04em;
}
.nw-opt-card.selected .nw-opt-name { color: var(--pl2); }

/* ════════════════════════════════════════════════
   RADIO CARDS
════════════════════════════════════════════════ */
.nw-radio-card {
  cursor: pointer; display: flex; align-items: flex-start; gap: 1.125rem;
  padding: 1.5rem 1.625rem;
  background: var(--pc); border: 2px solid var(--pa); border-radius: 16px;
  transition: all .2s; user-select: none; margin-bottom: 1rem; position: relative;
}
.nw-radio-card:hover { border-color: var(--pa2); }
.nw-radio-card.selected { border-color: var(--pu); background: var(--pcl); box-shadow: var(--glow); }
.nw-radio-dot {
  width: 24px; height: 24px; flex-shrink: 0;
  border: 2px solid var(--pa); border-radius: 50%; background: var(--pd);
  display: flex; align-items: center; justify-content: center;
  margin-top: .2rem; transition: all .2s;
}
.nw-radio-card.selected .nw-radio-dot { border-color: var(--pu); }
.nw-radio-dot::after { content: ''; width: 11px; height: 11px; border-radius: 50%; background: transparent; transition: background .15s; }
.nw-radio-card.selected .nw-radio-dot::after { background: var(--pu); }
.nw-radio-body { flex: 1; }
.nw-radio-name { font-size: var(--t-card); font-weight: 700; color: var(--wh); margin-bottom: .375rem; line-height: 1.3; }
.nw-radio-card.selected .nw-radio-name { color: var(--pl2); }
.nw-radio-desc { font-size: var(--t-sm); color: var(--mu); line-height: 1.7; }
.nw-radio-price { font-size: 1.25rem; font-weight: 800; color: var(--pl); white-space: nowrap; align-self: center; }
.nw-radio-pill {
  position: absolute; top: -.75rem; left: 1.375rem;
  font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 3px 12px; background: var(--pu); color: #fff; border-radius: 20px;
}

/* ════════════════════════════════════════════════
   INPUTS
════════════════════════════════════════════════ */
.nw-field { margin-bottom: 1.375rem; }
.nw-label {
  display: block; font-size: var(--t-label); font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--pu); margin-bottom: .625rem;
}
.nw-hint { display: block; font-size: var(--t-sm); color: var(--fd); font-style: italic; margin-bottom: .625rem; line-height: 1.6; }

.nw-input {
  width: 100%; padding: 1.125rem 1.25rem;
  background: var(--pcl); border: 1.5px solid var(--pa); border-radius: 12px;
  color: var(--wh); font-size: var(--t-body); font-family: inherit; line-height: 1.5;
  transition: border-color .2s, box-shadow .2s;
}
.nw-input::placeholder { color: var(--fd); }
.nw-input:focus { border-color: var(--pu); outline: none; box-shadow: var(--glow); }
textarea.nw-input { resize: vertical; min-height: 140px; }

/* SELECT PERSONALIZADO */
.nw-select-wrap { position: relative; }
.nw-select-wrap select {
  width: 100%; padding: 1.125rem 3rem 1.125rem 1.25rem;
  background: var(--pcl); border: 1.5px solid var(--pa); border-radius: 12px;
  color: var(--wh); font-size: var(--t-body); font-family: inherit;
  cursor: pointer; appearance: none; -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
.nw-select-wrap select option {
  background: #1a1540 !important;
  color: var(--wh) !important;
  padding: .5rem 1rem;
}
.nw-select-wrap select:focus { border-color: var(--pu); outline: none; box-shadow: var(--glow); }
.nw-select-arrow {
  position: absolute; right: 1.125rem; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: var(--pl);
}

.nw-g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* CONTADOR */
.nw-counter { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.nw-count-btn {
  width: 50px; height: 50px; background: var(--pa); border: 1.5px solid var(--pa2); border-radius: 12px;
  color: var(--pl); font-size: 1.6rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .15s; font-family: inherit;
}
.nw-count-btn:hover { background: var(--pu); border-color: var(--pu); color: #fff; }
.nw-count-input { width: 90px; text-align: center; font-size: 1.5rem; font-weight: 700; color: var(--pl); }
.nw-count-eq {
  font-size: var(--t-sm); color: var(--mu); padding: .5rem 1rem;
  background: var(--pc); border: 1px solid var(--pa); border-radius: 10px; white-space: nowrap;
}
.nw-count-eq strong { color: var(--pl); font-size: var(--t-body); }

/* ════════════════════════════════════════════════
   INFO BOXES
════════════════════════════════════════════════ */
.nw-info {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--pcl); border-left: 3px solid var(--pu); border-radius: 0 14px 14px 0;
  margin: 1.125rem 0; font-size: var(--t-sm); color: var(--whs); line-height: 1.8;
}
.nw-info .ico { font-size: 1.375rem; flex-shrink: 0; }
.nw-info strong { color: var(--pl); }
.nw-info.warn { border-left-color: var(--or); }
.nw-info.warn strong { color: var(--or); }
.nw-info.success { border-left-color: var(--gn); }
.nw-info.success strong { color: var(--gn); }

/* ════════════════════════════════════════════════
   PRECIO EN VIVO
════════════════════════════════════════════════ */
.nw-price-live {
  display: flex; align-items: center; gap: 2.5rem;
  padding: 1.375rem 2rem;
  background: var(--pcl); border: 1.5px solid var(--pa); border-radius: 14px;
  margin: 1.75rem 0; flex-wrap: wrap;
}
.nw-price-col .lbl { font-size: var(--t-xs); color: var(--pu); text-transform: uppercase; letter-spacing: .12em; margin-bottom: .2rem; }
.nw-price-col .val { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--wh); line-height: 1; }
.nw-price-col .val.mo { color: var(--pl); font-size: 1.5rem; }
.nw-price-note { font-size: var(--t-xs); color: var(--fd); max-width: 200px; line-height: 1.6; margin-left: auto; }

/* ════════════════════════════════════════════════
   BOTONES DE NAVEGACIÓN
════════════════════════════════════════════════ */
.nw-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: 2.25rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(40,32,90,.7); flex-wrap: wrap;
}
.nw-btn-back {
  display: flex; align-items: center; gap: .5rem;
  padding: .875rem 1.5rem;
  background: transparent; border: 1.5px solid var(--pa); border-radius: 12px;
  color: var(--mu); font-size: var(--t-sm); font-family: inherit; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.nw-btn-back:hover { border-color: var(--pa2); color: var(--whs); }
.nw-btn-next {
  display: flex; align-items: center; gap: .75rem;
  padding: 1.125rem 2.5rem;
  background: var(--pu); border: none; border-radius: 12px;
  color: #fff; font-size: 1.05rem; font-family: inherit; font-weight: 700;
  cursor: pointer; transition: all .2s; letter-spacing: .025em;
}
.nw-btn-next:hover { background: var(--pu2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(124,45,189,.45); }
.nw-btn-next:active { transform: translateY(0); }
.nw-btn-next:disabled { background: var(--fd); cursor: not-allowed; transform: none; box-shadow: none; }
.nw-nav-hint { font-size: var(--t-xs); color: var(--fd); }

/* ══ BOTÓN SUBMIT — FUCHSIA ══ */
.nw-btn-submit {
  width: 100%; justify-content: center;
  padding: 1.375rem 2.5rem;
  background: linear-gradient(135deg, var(--fx), var(--fx2));
  font-size: 1.2rem;
  border-radius: 14px;
  margin-bottom: .875rem;
  box-shadow: 0 6px 28px rgba(224,48,144,.35);
  letter-spacing: .03em;
}
.nw-btn-submit:hover {
  background: linear-gradient(135deg, var(--fx2), #ff60b8);
  box-shadow: 0 10px 36px rgba(224,48,144,.5);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════
   PANTALLA ÉXITO — GRANDE E IMPACTANTE
════════════════════════════════════════════════ */
.nw-success-wrap {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 2rem 0;
}

.nw-success-burst {
  position: relative; width: 110px; height: 110px;
  margin: 0 auto 2rem;
}
.nw-success-burst-circle {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--fx), var(--pu), var(--fx2));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  box-shadow: 0 0 0 0 rgba(224,48,144,.5);
  animation: successPulse 2s ease-out infinite;
}
@keyframes successPulse {
  0%  { box-shadow: 0 0 0 0 rgba(224,48,144,.5); }
  70% { box-shadow: 0 0 0 28px rgba(224,48,144,0); }
  100%{ box-shadow: 0 0 0 0 rgba(224,48,144,0); }
}
.nw-success-num {
  display: inline-flex; align-items: center; gap: .625rem;
  font-size: var(--t-sm); color: var(--mu);
  padding: .5rem 1.25rem; background: var(--pc); border: 1px solid var(--pa);
  border-radius: 30px; margin-bottom: 1.5rem;
}
.nw-success-num span { color: var(--pl); font-weight: 700; }

.nw-success-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--t-hero); font-weight: 700;
  line-height: 1.1; margin-bottom: 1rem; color: var(--wh);
}
.nw-success-title span { color: var(--fx3); }
.nw-success-msg {
  font-size: var(--t-h3); color: var(--whs); line-height: 1.75;
  max-width: 600px; margin: 0 auto 2.5rem;
}
.nw-success-msg strong { color: var(--pl2); }

.nw-success-cta-label {
  font-size: var(--t-xs); color: var(--mu); text-transform: uppercase;
  letter-spacing: .18em; margin-bottom: 1.375rem;
}

/* Botones de contacto — COLORIDOS Y GRANDES */
.nw-contact-cards {
  display: flex; gap: 1.125rem; justify-content: center; flex-wrap: wrap;
}
.nw-cc {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.375rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  font-size: 1.05rem; font-weight: 700;
  transition: all .2s;
  min-width: 230px; justify-content: center;
  border: 2px solid transparent;
}
.nw-cc-ico { font-size: 1.75rem; flex-shrink: 0; }
.nw-cc-txt small { display: block; font-size: var(--t-xs); font-weight: 400; text-transform: uppercase; letter-spacing: .1em; opacity: .75; margin-bottom: .1rem; }

/* WhatsApp — Verde */
.nw-cc.wa {
  background: #075e54;
  color: #fff;
  box-shadow: 0 6px 24px rgba(7,94,84,.45);
}
.nw-cc.wa:hover { background: #0a8574; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(7,94,84,.55); }

/* Email — Fuchsia */
.nw-cc.mail {
  background: linear-gradient(135deg, var(--fx), #c02070);
  color: #fff;
  box-shadow: 0 6px 24px rgba(224,48,144,.4);
}
.nw-cc.mail:hover { background: linear-gradient(135deg, var(--fx2), var(--fx)); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(224,48,144,.5); }

/* Teléfono — Morado */
.nw-cc.phone {
  background: linear-gradient(135deg, var(--pu), var(--pu2));
  color: #fff;
  box-shadow: 0 6px 24px rgba(124,45,189,.4);
}
.nw-cc.phone:hover { background: linear-gradient(135deg, var(--pu2), #b050f0); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(124,45,189,.5); }

/* ════════════════════════════════════════════════
   LOADING + ERROR
════════════════════════════════════════════════ */
.nw-loading {
  display: none; position: fixed; inset: 0;
  background: rgba(7,7,26,.9); backdrop-filter: blur(12px);
  z-index: 100; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
}
.nw-loading.visible { display: flex; }
.nw-spinner {
  width: 60px; height: 60px;
  border: 5px solid var(--pa); border-top-color: var(--pu);
  border-radius: 50%; animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.nw-loading-txt { font-size: var(--t-body); color: var(--whs); }

.nw-err-box {
  background: rgba(240,96,112,.09); border: 1.5px solid rgba(240,96,112,.4);
  border-radius: 14px; padding: 1.25rem 1.5rem;
  color: #fca5b8; font-size: var(--t-body);
  margin: 1.125rem auto; max-width: 560px; line-height: 1.75;
}
.nw-btn-retry {
  background: transparent; border: 1.5px solid var(--pa2); border-radius: 12px;
  color: var(--whs); padding: .875rem 1.75rem;
  font-family: inherit; font-size: var(--t-sm); font-weight: 600;
  cursor: pointer; transition: all .2s; margin-top: 1rem;
}
.nw-btn-retry:hover { border-color: var(--pu); color: var(--pl); }

.nw-privacy {
  font-size: var(--t-sm); color: var(--fd);
  text-align: center; margin-top: 1rem; line-height: 1.7;
}
.nw-privacy a { color: var(--pu); text-decoration: underline; }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nw-step { padding: 3rem 2.5rem 2rem; }
  .nw-topbar { padding: 1rem 2rem; }
}
@media (max-width: 800px) {
  .nw-srv-grid { grid-template-columns: 1fr 1fr; }
  .nw-step { padding: 2.5rem 1.75rem 2rem; }
  .nw-topbar { padding: .875rem 1.5rem; }
}
@media (max-width: 600px) {
  .nw-srv-grid { grid-template-columns: 1fr; }
  .nw-opt-grid { grid-template-columns: 1fr; }
  .nw-g2 { grid-template-columns: 1fr; }
  .nw-step { padding: 2rem 1.25rem 1.75rem; }
  .nw-topbar { padding: .875rem 1.125rem; }
  .nw-progress { display: none; }
  .nw-btn-next { width: 100%; justify-content: center; }
  .nw-btn-submit { padding: 1.25rem; }
  .nw-contact-cards { flex-direction: column; align-items: center; }
  .nw-cc { width: 100%; max-width: 340px; }
  .nw-success-title { font-size: clamp(2rem, 8vw, 3rem); }
  .nw-stats { gap: 1.5rem; }
  .nw-price-live { flex-direction: column; gap: 1rem; }
  .nw-price-note { margin-left: 0; }
}
@media (max-width: 400px) {
  .nw-step { padding: 1.5rem 1rem 1.5rem; }
  .nw-srv-card { padding: 1.25rem 1.125rem 1rem; }
}
