/* Modal de captura previa a WhatsApp. Usa las variables del tema para no
   introducir un lenguaje visual nuevo; si alguna falta, el respaldo mantiene
   el bloque legible. */
.vc-wa-ovl {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 12000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(16, 15, 17, .55);
}
.vc-wa-caja {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: var(--white-color, #fff);
  border-radius: 20px;
  padding: 28px 26px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
  text-align: center;
}
.vc-wa-x {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: var(--text-color, #646464);
  cursor: pointer;
}
.vc-wa-titulo {
  margin: 0 0 6px;
  font-family: var(--accent-font, inherit);
  font-size: 24px;
  line-height: 1.15;
  color: var(--primary-color, #100F11);
}
.vc-wa-sub {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-color, #646464);
}
.vc-wa-input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--divider-color, rgba(16, 15, 17, .12));
  border-radius: 15px;
  font-size: 16px; /* 16px o iOS hace zoom al enfocar */
  color: var(--primary-color, #100F11);
  background: #fff;
}
/* Dos campos apilados: sin esto se tocan, porque el input no traía margen
   (antes solo había uno). */
.vc-wa-input + .vc-wa-input { margin-top: 10px; }
.vc-wa-input:focus {
  outline: none;
  border-color: var(--accent-color, #FFB120);
  box-shadow: 0 0 0 3px rgba(255, 177, 32, .18);
}
.vc-wa-go {
  width: 100%;
  min-height: 52px;
  margin-top: 12px;
  border: 0;
  border-radius: 15px;
  background: var(--accent-color, #FFB120);
  color: var(--primary-color, #100F11);
  font-family: var(--accent-font, inherit);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .3s ease, color .3s ease;
}
.vc-wa-go:hover {
  background: var(--primary-color, #100F11);
  color: #fff;
}
.vc-wa-skip {
  margin-top: 12px;
  border: 0;
  background: transparent;
  font-size: 13px;
  color: var(--text-color, #646464);
  text-decoration: underline;
  cursor: pointer;
}
