.card-bienvenida {
    background: linear-gradient(0deg, #98c3f5 37.5%, #b0daf9  60%)
}
.cuerpo-card{
    width: 100%; 
}
.card-text-1{
    font-size: 18px;
}
.card-text-2{
    font-size: 15px;
}
@media only screen and (max-width: 600px) {

.cuerpo-card{
    width: 100%; 
}
.card-text-1 {
width: 60%; /* Ajusta el ancho del texto */
font-size: 1.2rem;
color: #000000;
}
.card-text-2 {
width: 60%; /* Ajusta el ancho del texto */
font-size: 0.8rem;
color: #000000;
}



}

/* Cuando el contenedor tiene un ancho mayor a 900px */
@media (min-width: 900px) and (max-width: 1131px) {
.card .card-body {
    padding: 2rem 0.5rem;
}

}
@media (min-width: 1132px) and (max-width: 1450px) {
.card .card-body {
    padding: 2rem 0.5rem;
}
}
.dotted-line {
    border-top: 2px dotted #5252525d; /* Línea punteada */
    width: 100%; /* Ancho de la línea */
}

.select2-container--default .select2-selection--single {
    height: calc(2.2em + .75rem + 2px);
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1.15rem;
    line-height: 1.5;
    border-radius: .6rem;
    border: 1px solid #ced4da;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.5;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: calc(2.2em + .75rem + 2px);
}
/* Header QroTaxi */
.header-qrotaxi {
  background-color: #eff6fd;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  white-space: nowrap;
  z-index: 50;
}

.header-qrotaxi .inner {
  background-color: #ebf3f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 40px;
  padding-right: 40px;

}

.header-qrotaxi nav {
  display: flex;
  align-items: center;
  gap: 80px; /* espacio entre links */
  font-size: 1rem;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-qrotaxi nav a {
  text-decoration: none;
  color: inherit;
  transition: color .3s;
}

.header-qrotaxi nav a:hover {
  color: #1e89ca;
}

.header-qrotaxi .social {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #1e89ca !important;
}
.text-white {
  color: #fff !important;
}
.text-secondary {
  --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}

.header-qrotaxi .social a,
.header-qrotaxi .social button {
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity .3s;
}

.header-qrotaxi .social a:hover,
.header-qrotaxi .social button:hover {
  opacity: .8;
}

/* Logo dentro del nav */
.header-qrotaxi .logo {
 height: 30px;    /* controlar altura */
  width: auto;     /* mantén proporción */
  max-width: none;
  object-fit: contain;
      max-width: 100%;
}

/* botón “hamburger” oculto en desktop */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #1e89ca;
  cursor: pointer;
  padding: 0;
}

/* menú móvil, oculto por defecto */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #ebf3f7;
  border-top: 1px solid #d1d5db;
}

/* estilos de los enlaces dentro del móvil */
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 40px;
}

.mobile-menu nav a {
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .3s;
}

.mobile-menu nav a:hover {
  color: #1e89ca;
}

.mobile-menu .social {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 12px 0 20px;
}

/* cuando pulsemos el toggle, mostramos el menú */
.mobile-menu.show {
  display: flex;
}

/* Media query para móviles */
@media (max-width: 768px) {
  .header-qrotaxi nav.main-nav,
  .header-qrotaxi .social {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

.timeline-dots {
  width: 0;
  margin: .5rem 0;
  border-left: 4px dotted #D1D5DB; /* 4px de grosor + color */
}
.responsive-padding {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  @media (min-width: 768px) {
    .responsive-padding {
      padding-left: 25rem;
      padding-right: 25rem;
    }
  }

