/* Archivo de estilos globales para TripMarket */

/* Ejemplo: Logo */
.logo-tripmarket {
  height: 40px;
  width: auto;
  background-color: #fff;
  border-radius: 8px;
  padding: 2px;
}

/* Ejemplo: Contenedor principal */
.container-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

/* Ejemplo: Imagen de viaje */
.img-trip {
  object-fit: cover;
  max-height: 140px;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #dee2e6;
}

/* Ejemplo: Botón deshabilitado oculto */
.btn-invisible {
  visibility: hidden;
}

/* Tarjetas principales */
.reservation-card, .reservations-card, .card-trip, .order-card, .section-card, .fare-card, .hero-card-main, .stat-card {
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid #dee2e6;
  box-shadow: 0 10px 30px rgba(15,23,42,0.08);
}

/* Badge pill suave */
.badge-pill-soft {
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 11px;
}

/* Nav blur */
.nav-blur {
  backdrop-filter: blur(16px);
  background: #fff !important;
  border-bottom: 1px solid rgba(148,163,184,0.25);
}

/* Pill meta */
.pill-meta {
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 11px;
  border: 1px solid rgba(148,163,184,0.6);
}

/* Hero pill */
.hero-pill {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid rgba(148,163,184,0.6);
  background: #eef2ff;
  color: #1f2937;
}

/* Hero gradient text */
.hero-gradient-text {
  background: linear-gradient(to right, #e5e7eb, #226BBD);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Stat dot */
.stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22B9A9;
}

/* Code chip */
.code-chip {
  border-radius: .6rem;
  background: #0f172a;
  border: 1px solid rgba(15,23,42,0.8);
  font-size: 11px;
}

/* Puedes seguir agregando más clases según los estilos repetidos encontrados */
