/* ===============================
   FILOSOFÍA – COACHING Y RESULTA2
   =============================== */

/* VARIABLES DE COLOR Y FUENTE */
:root {
  --azul-profundo: #1E3A8A;
  --dorado-suave: #FBBF24;
  --gris-texto: #4B5563;
  --gris-fondo: #F9FAFB;
  --blanco: #FFFFFF;
  --transparente: rgba(0, 0, 0, 0);
  --negro-translucido: rgba(0, 0, 0, 0.6);
  --blanco-translucido: rgba(255, 255, 255, 0.85);
  --fuente-principal: 'Poppins', 'Helvetica Neue', sans-serif;
}

/* RESETEO BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--fuente-principal);
  color: var(--gris-texto);
  background-color: var(--gris-fondo);
  line-height: 1.7;
  overflow-x: hidden;
}

/* CONTENEDORES GENERALES */
.contenedor {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ===============================
   1. HERO SECTION
   =============================== */

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--blanco);
  text-align: center;
  padding: 160px 20px;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--blanco);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--blanco-translucido);
}

.btn-cta {
  display: inline-block;
  background: var(--dorado-suave);
  color: var(--azul-profundo);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: var(--blanco);
}

/* ===============================
   2. VISIÓN Y PROPÓSITO
   =============================== */

.vision-proposito {
  background: var(--gris-fondo);
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.vision-proposito .contenedor {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.vision-proposito h2 {
  color: var(--azul-profundo);
  margin-bottom: 15px;
}

.vision-proposito p {
  margin-bottom: 15px;
}

.vision-proposito .imagen img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* ===============================
   3. PRINCIPIO FILOSÓFICO CENTRAL
   =============================== */

.principio {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--blanco);
  text-align: center;
  padding: 120px 20px;
}

.overlay-dark {
  position: absolute;
  inset: 0;
  background: var(--negro-translucido);
}

.principio-texto {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.principio blockquote {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 30px;
  color: var(--blanco);
}

/* ===============================
   4. MODELO R.E.A.L.
   =============================== */

.modelo-real {
  background: var(--blanco);
  padding: 100px 0;
  text-align: center;
}

.modelo-real h2 {
  color: var(--azul-profundo);
  margin-bottom: 15px;
}

.modelo-real p {
  max-width: 700px;
  margin: 0 auto 50px;
}

.real-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.real-grid .card {
  background: var(--gris-fondo);
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.real-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.real-grid img {
  width: 70px;
  margin-bottom: 15px;
}

.real-grid h3 {
  color: var(--azul-profundo);
  margin-bottom: 10px;
}

.real-grid span {
  display: block;
  margin-top: 10px;
  color: var(--dorado-suave);
  font-weight: 600;
}

/* ===============================
   5. EN QUÉ NOS ENFOCAMOS
   =============================== */

.enfoques {
  background: var(--gris-fondo);
  padding: 100px 0;
  text-align: center;
}

.enfoques h2 {
  color: var(--azul-profundo);
  margin-bottom: 50px;
}

.enfoques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.enfoques-grid .card {
  background: var(--blanco);
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.enfoques-grid .card:hover {
  transform: translateY(-5px);
}

.enfoques-grid img {
  width: 60px;
  margin-bottom: 15px;
}

.enfoques-grid h3 {
  color: var(--azul-profundo);
  margin-bottom: 10px;
}

.enfoques-grid span {
  display: block;
  margin-top: 10px;
  color: var(--dorado-suave);
  font-weight: 600;
}

/* ===============================
   6. RESULTADOS ESPERADOS
   =============================== */

.resultados {
  background: var(--blanco);
  padding: 100px 0;
  text-align: center;
}

.resultados h2 {
  color: var(--azul-profundo);
  margin-bottom: 50px;
}

.resultados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.resultados-grid .card {
  background: var(--gris-fondo);
  padding: 40px 25px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.resultados-grid img {
  width: 50px;
  margin-bottom: 15px;
}

.resultados-grid h3 {
  color: var(--azul-profundo);
  margin-bottom: 10px;
}

.resultados-grid li {
  margin-bottom: 8px;
}

/* ===============================
   7. MANIFIESTO
   =============================== */

.manifiesto {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--blanco);
  padding: 120px 20px;
  text-align: center;
}

.manifiesto .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.7));
}

.manifiesto blockquote {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--blanco);
  margin-bottom: 25px;
}

.manifiesto p {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto 15px;
  color: var(--blanco-translucido);
}

/* ===============================
   8. CIERRE EMOCIONAL
   =============================== */

.cierre {
  position: relative;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--azul-profundo);
  padding: 120px 20px;
}

.overlay-light {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
}

.cierre h2 {
  position: relative;
  font-size: 2rem;
  margin-bottom: 20px;
  z-index: 2;
}

.cierre p {
  position: relative;
  font-size: 1.1rem;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  color: var(--gris-texto);
  line-height: 1.8;
}

/* ===============================
   ANIMACIONES Y RESPONSIVE
   =============================== */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

section {
  animation: fade-up 1s ease forwards;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .vision-proposito .contenedor { grid-template-columns: 1fr; }
  .real-grid, .enfoques-grid, .resultados-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 20px; }
}
/* === Animaciones de scroll === */
.animar {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease-out;
}

.animar.visible {
  opacity: 1;
  transform: translateY(0);
}
