/* ==========================================================================
   Love Zombies — Página de Normas
   (usa las variables y componentes definidos en style.css)
   ========================================================================== */

.normas-hero {
  position: relative;
  padding: 170px 0 70px;
  text-align: center;
  overflow: hidden;
}
.normas-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(184,18,27,0.2), transparent 55%),
    linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
  z-index: -1;
}
.normas-lead {
  color: var(--gray);
  max-width: 640px;
  margin: 18px auto 0;
  font-size: 1.05rem;
}

.normas-section { padding: 90px 0; }
.normas-section.alt {
  background: var(--black-2);
  border-top: 1px solid var(--gray-dark);
  border-bottom: 1px solid var(--gray-dark);
}
.normas-section-sub {
  color: var(--gray);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.normas-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 880px;
  margin: 0 auto;
}
.normas-item {
  display: flex;
  gap: 22px;
  border-left: 3px solid var(--red);
  background: var(--black-3);
  padding: 26px 28px;
}
.normas-item .num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--red-bright);
  min-width: 46px;
  line-height: 1;
}
.normas-item-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: var(--white);
}
.normas-item-body p {
  color: var(--gray);
  margin-bottom: 10px;
}
.normas-item-body p:last-child { margin-bottom: 0; }
.normas-item-body p strong { color: var(--white); }
.normas-item-body .highlight-line {
  font-family: var(--font-heading);
  color: var(--red-bright);
  letter-spacing: 1px;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.normas-item-body ul {
  margin: 6px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.normas-item-body ul li {
  color: var(--gray);
  padding-left: 16px;
  position: relative;
}
.normas-item-body ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--red);
}

/* ---------- Identificaciones ---------- */
.id-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.id-card {
  background: var(--black-3);
  border: 1px solid var(--gray-dark);
  border-top: 4px solid var(--red);
  padding: 24px 26px;
}
.id-card.chip-verde { border-top-color: #3ecf6e; }
.id-card.chip-rojo { border-top-color: var(--red-bright); }
.id-card.chip-amarillo { border-top-color: #f2c94c; }
.id-card.chip-neutro { border-top-color: var(--gray-dark); }
.id-chip {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
  color: var(--black);
}
.chip-verde .id-chip { background: #3ecf6e; }
.chip-rojo .id-chip { background: var(--red-bright); color: var(--white); }
.chip-amarillo .id-chip { background: #f2c94c; }
.chip-neutro .id-chip { background: var(--gray-dark); color: var(--white); }
.id-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--white);
}
.id-card p { color: var(--gray); font-size: 0.95rem; }

/* ---------- Norma principal (cierre) ---------- */
.normas-final {
  text-align: center;
  padding: 100px 0 130px;
}
.normas-final h2 {
  font-family: var(--font-hero);
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.05;
  color: var(--white);
  text-shadow: 0 0 20px rgba(184,18,27,0.7), 3px 3px 0 var(--red-dark);
  max-width: 820px;
  margin: 0 auto 28px;
}
.normas-final p {
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 12px;
}
.normas-final .shout {
  font-family: var(--font-heading);
  color: var(--red-bright);
  letter-spacing: 1.5px;
  font-size: 1.3rem;
  margin-top: 30px;
}
.normas-final .btn { margin-top: 34px; }

@media (max-width: 700px) {
  .normas-item { flex-direction: column; gap: 10px; }
  .normas-item .num { min-width: auto; }
}
