body {
  font-family: 'Poppins', sans-serif;
  padding-top: 70px;
}

h2 {
  font-family: 'Poppins', sans-serif;
}

h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.progress-container {
  height: 6px;
  background-color: #ddd;
  margin-bottom: 20px;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: #29ABE2;
  width: 0%;
  transition: width 0.3s ease-in-out;
}

.btn-primary {
  background-color: #29ABE2;
  border-color: #29ABE2;
}

.btn-primary:hover {
  background-color: #219ed0;
  border-color: #219ed0;
}

.btn-outline-primary {
  border-color: #29ABE2;
  color: #29ABE2;
}

.btn-outline-primary:hover {
  background-color: #29ABE2;
  color: white;
}

label {
  font-weight: 500;
}

input[type="number"]::placeholder {
  color: #bbb;
}

.selectable-module {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  background-color: #fff;
  transition: background-color 0.3s, border-color 0.3s;
  font-weight: 500;
}

.selectable-module:hover {
  border-color: #29ABE2;
  background-color: #f0faff;
}

.selectable-module.selected {
  background-color: #29ABE2;
  color: white;
  border-color: #29ABE2;
}

/* Base para módulos */
.selectable-module {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  background-color: #fff;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.selectable-module.selected {
  background-color: #29ABE2;
  border-color: #29ABE2;
  color: white;
}

.selectable-module h5 {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}

/* Estilos para íconos e imágenes dentro del módulo */
.selectable-module img,
.selectable-module i {
  height: 48px;
  width: 48px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

/* Responsividad */
@media (max-width: 576px) {
  .selectable-module {
    padding: 0.75rem;
  }

  .selectable-module h5 {
    font-size: 0.95rem;
  }

  .selectable-module img,
  .selectable-module i {
    height: 36px;
    width: 36px;
  }
}

input[type="number"]::-webkit-inner-spin-button {
  display: none;
}

.subpaso-opaco {
  opacity: 0.5;
  pointer-events: none;
}

.btn-group .btn {
  flex: 1;
  padding: 0.3rem 0.5rem;
  font-size: 0.9rem;
}

.btn-group .btn {
  flex: 1;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn-check:checked+.btn {
  background-color: #0d6efd;
  color: white;
  border-color: #0d6efd;
}

.btn-group .btn:hover {
  background-color: #e6f0ff;
}

label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.3rem;
  display: block;
}

.error-msg {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

@media (max-width: 576px) {
  .flota-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem;
  }

  .flota-item label {
    width: 100%;
  }

  .flota-item .input-group {
    width: 100% !important;
  }
}

body {
  background-image: url('/img/prueba20.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

@media (max-width: 576px) {
  .personal-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem;
  }

  .personal-item label {
    width: 100%;
  }

  .personal-item .input-group {
    width: 100% !important;
  }
}

.iti {
  width: 100%;
  position: relative;
}

.iti input[type="tel"] {
  padding-left: 50px !important;
  height: calc(1.5em + 0.75rem + 2px);
  padding-right: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  width: 100%;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  display: flex;
  align-items: center;
}

.personal-item .input-group input[type="number"] {
  max-width: 80px;
  min-width: 60px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  text-align: center;
}

.personal-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.personal-label {
  font-weight: 500;
  color: #333;
  font-size: 1rem;
}

.personal-controls {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.personal-controls input[type="number"] {
  width: 70px;
  text-align: center;
  padding: 0.3rem 0.5rem;
}

@media (max-width: 576px) {
  .personal-grid {
    grid-template-columns: 1fr;
  }

  .personal-controls {
    justify-content: flex-start;
  }

  .personal-controls input[type="number"] {
    width: 100%;
  }
}

.flota-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.flota-label {
  font-weight: 500;
  color: #333;
  font-size: 1rem;
}

.flota-controls {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.flota-controls input[type="number"] {
  width: 70px;
  text-align: center;
  padding: 0.3rem 0.5rem;
}

/* RESPONSIVE igual a personal */
@media (max-width: 576px) {
  .flota-grid {
    grid-template-columns: 1fr;
  }

  .flota-controls {
    justify-content: flex-start;
  }

  .flota-controls input[type="number"] {
    width: 100%;
  }
}

.texto-instruccion {
  color: #dc3545 !important;
  /* rojo Bootstrap, puedes usar red si prefieres */
  font-size: 0.9rem;
}
.sky-logo {
  font-family: 'Antonio', sans-serif;
  font-style: oblique;
  font-size: 1.7rem;
  display: inline;
  white-space: nowrap;
  user-select: none;
}

.sky-text {
  color: #29ABE2;
  margin-right: 1px; /* Separación leve y estética */
}

.fleeter-text {
  color: #555;
}

.copyright {
  color: #555;
  font-size: 0.8rem;
  vertical-align: super;
  margin-left: 2px;
}

.sky-navbar {
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  z-index: 1050;
  height: 70px;
}

.sky-navbar .navbar-brand {
  margin-left: 1.5rem; /* separa logo del borde */
}
