.pase {
    max-width: 380px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgb(0 0 0 / 0.1);
    position: relative;
    overflow: visible;
    padding: 24px 24px 16px;
    margin: auto;
  }

 

  /* Ruta */
  .ruta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    gap: 8px;
  }
  .ciudad {
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 0.05em;
  }
  .terminal {
    display: block;
    font-weight: 600;
    font-size: 11px;
    color: #a3a3a3;
    margin-top: 4px;
    text-transform: lowercase;
  }
  .terminal.destino {
    text-transform: uppercase;
  }
  .vuelo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 18px;
    color: #000;
  }
  
  /* Detalles fechas y horas */
  .detalles {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 16px;
    align-items: stretch;
    gap: 12px;
  }
   
  .detalle-col {
    width: 50%;
  }
  .etiqueta {
    font-size: 11px;
    font-weight: 700;
    color: #a3a3a3;
    margin-bottom: 4px;
    user-select: none;
  }
  .valor {
    font-weight: 700;
    font-size: 14px;
  }

  /* Pasajero y asiento */
  .pasajero-asiento {
    display: flex;
    justify-content: space-between;
    border-top: 2px dashed #ccc;
    border-bottom: 2px dashed #ccc;
    padding: 16px 0;
    margin-bottom: 24px;
  }
  .pasajero-asiento .valor {
    text-transform: uppercase;
    line-height: 1.2;
  }

