/* ============================================================
   HOME.CSS — Página principal (presentación, sin navegación duplicada)
   PZVerse
   ============================================================ */

/* ============================================================
   CONTADOR DE USUARIOS (sobre el banner)
   ============================================================ */
.online-counter {
  position: absolute;
  bottom: 12px;
  left: 20px;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 6px #7B5FE0;
}

/* ============================================================
   INTRO — presentación general
   ============================================================ */
.home-intro {
  position: relative;
  text-align: center;
  padding: 60px 20px 10px;
  overflow: hidden;
}

.home-intro .glow {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 95, 224, 0.28), transparent 70%);
  pointer-events: none;
}

.home-intro .home-content {
  position: relative;
  z-index: 2;
}

.home-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9B82EE;
}

.home-intro h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.1rem;
  color: #F1ECFA;
  margin-top: 10px;
  text-shadow: 0 0 16px #7B5FE0, 0 0 34px rgba(145, 70, 255, 0.4);
}

.home-intro .home-lead {
  max-width: 660px;
  margin: 20px auto 0;
  color: #C9B8E8;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  line-height: 1.8;
}

/* ============================================================
   DUO — Patz y Zhoomn
   ============================================================ */
.home-duo {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.home-duo-col {
  text-align: center;
}

.home-duo-col img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 14px;
  border: 2px solid rgba(123, 95, 224, 0.5);
  box-shadow: 0 0 14px rgba(123, 95, 224, 0.4);
  object-fit: cover;
}

.home-duo-col h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: #F1ECFA;
}

.home-duo-col p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #a79bc4;
  margin-top: 8px;
  line-height: 1.6;
}

/* ============================================================
   SECCIONES — presentación de cada página, sin enlaces
   ============================================================ */
.home-secciones {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 20px;
}

.home-secciones-head {
  text-align: center;
  margin-bottom: 10px;
}

.home-secciones-head h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: #C9B8E8;
  text-shadow: 0 0 10px rgba(123, 95, 224, 0.4);
}

.home-secciones-head p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  color: #8f84ab;
  margin-top: 8px;
}

.home-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(123, 95, 224, 0.15);
}

.home-row:last-child {
  border-bottom: none;
}

.home-row.rev .home-row-img {
  order: 2;
}

.home-row-img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(123, 95, 224, 0.3);
}

.home-row-img img {
  width: 100%;
  display: block;
}

.home-row-txt .home-row-cat {
  font-family: 'Poppins', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D9A85C;
}

.home-row-txt h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  color: #F1ECFA;
  margin-top: 10px;
}

.home-row-txt p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #B8AED0;
  line-height: 1.7;
  margin-top: 12px;
}

/* ============================================================
   RESPONSIVE MÓVIL
   ============================================================ */
@media (max-width: 768px) {
  .home-intro h1 { font-size: 1.6rem; }
  .home-duo { grid-template-columns: 1fr; gap: 30px; }
  .home-row { grid-template-columns: 1fr; gap: 18px; padding: 30px 0; }
  .home-row.rev .home-row-img { order: 0; }
}

@media (max-width: 480px) {
  .home-intro h1 { font-size: 1.3rem; }
}