.filosofia-principal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* TÍTULO PRINCIPAL FUERA DE LAS CARDS */
.titulo-filosofia {
  text-align: center;
  color: #871515; /* Color Guinda */
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* VISIÓN: ANCHO COMPLETO */
.vision-full-width {
  width: 100%;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 15px;
  padding: 50px 40px;
  margin-bottom: 30px;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: center;
}

.vision-text-container {
  max-width: 1000px;
  margin: 20px auto 0 auto;
  text-align: justify;
}

.vision-text-container p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

/* GRID INFERIOR */
.filosofia-grid-inferior {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.filosofia-card-pequena {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.filosofia-card-pequena:hover {
  transform: translateY(-5px);
  border-color: #871515;
}

/* CÍRCULOS E ICONOS */
.icon-circle, .icon-circle-sml {
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px auto;
  background: #fdfdfd;
}

.icon-circle { width: 85px; height: 85px; }
.icon-circle-sml { width: 65px; height: 65px; }

h3 {
  color: #333;
  font-size: 1.15rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

.lista-minimal {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 0.9rem;
  color: #666;
}

.lista-minimal li {
  margin-bottom: 6px;
  padding-left: 15px;
  position: relative;
}

.lista-minimal li::before {
  content: "•";
  color: #871515;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .titulo-filosofia { font-size: 1.8rem; }
  .vision-full-width { padding: 30px 20px; }
  .filosofia-grid-inferior { grid-template-columns: 1fr; }
}