/* ========================================
   INDEPAR - Home Styles
   ======================================== */

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, #1B2A5E 0%, #0F1B3D 60%, #0a1230 100%);
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(184, 148, 62, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 3rem;
  margin: 0 auto 0.5rem;
  letter-spacing: 0.04em;
}

.hero__name {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0;
}

.hero .gold-line {
  margin: 1.5rem auto;
  width: 80px;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Featured Publication --- */
.featured {
  padding: 4rem 0;
}

.featured__content {
  max-width: 640px;
}

.featured__content h2 {
  margin-bottom: 0.5rem;
}

.featured__coming {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.featured__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
}

.featured__link:hover {
  gap: 0.8rem;
}

/* --- Areas de Estudio --- */
.areas__content {
  max-width: 640px;
}

.areas__content h2 {
  margin-bottom: 0.5rem;
}

.areas__list {
  margin-top: 1.5rem;
}

.areas__list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.25rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.areas__list li:last-child {
  border-bottom: none;
}

.areas__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero { padding: 4rem 0 3.5rem; }
  .hero__logo { width: 110px; height: 110px; }
  .hero h1 { font-size: 2.25rem; }
  .hero__name { font-size: 1rem; }
  .hero__subtitle { font-size: 1.05rem; }
}
