/* === Quiénes somos === */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #222;
}

/* HERO */
.quienes-hero {
  text-align: center;
  padding: 100px 20px;
  background: #000; /* negro sólido */
  color: #fff;
}
.quienes-hero .hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.quienes-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: #ff4081;
}
.quienes-hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* VALORES */
.valores {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}
.valores h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ff4081;
}
.valores-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.valores-item {
  background: #f5f5f5;
  padding: 25px 20px;
  border-radius: 12px;
  transition: transform 0.3s;
}
.valores-item:hover {
  transform: translateY(-6px);
}
.valores-item i {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #ff4081;
}
.valores-item h3 {
  font-size: 1rem;
  color: #222;
}

/* CIFRAS */
.cifras {
  background: #000; /* fondo negro */
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}
.cifras h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ff4081;
}
.cifras-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cifra {
  background: #111;
  padding: 25px 35px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.cifra span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #ff4081;
}
.cifra p {
  margin: 5px 0 0;
  font-size: 1rem;
  color: #fff;
}

/* FILOSOFÍA */
.filosofia {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.filosofia h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ff4081;
}
.filosofia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.filosofia-item {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.filosofia-item:hover {
  transform: translateY(-6px);
}
.filosofia-item i {
  font-size: 2rem;
  color: #ff4081;
  margin-bottom: 15px;
}
.filosofia-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .valores-list {
    grid-template-columns: 1fr 1fr;
  }
  .cifras-container {
    flex-direction: column;
    gap: 20px;
  }
  .quienes-hero h1 {
    font-size: 2rem;
  }
}
