/* Contenedor principal */
#pdFormWrapper {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: "Open Sans", Arial, sans-serif;
  color: #333;
}

/* Barra de progreso */
#pd-progress {
  display: flex;
  justify-content: center;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

#pd-progress li {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  background: #ccc;
  color: #fff;
  text-align: center;
  margin: 0 12px;
  font-weight: bold;
  position: relative;
}

/* Línea que conecta los pasos */
#pd-progress li::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 35px;
  width: 45px;
  height: 2px;
  background: #ccc;
}

#pd-progress li:last-child::after {
  display: none;
}

/* Paso activo */
#pd-progress li.active {
  background: #47a742; /* verde FleetCentinel */
}

#pd-progress li.active::after {
  background: #47a742;
}

/* Títulos */
#pdFormWrapper h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #222;
}

/* Inputs y labels */
#pdFormWrapper label {
  display: block;
  font-size: 16px;
}

.politica_priv {
    margin-bottom: 15px;
}

#pdFormWrapper input[type="text"],
#pdFormWrapper input[type="email"],
#pdFormWrapper input[type="tel"],
#pdFormWrapper input[type="number"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
}

.p_sub_h2 {
    color: #1e1e1e;
    margin-bottom: 15px;
}

.h3_sub_h2{
    margin: 0 !important;
}

/* Botones */
#pdFormWrapper button {
  padding: 10px 20px;
  background: #47a742;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#pdFormWrapper button:hover {
  background: #3a9138;
}

#pdFormWrapper button.pd-prev {
  background: #666;
}

#pdFormWrapper button.pd-prev:hover {
  background: #444;
}

/* Vehículos */
.vehiculos-opciones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.vehiculo-option img {
  width: 150px;
  border: 3px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}

.vehiculo-option img:hover {
  transform: scale(1.15);
}

a.boton_pdf {
  margin-top: 10px;
  display: inline-block;
  padding: 10px 20px;
  background: #47a742 !important; /* verde FleetCentinel */
  color: #fff !important;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

a.boton_pdf:hover {
  background: #3a9138 !important;
}

#pd-overlay-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.9);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #333;
}

#pd-overlay-loader .loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #47a742;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.p_loader {
  color: #212930;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Solo móviles (pantallas de hasta 767px de ancho) */
@media (max-width: 767px) {

  .vehiculos-opciones {
    gap: 20px !important;
  }

  .vehiculo-option img {
    max-width: 100px !important;
    height: auto !important;
}

}