body {
    background-image: url(../uploads/SERPIENTES.gif);
    background-color: #f4eaff;
    font-family: 'Segoe UI', sans-serif;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    
}
.header {
    background-color: #7b2cbf;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.stepbar {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.step {
    padding: 0.5rem 1rem;
    background-color: #fff;
    border-radius: 50px;
    margin: 0 5px;
    font-size: 14px;
    border: 2px solid #7b2cbf;
    color: #7b2cbf;
}
.step.active {
    background-color: #ffce00;
    color: black;
    font-weight: bold;
}
.globe {
    width: 280px;
    height: 280px;
    background-image: url('img/globo_mundo.png');
    background-size: cover;
    border-radius: 50%;
    margin: auto;
    position: relative;
}
.destinos {
    margin-top: 2rem;
    text-align: center;
}
.destino-item {
    display: inline-block;
    margin: 0.5rem;
    text-align: center;
    width: 10em;;
}
.destino-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #7b2cbf;
    object-fit: cover;
}
.footer {
    background-color: #7b2cbf;
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}
.btn-purple {
    background-color: #7b2cbf;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    transition: background 0.3s;
}
.btn-purple:hover {
    background-color: #5a189a;
}
.container_trans {
    max-width: 800px;
    margin-top: 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2em;
}

/* Index */

.img-global {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
.destino-item {
    display: inline-block;
    /* margin: 0.5rem; */
    text-align: center;
    width: 10em;
    margin-left: auto;
    margin-right: auto;
}
/* Index fin */

/* Pasajeros */
.actividad-box {
    background-color: white;
    border: 2px solid #7b2cbf;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    width: 180px;
    text-align: center;
    position: relative;
  }
  .linea-tiempo {
    width: 100%;
    height: 5px;
    background: #333;
    margin: 40px 0;
    position: relative;
  }
  .total-horas {
    font-size: 1.2rem;
    font-weight: bold;
  }
  .alerta {
    color: red;
    font-weight: bold;
  }
  .text_contador {
    font-size: x-large;
    font-weight: bold;
    color: #ffc32e;
}
/* Pasajeros fin*/



/* destino modal y cards */

/* Estilos para las tarjetas de la lista (ya los tenías) */
  .destino-item {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .destino-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    width: 80%;
  }
  .destino-item img {
    object-fit: cover;
    height: 10em;
    width: 100%;
  }

  /* --- NUEVOS ESTILOS PARA EL MODAL --- */

  /* Estilo para el header morado que intentaste */
  .bg-purple-500 {
    background-color: #6f42c1; /* Un púrpura estándar de Bootstrap */
  }

  /* Contenedor del modal */
  #modalDestino .modal-content {
    border: none;
    border-radius: 0.5rem;
  }

  /* Nombre del Hotel */
  #modalHotelNombre {
    font-weight: bold;
    font-size: 1.5rem;
    color: #333;
  }

  /* Ubicación del Hotel */
  #modalHotelUbicacion {
    font-size: 0.9rem;
    color: #6c757d;
  }

  /* Estrellas */
  .rating-stars {
    color: #fdcc0d;
    font-size: 1.1rem;
  }

  /* Bloque de precios */
  .price-block {
    text-align: right;
  }
  .ahorro {
    background-color: #198754;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    font-weight: bold;
  }
  .precio-tachado {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 0.9rem;
  }
  .precio-final {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1e3a8a; /* Un azul oscuro */
  }
  .precio-final-label,
  .precio-total-label {
    font-size: 0.8rem;
    color: #6c757d;
  }
  .img_card_100
  {
    width: 100%;
  }
/* fin modal y cards */


/* style aderido  */
.row { display: flex; flex-wrap: wrap; }
  .col { flex: 1; padding: 10px; }
  .actividad-box {
    border: 2px solid #a569bd;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 15px;
    background: #fff;
    /*  width: 90%;*/
  }
  @media (max-width: 700px) {
    .actividad-box {
         width: 100%;
    }
  }
  .carretera {
    background: linear-gradient(to bottom, #c3ff00 5%, #ffffff 5%, #fffe00 10%, #000000 10%) repeat-y;
    background-size: 100% 40px;
    width: 120px;
    height: 500px;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px;
    border-radius: 10px;
    border: 1px dashed #000000;
    margin: 0 auto;
  }
  .carro {
    width: 60px;
    height: 60px;
    background: url('../uploads/pagina/carro.png') no-repeat center;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: top 0.4s ease;
  }
 .actividades-itinerario {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 70px; /* espacio debajo del carro */
  }

  .actividad-icono {
    width: 100px;
    text-align: center;
    margin: 10px 0;
    font-size: 14px;
  }
  
.clock {
  position: relative;
  width: 60px;
  height: 60px;
  border: 2px solid #333;
  border-radius: 50%;
  margin: 0 auto;
}
.hand {
  position: absolute;
  width: 50%;
  height: 2px;
  background: black;
  top: 50%;
  left: 50%;
  transform-origin: left center;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.hand.hour {
  width: 35%;
  height: 3px;
  background: #333;
}
.hand.minute {
  width: 45%;
  height: 2px;
  background: red;
}
.center {
  position: absolute;
  width: 8px;
  height: 8px;
  background: black;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.actividad-box.activa {
  border: 2px solid #007bff; /* Azul bootstrap */
  background-color: #f0f8ff; /* Azul clarito */
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
.container_aderido {
    max-width: 100%;
    margin-top: 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2em;
}
/* Fin: style aderdo */

/* Estilos para pagos */
.form-container {
      max-width: 800px;
      margin: 30px auto;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
      background-color: #fff;
    }

/*Fin estilo para pagos */