/* VEHÍCULOS */
.grid {
  display: grid;
  gap: 40px;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.item {
  display: flex;
  flex-direction: column;
}

.thumb {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  aspect-ratio: 16/10;
  background: var(--panel);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.9) contrast(1.05);
  transition: .4s;
}

.thumb:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.1);
}

.item-body {
  padding: 20px;
}

.item-body strong {
  font-size: 20px;
  color: var(--brand);
  display: block;
  margin-bottom: 8px;
}

.tag {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--muted);
  transition: .2s;
}

.chip:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* DETALLES DE VEHÍCULOS */
.vehiculos-detalles .card {
  margin-bottom: 20px;
}

.vehiculos-detalles strong {
  font-size: 18px;
  color: var(--brand);
  display: block;
  margin-bottom: 8px;
}

.vehiculos-detalles p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

/* INFO EXTRA (caja verde) */
.vehiculos-detalles .card:last-child {
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid var(--brand);
}

.vehiculos-detalles .card:last-child strong {
  color: var(--brand);
}

.btn-discord {
  display: inline-block;
  margin-top: 12px;
  background: #5865F2;
  color: #fff;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  transition: .2s;
}

.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(88, 101, 242, .4);
}
