/* Estilos específicos para la página "Mi enfoque" (mienfoque.php) */

/* Hero más simple */
.hero-simple .hero-content {
  justify-content: center;
  text-align: center;
}
.hero-simple .hero-text {
  max-width: 800px;
  margin: 0 auto;
}

/* Contenido principal */
.enfoque-content {
  max-width: 900px;
  margin: 0 auto;
}
.enfoque-texto p {
  font-size: 1.15rem;
  line-height: 2;
  color: #3d1f1a;
  margin-bottom: 1.8rem;
}
.cita-destacada {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #6E1823;
  padding: 2rem 2.5rem;
  background: rgba(255, 240, 167, 0.15);
  border-radius: 30px;
  margin: 2.5rem 0;
  border-left: 5px solid #9F6A58;
  font-weight: 400;
}
.enfoque-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.enfoque-item {
  background: white;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(159, 106, 88, 0.08);
  box-shadow: 0 8px 30px rgba(110, 24, 35, 0.04);
  text-align: center;
  transition: all 0.3s;
}
.enfoque-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(110, 24, 35, 0.08);
}
.enfoque-item i {
  font-size: 2.5rem;
  color: #6E1823;
  margin-bottom: 1rem;
}
.enfoque-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #6E1823;
  margin-bottom: 0.8rem;
}
.enfoque-item p {
  font-size: 0.95rem;
  color: #4d2a24;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .enfoque-grid {
    grid-template-columns: 1fr;
  }
  .cita-destacada {
    font-size: 1.2rem;
    padding: 1.5rem;
  }
}
@media (max-width: 550px) {
  .enfoque-texto p {
    font-size: 1rem;
  }
  .cita-destacada {
    font-size: 1rem;
    padding: 1rem;
  }
}