/* Hereda estilos de index.css */

/* TÍTULO */
h1.section-title {
  color: var(--brand);
  font-family: 'Poppins', sans-serif;
}

/* ANIMACIÓN */
.item {
  animation: fadeUp 0.6s ease-out forwards;
  opacity: 0;
}
.item:nth-child(1) { animation-delay: 0.1s; }
.item:nth-child(2) { animation-delay: 0.2s; }
.item:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* TARJETAS BASES */
.vip-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 0.4s ease;
}

.vip-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* IMAGEN */
.thumb {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
  transition: .4s;
}

.thumb:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.1);
}

/* CONTENIDO */
.item-body {
  padding: 20px;
}

.item-body strong {
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text);
}

.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: 13px;
  font-family: 'Poppins', sans-serif;
  color: var(--muted);
}

/* GRID */
.grid-4 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  justify-items: center;
}

@media screen and (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media screen and (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(3, minmax(300px, 1fr));
  }
}

/* INFO CARD */
.card.pad {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

/* Easter Egg */
.easter-egg {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
}

.easter-egg:hover {
  color: var(--brand);
}

.blur-lock {
  position: relative;
  overflow: hidden;
  filter: grayscale(0.8) brightness(0.5);
}

.blur-lock::after {
  content: 'PRÓXIMAMENTE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.75);
  color: var(--brand);
  padding: 10px 20px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}
