/* Listagem de passaportes - compra */
.passaporte-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.passaporte-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.passaporte-card-imagem {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.passaporte-card-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.passaporte-card-imagem .bi-image {
  font-size: 3rem;
  color: #bbb;
}

.passaporte-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.passaporte-card-titulo {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  line-height: 1.3;
}

.passaporte-card-descricao {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.75rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.passaporte-card-meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 1rem;
}

.passaporte-card-preco {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 1rem;
}

.passaporte-card .btn-comprar {
  margin-top: auto;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 8px;
}

.passaportes-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #666;
}

.passaportes-empty .bi-passport {
  font-size: 4rem;
  opacity: 0.4;
  margin-bottom: 1rem;
}
