/* ===== FILOSOFÍA - MUNDO PRANA ===== */

/* HERO */
.filosofia-hero {
  background: 
    linear-gradient(rgba(117, 190, 123, 0.55), rgba(27, 26, 26, 0.1)),
    url('../img/fondos/fondo-frase-destacada.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 8rem 1rem 6rem;
}




.filosofia-overlay {
  max-width: 800px;
  margin: 0 auto;
}

.filosofia-hero h1 {
  color: #ffff;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  margin-bottom: 1rem;
}
h2{
  color: #48a76f;
}

.filosofia-hero p {
  color: #fff;
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* INTRO / SECCIONES */
.filosofia-intro,
.filosofia-inspiracion,
.filosofia-pilares {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.filosofia-intro h2 {
  color: #682288;
  text-align: center;
  margin-bottom: 1.5rem;
}

.filosofia-intro p {
  color: #48a76f;
  line-height: 1.7;
  text-align: center;
}

/* INSPIRACIÓN */
.filosofia-inspiracion {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.filosofia-texto {
  flex: 1 1 480px;
}

.filosofia-texto blockquote {
  font-style: italic;
  background: #f8f8f8;
  padding: 1rem 1.5rem;
  border-left: 4px solid #a3d9a5;
  margin: 1.5rem 0;
}

.filosofia-img {
  flex: 1 1 380px;
  text-align: center;
}

.filosofia-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* PILARES */
.pilares-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.pilar {
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 16px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform .3s ease;
}

.pilar:hover {
  transform: translateY(-5px);
}

.pilar i {
  font-size: 2.2rem;
  color: #682288;
  margin-bottom: 1rem;
}

/* CIERRE */
.filosofia-cierre {
  background: #f8d2c1;
  padding: 3rem 1rem;
  text-align: center;
}

.cita-final {
  font-size: 1.3rem;
  color: #333;
}

.cita-final span {
  display: block;
  margin-top: .5rem;
  font-weight: 600;
  color: #682288;
}

/* FADE IN */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .filosofia-inspiracion {
    flex-direction: column;
  }
}
