/* Estilos para Sobre Nosotros */

/* Misión Section */

.mision-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mision-text h2 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1.5rem;
}

.mision-text p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 1rem;
}

.mision-stats {
  display: grid;
  gap: 1.5rem;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #667eea;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: #6b7280;
  font-weight: 600;
}

/* Historia Timeline */

.historia-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 3rem;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-dot {
  position: absolute;
  left: -2.875rem;
  top: 0.5rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 4px solid #667eea;
  z-index: 1;
}

.timeline-dot.futuro {
  border-color: #10b981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
}

.timeline-content {
  background: white;
  border-radius: 12px;
  padding: 1.75rem;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: #667eea;
}

.timeline-content h3 {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  color: #667eea;
}

.timeline-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
}

/* Valores */

.valores-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.0625rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.valor-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  text-align: center;
}

.valor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: #667eea;
}

.valor-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.valor-card h3 {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  color: #1f2937;
}

.valor-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #6b7280;
}

/* Por qué SimuFin */

.porque-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 3rem;
}

.porque-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.porque-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid #667eea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.porque-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.porque-numero {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.porque-item h3 {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  color: #1f2937;
}

.porque-item p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #6b7280;
}

/* Compromiso */

.compromiso-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 3px solid #0ea5e9;
  border-radius: 12px;
  padding: 3rem;
}

.compromiso-box h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #0c4a6e;
  margin-bottom: 2rem;
}

.compromiso-lead {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  color: #1f2937;
  margin-bottom: 2rem;
}

.compromiso-puntos {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.compromiso-punto {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  color: #374151;
}

.check {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.compromiso-financiamiento {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-size: 1rem;
  color: #374151;
  margin: 0;
}

/* Equipo */

.equipo-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.equipo-message {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  border: 2px solid #e5e7eb;
}

.equipo-message p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.equipo-cta {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  padding-top: 1rem;
  border-top: 2px solid #e5e7eb;
}

.equipo-cta a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.2s ease;
}

.equipo-cta a:hover {
  color: #4f46e5;
  text-decoration: underline;
}

/* CTA Final */

.cta-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-box p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-secondary {
  background: white;
  color: #667eea;
}

.btn-secondary:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

/* Footer styles adicionales */
.footer-active {
  color: #667eea !important;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-credits {
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .mision-content {
    grid-template-columns: 1fr;
  }

  .mision-text h2,
  .historia-section h2,
  .valores-section h2,
  .porque-section h2,
  .equipo-section h2,
  .cta-box h2 {
    font-size: 2rem;
  }

  .compromiso-box h2 {
    font-size: 1.75rem;
  }

  .lead {
    font-size: 1.125rem;
  }

  .timeline {
    padding-left: 2.5rem;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-dot {
    left: -2.375rem;
    width: 16px;
    height: 16px;
  }

  .valores-grid {
    grid-template-columns: 1fr;
  }

  .porque-grid {
    grid-template-columns: 1fr;
  }

  .compromiso-box {
    padding: 2rem 1.5rem;
  }

  .equipo-message {
    padding: 1.75rem;
  }

  .cta-box {
    padding: 2rem 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}