/* =============================================
   historia.css — Estilos de historia.php
   ============================================= */

.pagina-historia {
  padding: 40px 0 60px;
}

/* ===== HERO ===== */
.historia-hero {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-hover) 100%);
  border-radius: var(--radio);
  padding: 40px 48px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.historia-hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.historia-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: 60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.historia-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.historia-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin: 0;
}

/* ===== SECCIONES ===== */
.seccion-card {
  background: #fff;
  border-radius: var(--radio);
  box-shadow: var(--sombra);
  padding: 36px 40px;
  margin-bottom: 24px;
  border-left: 5px solid var(--azul);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.seccion-card:hover {
  box-shadow: var(--sombra-hover);
  transform: translateY(-3px);
}

.seccion-icono {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--azul);
  border-radius: 10px;
  margin-bottom: 16px;
}

.seccion-icono i {
  color: #fff;
  font-size: 20px;
}

.seccion-card h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--azul);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gris-fondo);
}

.seccion-card p {
  font-size: 0.97rem;
  color: var(--texto-suave);
  line-height: 1.85;
  margin-bottom: 16px;
}

.seccion-card p:last-child { margin-bottom: 0; }

/* ===== TIMELINE (Reseña histórica) ===== */
.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--azul), rgba(1,36,99,0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--azul);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--azul);
}

.timeline-item p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--texto-suave);
  line-height: 1.85;
}

/* ===== BADGE AÑO ===== */
.badge-año {
  display: inline-block;
  background: var(--azul);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .historia-hero {
    padding: 28px 24px;
  }

  .historia-hero h1 { font-size: 1.5rem; }

  .seccion-card {
    padding: 24px 20px;
  }
}
