@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=Nunito:wght@400;600;700&display=swap');

/* ===== WRAPPER ===== */
.vn-parking-form {
  font-family: 'Nunito', sans-serif;
  max-width: 520px;
  width: 100%;
}

/* ===== TÍTULOS ===== */
.vn-pf-titulo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e1c19;
  margin: 0 0 4px;
  line-height: 1.2;
}
.vn-pf-sub {
  font-size: 13px;
  color: #9e9488;
  margin: 0 0 24px;
}

/* ===== GRUPOS Y FILAS ===== */
.vn-pf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.vn-pf-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}
.vn-pf-group:last-child { margin-bottom: 0; }

/* ===== LABELS ===== */
.vn-parking-form label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9e9488;
}

/* ===== INPUTS ===== */
.vn-parking-form input[type="text"],
.vn-parking-form input[type="email"],
.vn-parking-form input[type="tel"],
.vn-parking-form input[type="date"] {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ede8e0;
  border-radius: 6px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #1e1c19;
  background: #fff;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.vn-parking-form input:focus {
  border-color: #4a8fb5;
  box-shadow: 0 0 0 3px rgba(74,143,181,.12);
}

/* ===== LEYENDA ===== */
.vn-leyenda {
  display: flex;
  gap: 14px;
  font-size: 11px;
  color: #9e9488;
  margin-bottom: 9px;
  flex-wrap: wrap;
  align-items: center;
}
.vn-leyenda span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.vn-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  border: 1.5px solid;
  flex-shrink: 0;
}
.vn-libre { border-color: #d6cfc4; background: #fff; }
.vn-sel   { border-color: #2d6a8e; background: #2d6a8e; }
.vn-ocup  { border-color: #d6cfc4; background: #ede8e0; }

/* ===== MAPA PLAZAS ===== */
.vn-plazas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin-bottom: 14px;
}
.vn-plaza {
  aspect-ratio: 1 / 1;
  border: 1.5px solid #ede8e0;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px;
  transition: all .2s ease;
  font-family: 'Nunito', sans-serif;
}
.vn-plaza-ico { font-size: 14px; line-height: 1; }
.vn-plaza-num { font-size: 11px; font-weight: 700; color: #1e1c19; line-height: 1; }

.vn-plaza:hover:not(.vn-ocupada) {
  border-color: #4a8fb5;
  background: #d4e9f5;
}
.vn-plaza:hover:not(.vn-ocupada) .vn-plaza-num { color: #2d6a8e; }

.vn-plaza.vn-seleccionada {
  border-color: #2d6a8e;
  background: #2d6a8e;
}
.vn-plaza.vn-seleccionada .vn-plaza-num { color: #fff; }

.vn-plaza.vn-ocupada {
  background: #f0ede8;
  border-color: #e0dbd4;
  cursor: not-allowed;
  opacity: .55;
}

/* ===== PRECIO ===== */
.vn-precio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f4ef;
  border: 1px solid #ede8e0;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.vn-precio-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9e9488;
}
.vn-precio-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d6a8e;
  line-height: 1;
}

/* ===== BOTÓN SUBMIT ===== */
.vn-btn-submit {
  width: 100%;
  padding: 14px 24px;
  background: #2d6a8e;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .2s;
}
.vn-btn-submit:hover:not(:disabled) {
  background: #4a8fb5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,142,.3);
}
.vn-btn-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}

/* ===== MENSAJES ===== */
.vn-msg {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
}
.vn-msg.ok  {
  display: block;
  background: rgba(107,124,62,.1);
  border: 1px solid #6b7c3e;
  color: #4a5e2a;
}
.vn-msg.err {
  display: block;
  background: rgba(180,50,50,.07);
  border: 1px solid rgba(180,50,50,.3);
  color: #b43232;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .vn-pf-row { grid-template-columns: 1fr; }
  .vn-plazas { grid-template-columns: repeat(4, 1fr); }
}
