/* Hereda estilos de index.css */

/* TÍTULO ESPECÍFICO PARA VIPs */
h1.section-title {
  color: var(--brand);
  font-family: 'Poppins', sans-serif;
}

/* ANIMACIONES DE ENTRADA */
.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; }
.item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CARDS VIP */
.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);
}

.blur-lock {
  filter: grayscale(0.8) brightness(0.6);
  position: relative;
}

.blur-lock::after {
  content: 'PRÓXIMAMENTE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.85);
  color: var(--brand);
  padding: 10px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 8px;
  border: 1px solid var(--brand);
  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); }
}

/* ITEMS VIP */
.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);
}

.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 VIPS CENTRADO
   =========================== */

/* Mobile: 1 columna */
.grid-4 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  justify-content: center;  /* centra el bloque entero */
  justify-items: center;    /* centra cada tarjeta */
}

/* Tablet: 2 columnas centradas */
@media screen and (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

/* Desktop: 3 columnas centradas */
@media screen and (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(3, minmax(300px, 1fr));
  }
}

/* ===========================
   BENEFICIOS VIP
   =========================== */
.vip-info {
  margin-top: 60px;
}

.benefits-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;        /* mobile: 1 */
  max-width: 1200px;                  /* limita ancho */
  margin: 30px auto 0;                /* centrado horizontal */
  justify-items: stretch;             /* tarjetas ocupan el ancho de su celda */
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);  /* tablet: 2 */
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);  /* desktop: 3 */
  }
}

.benefit-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);   /* leve profundidad */
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  border-radius: 12px 12px 0 0;
}

.benefit-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: var(--brand);
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.easter-egg {
  color: inherit;             /* mismo color del texto */
  text-decoration: none;      /* sin subrayado */
  cursor: pointer;
  transition: color 0.3s;
}

.easter-egg:hover {
  color: var(--brand);        /* cambia a tu color de marca al pasar el mouse */
}
