/* =========================================================
   transferencia-de-vehiculos.css
   Estilos específicos de la página "Transferencia de Vehículos"
   Depende de las variables y clases base definidas en styles.css
   ========================================================= */
.tv-hero-subtext {
  margin-top: 10px;
  font-size: 17px;
}
.tv-section-intro {
  max-width: 760px;
  margin-bottom: 28px;
}
.tv-form-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted, #6f7683);
  background: rgba(0, 31, 82, 0.04);
  border: 1px solid rgba(0, 31, 82, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
}
.tv-form-note a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.tv-svg-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Bloque CTA azul */
.tv-cta-block {
  background: var(--blue);
  color: #ffffff;
}
.tv-cta-block .eyebrow {
  color: #c6cb61;
}
.tv-cta-block .eyebrow::after,
.tv-cta-block .eyebrow::before {
  background: #c6cb61;
}
.tv-cta-block .display-title {
  color: #ffffff;
  font-size: 38px;
}
.tv-cta-block .tv-cta-text {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
}
.tv-links-title {
  font-size: 26px;
  margin-bottom: 18px;
}
/* Estado del formulario (mensajes dinámicos vía JS) */
.form-message {
  min-height: 18px;
}
.form-message.is-success {
  color: var(--olive-dark, #4d671e);
}
.form-message.is-error {
  color: var(--danger, #9f1d1d);
}
/* Lista de archivos adjuntos seleccionados */
.file-list:empty {
  display: none;
}
.file-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.file-list button {
  background: none;
  border: none;
  color: var(--danger, #9f1d1d);
  font-weight: 900;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}
/* Estado deshabilitado del botón de envío mientras se procesa */
.btn[disabled] {
  opacity: .6;
  cursor: not-allowed;
  transform: none !important;
}
@media (max-width: 680px) {
  .tv-cta-block .display-title {
    font-size: 30px;
  }
  .tv-hero-subtext {
    font-size: 16px;
  }
}
