.vehiculo-page {
  min-height: 100vh;
  background: #fff;
  font-family: "Barlow", sans-serif;
  color: #0033a0;
}

.vehiculo-page .header {
  background: var(--background-header, #fff);
  padding: 0.75rem 0 0.5rem;
}

.vehiculo-page .brand-logo {
  height: 54px;
  width: 230px;
  background: var(--logo);
  background-repeat: no-repeat;
  background-size: 230px;
  background-position: center left;
}

.vehiculo-wrap {
  max-width: 560px;
  padding: 2rem 1rem 4rem;
  margin: 0 auto;
}

.vehiculo-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0033a0;
  margin-bottom: 1.5rem;
}

.vehiculo-alert {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: #e8f4fc;
  border-radius: 8px;
  padding: 1rem 1.1rem;
  margin-bottom: 2rem;
  color: #00aec7;
  font-size: 0.95rem;
  line-height: 1.45;
}

.vehiculo-alert p {
  margin: 0;
}

.vehiculo-alert__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #00aec7;
  color: #fff;
  font-weight: 700;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.vehiculo-pregunta {
  text-align: center;
  font-weight: 600;
  color: #0033a0;
  margin-bottom: 1rem;
}

.vehiculo-radios {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.vehiculo-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  cursor: pointer;
  font-weight: 500;
  color: #0033a0;
}

.vehiculo-radio input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #0033a0;
}

.vehiculo-aviso {
  text-align: center;
  color: #53565a;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}

.vehiculo-campos {
  margin-top: 1.25rem;
}

.campo-vehiculo {
  position: relative;
  margin-bottom: 1.35rem;
}

.campo-vehiculo label {
  position: absolute;
  left: 0.75rem;
  top: -0.55rem;
  background: #fff;
  padding: 0 0.3rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #9a9a9a;
  z-index: 1;
  margin: 0;
  pointer-events: none;
}

.campo-vehiculo.is-filled label,
.campo-vehiculo:focus-within label {
  color: #00aec7;
}

.campo-vehiculo input,
.campo-vehiculo select {
  width: 100%;
  height: 48px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  padding: 0 0.9rem;
  font-size: 0.95rem;
  color: #464646;
  background: #fff;
  appearance: none;
}

.campo-vehiculo select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2rem;
}

.campo-vehiculo input:focus,
.campo-vehiculo select:focus {
  outline: none;
  border-color: #00aec7;
}

.vehiculo-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.vehiculo-actions--single {
  margin-top: 2.5rem;
}

.btn-vehiculo {
  min-width: 160px;
  height: 48px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #0033a0;
  cursor: pointer;
  padding: 0 1.5rem;
  transition: background 0.2s, color 0.2s;
}

.btn-vehiculo--primary {
  background: #e3e829;
  color: #0033a0;
  border-color: #e3e829;
}

.btn-vehiculo--primary:hover {
  background: #00aec7;
  border-color: #00aec7;
  color: #fff;
}

.btn-vehiculo--secondary {
  background: #fff;
  color: #0033a0;
}

.btn-vehiculo--secondary:hover {
  background: #f5f8ff;
}

.loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e3e829;
  border-top-color: #0033a0;
  border-radius: 50%;
  animation: vehiculo-spin 0.8s linear infinite;
}

@keyframes vehiculo-spin {
  to {
    transform: rotate(360deg);
  }
}
