/* Home-specific styles */
.hero-home {
  min-height: 560px;
  background: linear-gradient(135deg, #0d2240 0%, #1B3A6B 45%, #2a5298 100%);
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1400&q=80') center/cover no-repeat;
  opacity: 0.18;
}
.hero-shape {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
}
.hero-home .hero-content { padding: 100px 0 80px; }

.noticias-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.noticia-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.noticia-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.noticia-img { height: 180px; background: linear-gradient(135deg, var(--navy) 0%, #2a5298 100%); position: relative; overflow: hidden; }
.noticia-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.noticia-tag { position: absolute; top: 12px; left: 12px; background: var(--gold); color: white; font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; }
.noticia-body { padding: 20px; }
.noticia-date { font-size: 0.78rem; color: var(--gray); margin-bottom: 6px; }
.noticia-body h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 8px; }
.noticia-body p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cifras-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.cifra-item h3 { font-size: 2.5rem; font-weight: 900; color: var(--gold); margin-bottom: 4px; }
.cifra-item p { font-size: 0.88rem; color: rgba(255,255,255,0.8); }

.reveal-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-section.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .noticias-grid { grid-template-columns: 1fr; }
  .cifras-grid { grid-template-columns: repeat(2, 1fr); }
}
