
/* ============================= */
/* RESET GLOBAL */
/* ============================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Carla Sans', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #ffffff;
}
html, body {
  overflow-x: hidden;
}
/* ============================= */
/* VARIABLES */
/* ============================= */

:root {
  --color-primario: #2f3b8f;
  --color-texto: #333;
  --color-fondo: #f9f9f9;

  --gradiente-marca: linear-gradient(
    90deg,
    #8a2c6f 0%,
    #6aa84f 50%,
    #d4b000 100%
  );
}
/* ============================= */
/* BASE TIPOGRAFICA */
/* ============================= */


h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

p {
  font-size: 17px;
  line-height: 1.6;
}

ul {
  list-style: none;
  margin-top: 20px;
}

ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primario);
}

.linea-divisoria {
  width: 60px;
  height: 3px;
  background: var(--gradiente-marca);
  margin: 0 auto;
}








/* ============================= */
/* CONTENEDOR GLOBAL */
/* ============================= */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* BOTONES BASE */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* BOTÓN PRIMARIO */
.btn-primary {
  background: var(--gradiente-marca);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* BOTÓN SECUNDARIO */
.btn-secondary {
  background: transparent;
  color: #2f3b8f;
  border: 1.5px solid #2f3b8f;
}

.btn-secondary:hover {
  background: #2f3b8f;
  color: #fff;
}

/* ============================= */
/* SECCIONES */
/* ============================= */

section {
  padding: 120px 0;
}


/* ============================= */
/* NAVBAR */
/* ============================= */

.navbar {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */

.logo a {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

/* ============================= */
/* MENU HAMBURGUESA */
/* ============================= */

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

/* ============================= */
/* MENU DESKTOP */
/* ============================= */

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  padding: 8px 4px;
  transition: color 0.3s ease;
}

/* Hover */
.nav-links a:hover {
  color: #2f3b8f;
  background: var(--gradiente-marca);
}

/* Active */
.nav-links a.active {
  color: #2f3b8f;
  font-weight: 600;
}

/* ============================= */
/* DROPDOWN DESKTOP */
/* ============================= */

.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background-color: #ffffff;
  list-style: none;
  padding: 16px 0;
  width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu a {
  font-size: 14px;
  color: #333;
  display: block;
}

/* Mostrar dropdown en hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

/* ============================= */
/* BOTÓN CONTACTO */
/* ============================= */

.btn-nav {
  padding: 10px 18px;
  border: 1px solid #2f3b8f;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn-nav:hover {
  background-color: #2f3b8f;
  color: #ffffff;
}

/* ============================= */
/* RESPONSIVE MOBILE */
/* ============================= */

@media (max-width: 768px) {

  /* Mostrar hamburguesa */
  .menu-toggle {
    display: flex;
  }

  /* Ocultar menú */
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    display: none;
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    z-index: 999;
  }

  /* Mostrar menú activo */
  .nav-menu.active {
    display: flex;
  }

  /* Links en columna */
  .nav-links {
    flex-direction: column;
    gap: 20px;
  }

  /* Dropdown en mobile */
  .dropdown-menu {
    position: static;
    display: none;
    padding-left: 10px;
  }

  .dropdown-menu li {
    padding: 8px 0;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

}
/* HOME */



.home-sobre-preview {
  padding: 120px 0;
  background-color: #ffffff;
}
.home-sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center; 
}
.home-sobre-imagen {
  height: 460px;
}

/* ============================= */
/* BLOQUE PROCESO - IMAGEN */
/* ============================= */

.proceso-img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  display: flex;
}

/* imagen */
.proceso-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 object-position: center 22%;
  display: block;
}


/* hover */
.proceso-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.proceso-img:hover img {
  transform: scale(1.05);
  transition: transform 0.6s ease;
}

.home-sobre-contenido {
  transition: transform 0.4s ease;
}

.home-sobre-grid:hover .home-sobre-contenido {
  transform: translateY(-2px);
}

.home-sobre-contenido h2 {
  font-size: 32px;
  margin-bottom: 20px;
 
}

.home-sobre-contenido p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #444;
}

.home-sobre-contenido blockquote {
  margin: 30px 0;
  font-style: italic;
  color: #2f3b8f;
  font-weight: 500;
  
}



/* HOME-HERO- */
/* HERO */
.hero {
  position: relative;
  background-image: url("../assets/img/hero-home.webp");
  background-size: cover;

  /* 🔥 CLAVE: subimos la imagen */
  background-position: center 30%;

  padding: 180px 20px;
  color: white;


  /* ❌ eliminamos bordes */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;

  display: flex;
  align-items: center;
}

/* 🔥 overlay mejorado */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* CONTENEDOR */
.hero-content {
  max-width: 600px;

  /* 🔥 CLAVE: alineación real */
  margin: 0;
  text-align: left;

  position: relative;
  z-index: 2;
}

/* TITULO */
.hero h1 {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 600;
  color: white;

  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* ❌ eliminamos línea decorativa (ruido visual) */
.hero h1::after {
  display: none;
}

/* TEXTO */
.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: white;

  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* BOTÓN */
.hero .btn-primary {
  background: var(--gradiente-marca);
  color: #fff;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero .btn-primary:hover {
  transform: translateY(-3px);
}

/* HOME- SECCIONES */


.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

/* SECTION- CARDS */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  
}
/* CARD */
.card {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  min-height: 240px;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition: all 0.3s ease;
}

/* ANIMACION HOVER- CARDS */

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);

  background: linear-gradient(180deg, #ffffff 0%, #f9f9ff 100%);
}

/* EFECTO EN LINEA SUPERIOR CARDS */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradiente-marca);
  transition: height 0.3s ease;
}

.card:hover::before {
  height: 6px;
}
/* MEJORA EN EL BOTON */
.card .btn-secondary {
  margin-top: 20px;
  align-self: flex-start;
  font-size: 14px;
}
/* MICROINTERACCION EN EL BOTON */
.card .btn-secondary:hover {
  transform: translateX(4px);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.card.vertical {
  text-align: left;
}

/* IMAGEN FULL WIDTH EN HOME */
.imagen-full {
  position: relative;
  height: 420px;
  background-image: url("../assets/img/hero-formaciones.webp");
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed; /* efecto parallax suave */
  display: flex;
  align-items: center;
  justify-content: center;
}
.imagen-full h2 {
  font-size: 40px;
  font-weight: 700;
}

.imagen-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}


.contenido-imagen {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.contenido-imagen h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.5px;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 6px 25px rgba(0,0,0,0.5);
}


/* HOME- CTA FINAL */

/* CTA FINAL */
.cta-final {
  background: linear-gradient(180deg, #f8f9fc 0%, #eef1f7 100%);
  padding: 100px 20px;
  text-align: center;
  border-radius: 24px;
  max-width: 100%;
  margin: 120px auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.cta-final h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.cta-final p {
  font-size: 17px;
  color: #555;
  margin-bottom: 30px;
}
.cta-final .btn-primary {
  padding: 16px 32px;
  font-size: 16px;
}


/* RESPONSIVE HOME MOBILE  */
@media (max-width: 768px) {

  section {
    padding: 90px 0;
  }

  .container {
    width: 92%;
  }

}
/* RESPONSIVE HOME-HERO  MOBILE  */
@media (max-width: 768px) {
  .hero {
    padding: 110px 20px 70px;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .hero-cta {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .home-sobre-preview {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }
  .section-header p {
    font-size: 15px;
    line-height: 1.6;
  }

}

/* RESPONSIVE HOME-NAVBAR  MOBILE  */
@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);

    background: white;

    display: none;
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;

    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
  }

  .dropdown-menu {
    position: static;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }
}

/* RESPONSIVE HOME-CARDS  MOBILE  */
@media (max-width: 768px) {

  .cards-3 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    
  }

  .card {
    width: 100%;
    padding: 28px 22px;
  }

}
.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* RESPONSIVE HOME-IMAGENES MOBILE  */

@media (max-width: 768px) {

  .imagen-full {
    height: 280px;
    background-attachment: scroll; /* 🔥 arregla mobile */
    background-position: center;
  }

  .contenido-imagen h2 {
    font-size: 24px;
  }

}

/* RESPONSIVE HOME-ESTRUCUTRA  MOBILE  */
@media (max-width: 768px) {

  .home-sobre-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .home-sobre-imagen {
    order: -1; /* 🔥 imagen arriba */
    height: 300px;
  
  }

  .home-sobre-contenido {
    text-align: left;
  }

}

@media (max-width: 768px) {
  .home-sobre-contenido p {
    font-size: 15px;
    line-height: 1.7;
  }

  .home-sobre-contenido h2 {
    font-size: 26px;
  }
}





/* RESPONSIVE HOME-CTA FINAL MOBILE  */
@media (max-width: 768px) {

  .cta-final {
    margin: 80px auto;
    padding: 60px 20px;
    border-radius: 16px;
  }

  .cta-final h2 {
    font-size: 26px;
  }

}
/* RESPONSIVE HOME MOBILE - BLOQUE A QUIEN ACOMPAÑAMOS*/

@media (max-width: 768px) {

  .a-quien-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .a-quien-grid::-webkit-scrollbar {
    display: none;
  }

  .a-quien-item {
    min-width: 80%;
    flex: 0 0 auto;
    scroll-snap-align: center;
    border-radius: 16px;
  }

}

/* PAGINAS PRINCIPALES *1/4 /


/* ACOMPAÑAMIENTO- SECTION *1 /


/* ACOMPAÑAMIENTO- HERO*/

.acompanamiento-hero {
  position: relative;
  height: 85vh;
  min-height: 520px;
  background-image: url("../assets/img/hero-formaciones.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #ffffff;
}
.acompanamiento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.3)
  );
}

.hero-content {
  position: relative;
  max-width: 650px;
  padding: 0 20px;margin-left: 650px;
}

.hero-content h1 {
  font-size: 46px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ffffff;
  margin-top: 15px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #f0f0f0;
  max-width: 520px;
}
.hero-cta {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  background: #ffffff;
  color: #2f3b8f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}



/* BLOQUE FORMAS DE ACOMPAÑAMIENTO*/
.acompanamiento-hub {
  padding: 160px 0 120px;
  background-color: #ffffff;
  margin-top: 100px;
}

/* Encabezado */

.hub-header {
  text-align: center;
  margin-bottom: 80px;
}

.hub-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.hub-subtitulo {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid */

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* ACOMPAÑAMIENTO- Cards */
html {
  scroll-behavior: smooth;
}
#formas-acompanamiento {
  scroll-margin-top: 100px;
}
.hub-card {
  display: block;
  padding: 50px 45px;
  border-radius: 16px;
  background-color: #f8f8f8;
  text-decoration: none;
  color: #333;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden; /* 🔥 clave */
  gap: 30px;
}
.hub-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%; /* 🔥 arranca invisible */
  height: 3px;
  background: var(--gradiente-marca);
  transition: width 0.35s ease;
}

.hub-card:hover::after {
  width: 100%;
}




.hub-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Número */

.hub-numero {
  font-size: 12px;
  letter-spacing: 2px;
  color: #bbb;
}

/* Título */
.hub-header h2 {
  font-size: 40px;
}
.hub-card h3 {
  transition: color 0.3s ease;
}

.hub-card:hover h3 {
  color: #2f3b8f;
}
/* Texto */

.hub-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}

/* Link */

.hub-link {
  position: relative;
}

.hub-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.hub-card:hover .hub-link::after {
  transform: translateX(6px);
}







/* BLOQUE COMO TRABAJAMOS*/

.como-trabajamos {
  padding: 100px 20px;
  background-color: #f8f8f8;

  background: linear-gradient(to bottom, #fafafa, #f5f5f5);
}


.como-trabajamos .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.como-trabajamos .section-header h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
}

.como-trabajamos .section-header p {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}
.proceso-grid {
  max-width: 700px;
  margin: 0 auto;
 margin-bottom: 30px;
}

.proceso-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e5e5e5;
  z-index: 0;
}
.timeline {
  position: relative;
  max-width: 700px;
}
.paso {
  transition: all 0.35s ease;
}

.paso:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.numero {
  font-size: 14px;
  font-weight: 600;
  color: #2f3b8f;
  margin-bottom: 10px;
  display: block;
}
.paso h3 {
  transition: color 0.3s ease;
}

.paso:hover h3 {
  color: #2f3b8f;
}

.paso p {
  line-height: 1.7;
  color: #555;
}


/* RESPONSIVE MOBILE- ACOMPAÑAMIENTO */
@media (max-width: 768px) {

  .hero-content {
    margin-left: 0;
    text-align: center;
    max-width: 100%;
  }

  .acompanamiento-hero {
    height: auto;
    padding: 100px 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
    margin: 0 auto 25px auto;
  }

}
/* RESPONSIVE MOBILE- ACOMPAÑAMIENTO- CARDS */
@media (max-width: 768px) {

  .hub-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hub-card {
    padding: 30px 25px;
    border-radius: 16px;
    margin-bottom: 10px;
    transition: all0.3 ease;
  }

}
/* RESPONSIVE MOBILE- ACOMPAÑAMIENTO- TITULOS */
@media (max-width: 768px) {

  .hub-header h2 {
    font-size: 28px;
  }

  .hub-subtitulo {
    font-size: 15px;
    padding: 0 10px;
  }

}
/* RESPONSIVE MOBILE- ACOMPAÑAMIENTO- COMO TRABAJAMOS */
@media (max-width: 768px) {

  .como-trabajamos {
    padding: 80px 20px;
  }

  .como-trabajamos .section-header h2 {
    font-size: 28px;
  }

  .como-trabajamos .section-header p {
    font-size: 15px;
  }

  .paso {
  padding: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e6e6e6;
}

.paso:last-child {
  border-bottom: none;
}
.paso span {
  color: #2f3b8f;
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

.paso h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.paso p {
  font-size: 15px;
  line-height: 1.6;
}

}

/* RESPONSIVE MOBILE- ACOMPAÑAMIENTO- CTA*/

@media (max-width: 768px) {

  .cta-final h2 {
    font-size: 26px;
  }

  .cta-final p {
    font-size: 16px;
  }

}


/* SUB SECCIONES DEL SITIO- 1/3*/

/* SECTION- COACHING INDIVIDUAL 1*/



/* CIACHING INDIVIDUAL-HERO */

.coaching-hero {
  position: relative;
  background-image: url("../assets/img/hero-coachingindi.webp"); 
  background-size: cover;
  background-position: center 60%;
  padding: 140px 0;
  color: white;
  text-align: left;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.coaching-hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
}
.coaching-hero p {
  font-size: 18px;
  max-width: 500px;
  margin: 0 0 30px 0; /* sacamos centrado */
}

.btn-primary {
  background: var(--gradiente-marca);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}


.coaching-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.3)
  );
  z-index: 1;
}





/* COACHING INDIVIDUAL- SECCIONES GENERALES */
.coaching {
  text-align: left;
}

.coaching-box {
  text-align: left;
}

.coaching-box p,
.coaching-box ul {
  text-align: left;
}
.coaching .container {
  max-width: 700px;
}
/* LISTAS */



ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b4cca;
}


/* TIMELINE */
.coaching-proceso {
  padding: 40px 20px 60px;
  background-color: #ffffff;
  margin-top: -40px;
}
.coaching-proceso h2 {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 30px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* STEP */
.step {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.step:last-child {
  border-bottom: none;
}

/* línea superior sutil */
.step::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #e5e5e5;
  margin-bottom: 15px;
}
.step:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
}

/* número */
.step .number {
  font-size: 18px;
  color: #2f3b8f;
  margin-bottom: 10px;
}


/* título */
.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

/* texto */
.step p {
  text-align: left; /* 🔥 importante */
  margin: 0;
  color: #555;
  line-height: 1.6;
}
.coaching-resultados {
  padding: 60px 20px 80px;
  margin-top: -20px;
  background-color: #fafafa;
}



.coaching-resultados .container {
  max-width: 900px;
  margin: 0 auto;

}

.coaching-resultados h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 30px;
}

/* GRID */

.result-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
}

/* ITEM */
.result-list li {
  background: #fafafa;
  padding: 25px 25px;
  border-radius: 12px;
  border: 1px solid #eee;

  position: relative;
  padding-left: 40px;

  font-size: 15px;
  line-height: 1.5;

  transition: all 0.3s ease;
}

/* ICONO */
.result-list li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  top: 22px;
  color: #2f3b8f;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* 🔥 HOVER */
.result-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #ddd;
  background: #ffffff;
  color: #000;
}

/* micro detalle PRO */
.result-list li:hover::before {
  transform: scale(1.2);
}


/* COACHING INDIVIDUl-CTA FINAL */

.coaching-cta {
  background-color: #f0f0f0;
  text-align: center;
}



/* COACHING INDDIVIDUAL- RESPONSIVE-*/


/* COACHING INDDIVIDUAL- RESPONSIVE- HERO*/


@media (max-width: 768px) {

  .coaching-hero {
    padding: 100px 20px;
    text-align: center;
    background-position: center;
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
  }

  .coaching-hero h1 {
    font-size: 32px;
  }

  .coaching-hero p {
    font-size: 16px;
    margin: 0 auto 25px auto;
  }

}

/* COACHING INDDIVIDUAL- RESPONSIVE- (BLOQUE BENEFICIOS ) */

@media (max-width: 768px) {
  .coaching-row {
    flex-direction: column;
  }

  .coaching-box {
    width: 100%;
  }
}

/* RESPONSIVE - COACHING INDIVIDUAL ( TIMLINE ) */

@media (max-width: 768px) {

  .coaching-proceso .timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .coaching-proceso .step {
    width: 100%;
  }

}


/* RESPONISVE COACHING INDIVIDUAL ( RESULTADO )*/
@media (max-width: 768px) {
  .result-list {
    grid-template-columns: 1fr;
  }
}

/* RESPONISVE COACHING INDIVIDUAL ( CTA FINAL )*/
@media (max-width: 768px) {
  .coaching-cta {
    padding-top: 120px;
    padding-bottom: 100px;
    margin-top: 60px;
  }

  .coaching-cta h2 {
    font-size: 26px;
  }

  .coaching-cta p {
    font-size: 16px;
  }

}

@media (max-width: 768px) {
  .coaching {
    padding-top: 40px;
  }
}

/* RESPONSIVE COACHING INDIVIDUAL TEXTOS */

@media (max-width: 768px) {

  .coaching h2,
  .coaching p,
  .coaching ul {
    text-align: center;
  }

  .coaching-box {
    text-align: center;
  }

}
/* RESPONSIVE COACHING INDIVIDUAL LISTA */
@media (max-width: 768px) {

  .ideal-list {
    padding-left: 0;
    list-style-position: inside;
  }

}


/* SUB SECCIONES DEL SITIO *2/3 /


/* PAGINA - TRABAJO CON EQUIPOS *2/





//* HERO TRABAHO CON EQUIPOS */
.equipos-hero {
  position: relative;
  background-image: url("../assets/img/hero-trabajoequipo.webp");
  background-size: cover;
  background-position: center 50%; /* mejor encuadre */
  padding: 160px 0;
  color: white;
  text-align: center;
  overflow: hidden;
}

/* OVERLAY (CLAVE) */
.equipos-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65); /* más contraste */
  
}

/* CONTENIDO ARRIBA DEL OVERLAY */

.equipos-enfoque {
  background: #f7f8fc;
  padding: 100px 0;
}

.equipos-hero .container {

  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* TITULO */
.equipos-hero h1 {
  font-size: 44px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* TEXTO */
.equipos-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: #eaeaea;
  margin-bottom: 30px;
}

/* BOTÓN */
.equipos-hero .btn-primary {
  padding: 14px 28px;
  font-size: 16px;
}

/* GRID */

.enfoque-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
}

.enfoque-sub {
  text-align: center;
  color: #666;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.enfoque-item {
  background: #ffffff;
  padding: 45px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #fafafa);
  border: 1px solid #eaeaea;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  
}

.enfoque-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gradiente-marca);
  opacity: 0;
  transition: 0.3s ease;
}



.enfoque-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradiente-marca);
  opacity: 0;
  transition: 0.3s ease;
}

.enfoque-item:hover::before {
  opacity: 1;
}


.enfoque-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.06);
  border-color: transparent;
}


.enfoque-item:hover::before {
  opacity: 1;
}


.enfoque-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}


.enfoque-content:hover h3 {
  color: #2f3b8f;
}
.enfoque-content h3::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #e0e4ff;
  margin-bottom: 14px;
  border-radius: 2px;
  transition: 0.3s ease;
}
.enfoque-item:hover h3::before {
  width: 60px;
  background: #2f3b8f;
}
.enfoque-content p {
  color: #555;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.enfoque-numero {
  font-size: 14px;
  font-weight: 600;
  color: #2f3b8f;
  margin-bottom: 12px;
  display: block;
  opacity: 0.7;
}



/* TIMELINE */
.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 5px;
}

.step {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
}

.step span {
  font-weight: bold;
  color: #2f3b8f;
  display: block;
  margin-bottom: 10px;
}

/* LIST */


ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2f3b8f;
}
/* ============================= */
/* MOBILE - TRABAJO CON EQUIPOS */
/* ============================= */

@media (max-width: 768px) {

  /* HERO */
  .equipos-hero {
    padding: 100px 20px;
  }

  .equipos-hero h1 {
    font-size: 30px;
  }

  .equipos-hero p {
    font-size: 16px;
  }

  /* BLOQUES (reutilizamos coaching) */
  .coaching-row {
    flex-direction: column;
    gap: 40px;
  }

  .coaching-box {
    width: 100%;
    text-align: center;
  }

  .coaching-box p,
  .coaching-box ul {
    text-align: center;
  }

  /* LISTAS centradas */
  .ideal-list {
    padding-left: 0;
    list-style-position: inside;
  }

  /* ENFOQUE (cards verticales) */
  .enfoque-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .enfoque-item {
    padding: 25px;
  }

  /* GRID 3 → 1 columna */
  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* TIMELINE → vertical */
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .step {
    width: 100%;
  }

  /* RESULTADOS */
  .result-list {
    grid-template-columns: 1fr;
  }

  /* CTA FINAL (coherente con coaching) */
  .coaching-cta {
    padding-top: 120px;
    padding-bottom: 100px;
    text-align: center;
  }

}

/* ============================= */
/* FIX MOBILE FINAL - EQUIPOS */
/* ============================= */

@media (max-width: 768px) {

  /* 🔥 FORZAR TIMELINE EN COLUMNA */
  .equipos-proceso .timeline {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
  }

  .equipos-proceso .step {
    width: 100% !important;
  }

  /* 🔥 MODALIDADES (evitar scroll lateral) */
  .equipos-modalidades .grid-3 {
    grid-template-columns: 1fr !important;
  }

  .equipos-modalidades .card {
    width: 100%;
  }

}

/* SUB SECCIONES DEL SITIO-  SECTION FORMACIONES  3/3*/


/*  SECTION FORMACIONES  3/3*/

/* ============================= */
/* HERO */
/* ============================= */

.formaciones-hero {
  position: relative;
  background-image: url("../assets/img/hero-formaciones.webp"); /* 👈 imagen charla */
  background-size: cover;
  background-position: center;
  padding: 140px 0;
  color: white;
  text-align: center;
}

/* Overlay para legibilidad */
.formaciones-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Asegura que el contenido quede arriba */
.formaciones-hero .container {
  position: relative;
  z-index: 2;
}

.formaciones-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: white;
}

.formaciones-hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: white;
}

/* ============================= */
/* BLOQUE CONCEPTUAL (QUE ES / TRABAJAMOS / BENEFICIOS) */
/* ============================= */

.coaching {
  padding: 120px 0;
  background-color: #ffffff;
}

.coaching-row {
  display: flex;
  gap: 60px;
  margin-bottom: 80px;
}

.coaching-box {
  width: 50%;
}

.coaching-box h2 {
  margin-bottom: 20px;
}

.coaching-box p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.coaching-box ul {
  margin-top: 20px;
}

/* ============================= */
/* ELEMENTOS GENERALES */
/* ============================= */

hr {
  width: 60px;
  height: 3px;
  background-color: #2f3b8f;
  border: none;
  margin: 15px 0 25px 0;
}

h2 {
  line-height: 1.3;
}

p {
  line-height: 1.7;
}

/* LISTAS */

ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2f3b8f;
}
/* RESPONSIVE- FORMACIONES-  */

/* ============================= */
/* MOBILE - FORMACIONES (HERO + BLOQUE BENEFICOS ) */
/* ============================= */

@media (max-width: 768px) {

  /* HERO */
  .formaciones-hero {
    padding: 100px 20px;
    background-position: center;
  }

  .formaciones-hero h1 {
    font-size: 30px;
  }

  .formaciones-hero p {
    font-size: 16px;
  }

  /* BLOQUE CONCEPTUAL */
  .coaching-row {
    flex-direction: column;
    gap: 40px;
  }

  .coaching-box {
    width: 100%;
    text-align: center;
  }

  .coaching-box p,
  .coaching-box ul {
    text-align: center;
  }

  /* LISTAS centradas */
  .ideal-list {
    padding-left: 0;
    list-style-position: inside;
  }

}



/* ============================= */
/* GRID */
/* ============================= */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center ;

}

/* ============================= */
/* BLOQUES FORMATIVOS */
/* ============================= */

.bloque-formativo {
  background-color: #ffffff;
  padding: 120px 0;
  align-items: center;
}
.bloque-formativo.alt {
  background: linear-gradient(135deg, #f7f7f7, #ffffff);
  padding: 80px 60px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  margin: 80px 0;
  transition: all 0.4s ease;
}

.bloque-formativo.alt:hover {
  transform: translateY(-6px);
}
.bloque-formativo .contenido h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.bloque-formativo .contenido p {
  color: #555;
  margin-bottom: 20px;
}

.bloque-formativo .contenido ul li {
  margin-bottom: 10px;
  color: #555;
}

.bloque-formativo .contenido h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 10px;
  background: var(--gradiente-marca);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .bloque-formativo.alt {
    padding: 50px 25px;
  }

  .bloque-img {
    max-width: 100%;
  }
}


/* ECOA DESTACADO */
.bloque-formativo:first-of-type {
  background-color: #f9f9f9;
  padding: 140px 0;
}

.bloque-formativo:first-of-type h2 {
  font-size: 30px;
}

/* ============================= */
/* IMÁGENES Y MEDIA */
/* ============================= */

.imagen-placeholder {
  width: 100%;
  height: 380px;
  background-color: #ddd;
  border-radius: 20px;
}
.bloque-img {
  border-radius: 24px;
  overflow: hidden;
  max-width: 420px;
}

.bloque-img img {
  width: 100%;
  border-radius: 22x;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  max-height: 380px;
  object-fit: cover;
  display: block
  
}
.bloque-img img {
  transition: transform 0.5s ease;
}

.bloque-formativo:hover img {
  transform: scale(1.05);
}


.bloque-formativo.alt:hover img {
  transform: scale(1.03);
  }

  

.tag-ecoa {
  display: inline-block;
  background: #2f3b8f;
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
}
/* RESPONISVE MOBILE BLOQUE RESUMEN ECOA */

/* ============================= */
/* MOBILE - BLOQUES FORMATIVOS */
/* ============================= */

@media (max-width: 768px) {

  /* GRID → 1 columna */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* SECCIÓN */
  .bloque-formativo {
    padding: 80px 20px;
    text-align: center;
  }

  /* ECOA destacado más compacto */
  .bloque-formativo:first-of-type {
    padding: 100px 20px;
  }

  /* IMAGEN */
  .bloque-img {
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 25px;
  }
.bloque-img img,
.programa-imagen img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block;
  margin-bottom: 25px;
}
  /* TEXTO */
  .bloque-formativo .contenido {
    text-align: center;
  }

  .bloque-formativo .contenido h2 {
    font-size: 26px;
  }

  .bloque-formativo .contenido p {
    font-size: 15px;
  }

  /* LISTAS */
  .bloque-formativo .contenido ul {
    padding-left: 0;
    list-style-position: inside;
  }

  /* BOTONES */
  .bloque-formativo .btn-primary,
  .bloque-formativo .btn-secondary,
  .bloque-formativo .btn-outline {
    display: inline-block;
    margin-top: 15px;
  }

  /* TAG ECOA centrado */
  .tag-ecoa {
    margin-left: auto;
    margin-right: auto;
  }

}


/* ============================= */
/*SECCION RECURSOS DE CONTENIDO DENTRO DE SECCION FORMACIONES
/* ============================= */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 40px auto;
}

.video-card {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  background: #eaeaea;
  position: relative;
  overflow: hidden;
}
.video-card::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.video-card:hover {
  transform: translateY(-6px);
}

.video-card iframe {
  width: 100%;
  height: 230px;
  display: block;
}

/* ============================= */
/* MOBILE - RECURSOS (VIDEOS) */
/* ============================= */

@media (max-width: 768px) {

  /* GRID → 1 columna */
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px auto;
  }

  /* CARD */
  .video-card {
    height: auto;
    border-radius: 16px;
  }

  /* 🔥 PROPORCIÓN RESPONSIVE REAL */
  .video-card iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    box-shadow:  0 10px 30px rgba(0, 0, 0, 0.1);
  }

  /* OCULTAMOS ICONO FAKE (queda raro con iframe real) */
  .video-card::after {
    display: none;
  }

  /* SECCIÓN */
  .recursos {
    text-align: center;
  }

  .recursos h2 {
    font-size: 26px;
  }

  .recursos p {
    font-size: 15px;
    padding: 0 10px;
  }

  /* BOTÓN */
  .recursos .btn-primary {
    margin-top: 20px;
    display: inline-block;
  }

}



/* ============================= */
/* CAPACITACIONES */
/* ============================= */

.talleres-propios {
  padding: 120px 0;
  background-color: #ffffff;
}

.bloque-header {
  text-align: center;
  margin-bottom: 80px;
}

.bloque-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.subtitulo {
  max-width: 700px;
  margin: 0 auto 20px auto;
  font-size: 18px;
  line-height: 1.6;
}

.talleres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.descripcion {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.info-estructurada {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #2f3b8f;
}

.info-item p {
  font-size: 15px;
}

/* TEMÁTICAS */

.tematicas {
  margin-bottom: 100px;
}

.tematicas h3 {
  font-size: 24px;
  margin-bottom: 40px;
  text-align: center;
}

.tematicas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.tema {
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
}

/* GALERÍA */

.galeria {
  margin-bottom: 100px;
}

.galeria h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 24px;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.galeria-item {
  height: 220px;
  background-color: #ccc;
  border-radius: 12px;
}

/* CTA */

.taller-cta {
  text-align: center;
}

.micro-copy {
  margin-top: 12px;
  font-size: 14px;
  color: #666;
}

/* ============================= */
/* ECOA- PROGRAMA COMPLETO */
/* ============================= */
.ecoa .container {
  background: #ffffff;
  padding: 80px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.04);
}

.ecoa {
  padding: 120px 0;
  background-color: #f9f9f9;
}

.ecoa-header {
  text-align: center;
  margin-bottom: 60px;
}

.ecoa-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.ecoa-subtitulo {
  max-width: 700px;
  margin: 0 auto 20px auto;
  font-size: 18px;
  line-height: 1.6;
}

.ecoa-linea {
  width: 60px;
  height: 3px;
  background-color: #2f3b8f;
  margin: 0 auto;
}

.ecoa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.ecoa-descripcion {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.ecoa-estructura {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.ecoa-item {
  background: #f7f8fc;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.ecoa-item:hover {
  transform: translateY(-3px);
  border-color: #e0e4ff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.ecoa-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #2f3b8f;
}

.ecoa-item p {
  font-size: 15px;
}

.ecoa-contexto {
  text-align: center;
  margin-bottom: 100px;
}

.ecoa-contexto h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.ecoa-testimonios {
  margin-bottom: 80px;
}

.ecoa-testimonios h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 24px;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.testimonio-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.testimonio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.testimonio-texto {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

.testimonio-autor {
  font-size: 14px;
  font-weight: 600;
  color: #2f3b8f;
}

.ecoa-cta {
  text-align: center;
}

/* ECOA VALOR */

.ecoa-valor {
  margin: 100px auto 0;
  padding: 60px;
  background: #f7f8fc;
  border-radius: 20px;
  max-width: 800px;
  text-align: center;
}

.ecoa-valor h3 {
  font-size: 28px;
  margin-bottom: 15px;

}

.ecoa-valor p {
  max-width: 600px;
  margin: 0 auto;
  color: #555;
}

/* TESTIMONIOS ECOA */

.ecoa-testimonios {
  margin-top: 60px;
  text-align: center;
}

.ecoa-testimonios h3 {
  font-size: 24px;
  margin-bottom: 40px;
}

/* reutilizamos grid existente pero lo reforzamos */

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.testimonio-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
}

.testimonio-texto {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonio-autor {
  font-size: 14px;
  color: #777;
}

/* CTA */

.ecoa-cta {
  display: inline-block;
  margin-top: 20px;
}




//* ============================= */
/* NUEVO BLOQUE ECOA  DECLARADO POR MARIANA */
/* ============================= */

.ecoa-respaldo {
  margin: 100px auto;
  text-align: center;
  max-width: 800px;
}

.ecoa-respaldo h3 {
  font-size: 26px;
  margin-bottom: 15px;
  text-align: center;
}

.ecoa-respaldo p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.ecoa-datos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.ecoa-datos div {
  background: #f7f8fc;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 600;
}

.dato:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.05);
}

.dato span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #2f3b8f;
  margin-bottom: 5px;
}

.dato p {
  font-size: 14px;
  color: #666;
}



/* ============================= */
/* MOBILE - BLOQUE ECOA COMPLETO */
/* ============================= */

@media (max-width: 768px) {

  /* SECCIÓN */
  .ecoa {
    padding: 80px 20px;
  }

  /* CONTAINER (🔥 el mayor problema) */
  .ecoa .container {
    padding: 40px 20px;
  }

  /* HEADER */
  .ecoa-header h2 {
    font-size: 28px;
  }

  .ecoa-subtitulo {
    font-size: 15px;
  }

  /* GRID PRINCIPAL */
  .ecoa-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  /* IMAGEN */
  .ecoa-imagen {
    display: flex;
    justify-content: center;
  }

  /* SUB GRID */
  .ecoa-estructura {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .ecoa-item {
    text-align: center;
  }

  /* RESPALDO */
  .ecoa-respaldo {
    margin: 60px auto;
    padding: 0 10px;
  }

  .ecoa-respaldo h3 {
    font-size: 22px;
  }

  /* 🔥 FIX REAL ECOA DATOS */
  .ecoa-datos {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .ecoa-datos div {
    width: 100%;
    max-width: 220px;
  }

  /* VALOR */
  .ecoa-valor {
    padding: 30px 20px;
    margin-top: 60px;
  }

  .ecoa-valor h3 {
    font-size: 22px;
  }

  /* TESTIMONIOS */
  .testimonios-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonio-card {
    text-align: center;
  }

  /* CTA */
  .ecoa-cta {
    margin-top: 20px;
  }

}



/* PROGRAMA DETALLE ECOA */
/* ============================= */
.programa-detalle {
  padding: 120px 0;
  background-color: #ffffff;
  scroll-margin-top: 100px;

  animation: fadeUp 0.8s ease;
}

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

.programa-header {
  text-align: center;
  margin-bottom: 80px;
}

.programa-header h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.programa-subtitulo {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: #555;
}

/* GRID PRINCIPAL */

.programa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.programa-descripcion {
  margin-bottom: 30px;
  line-height: 1.6;
}

.programa-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; /* antes 30 */
}

.programa-info .info-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.programa-info .info-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.06);
  border-color: #e0e4ff;
}

.programa-info h4 {
  color: #2f3b8f;
  font-size: 13px;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.programa-info p {
  font-size: 15px;
  color: #444;
}

/* ============================= */
/* TEMÁTICAS  ECOA */
/* ============================= */

.tematicas-detalle {
  text-align: center;
  margin-bottom: 120px;
}

.tematicas-detalle::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradiente-marca);
  margin: 0 auto 30px auto;
  border-radius: 2px;
}

.tematicas-detalle h3 {
  font-size: 26px;
  margin-bottom: 40px;
}

.tematicas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}



.tema {
  padding: 18px;
  background-color: #f7f8fc;
  border-radius: 10px;
  font-size: 15px;

  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tema:hover {
  transform: translateY(-3px);
  border-color: #e0e4ff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* ============================= */
/* EXPERIENCIA */
/* ============================= */

.experiencia {
  text-align: center;
}

.experiencia h3 {
  font-size: 26px;
  margin-bottom: 40px;
}

.experiencia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.experiencia-item {
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background-color: #ddd;

  transition: all 0.4s ease;
}

.experiencia-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}


.programa-imagen img {
  width: 100%;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

.programa-imagen:hover img {
  transform: scale(1.03);
}


.programa-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* por si en mobile bajan */
  margin: 80px auto 0;
  border-top: 1px solid #eee;
  
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
  .programa-grid {
    grid-template-columns: 1fr;
  }

  .tematicas-grid {
    grid-template-columns: 1fr;
  }

  .experiencia-grid {
    grid-template-columns: 1fr;
  }
}





/* ============================= */
/* MOBILE - PROGRAMA COMPLETO- CAPACITACIONES  */
/* ============================= */

@media (max-width: 768px) {

  /* SECCIÓN */
  .programa-detalle {
    padding: 80px 20px;
  }

  /* HEADER */
  .programa-header h2 {
    font-size: 28px;
  }

  .programa-subtitulo {
    font-size: 15px;
  }

  /* GRID PRINCIPAL */
  .programa-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  /* IMAGEN */
  .programa-imagen {
    display: flex;
    justify-content: center;
  }

  /* CONTENIDO */
  .programa-contenido {
    text-align: center;
  }

  .programa-descripcion {
    font-size: 15px;
  }

  /* INFO */
  .programa-info {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .info-item {
    text-align: center;
  }

  /* TEMÁTICAS */
  .tematicas-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .tema {
    font-size: 14px;
    padding: 15px;
  }

  /* EXPERIENCIA */
  .experiencia-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .experiencia-item {
    height: 180px;
    position: relative;
  }

}
/* ============================= */
/* EXPERIENCIA EN ACCIÓN */
/* ============================= */

.experiencia {
  margin: 80px 0;
  text-align: center;
}

.experiencia h3 {
  font-size: 22px;
  margin-bottom: 25px;
}

/* GRID */
.experiencia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ITEM */
.experiencia-item {
  border-radius: 12px;
  overflow: hidden;
  background: #000;

  height: 180px; /* 🔥 controlamos altura manual */
}

/* VIDEO */
.experiencia-item video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* IMAGEN */
.experiencia-item img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 🔥 clave */
  display: block;
}

/* HOVER SUAVE */
.experiencia-item:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
}

@media (max-width: 768px) {

  .experiencia-grid {
    grid-template-columns: 1fr;
  }

  .experiencia-item {
    height: 200px;
  }

}

/* ============================= */
/* PROGRAMAS FORMATIVOS */
/* ============================= */

.programas-formativos {
  padding: 120px 0;
  background-color: #f7f7f7;
}

.programas-header {
  text-align: center;
  margin-bottom: 80px;
}

.programas-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.programas-intro {
  font-size: 18px;
  max-width: 750px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
  color: #555;
}

/* BLOQUES */

.programa-bloque {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  transition: all 0.4s ease;

}
.programa-bloque:hover{
  transform: translateY(-6px);
  
}
.programa-bloque.reverse {
  flex-direction: row-reverse;
}

.programa-imagen {
  flex: 1;
    transition: transform 0.5s ease;

}
.programa-bloque:hover img {
  transform: scale(1.03);
}



.programa-contenido {
  flex: 1;
}

.programa-contenido h3 {
  font-size: 28px;
  margin-bottom: 15px;
}
.programa-contenido h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin-top: 10px;
  background: var(--gradiente-marca);
  border-radius: 2px;
}

.programa-contenido p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

.programa-contenido ul {
  margin-bottom: 25px;
}
.programa-contenido ul li{
  margin-bottom: 10px;
  color: #555;
}

/* ============================= */
/* SCERTIFICACIÓ DEPORTIVA INTEGRAL*/
/* ============================= */
.programa-subbloque {
  max-width: 720px;
  margin: -40px auto 100px auto;

  padding: 40px 35px;

  background: linear-gradient(180deg, #ffffff, #fafafa);
  border-radius: 18px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);

  text-align: center;

  transition: all 0.35s ease;
}

.programa-subbloque:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

/* TAG */
.tag-certificacion {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;

  font-size: 12px;
  font-weight: 600;

  background: rgba(183,110,0,0.1);
  color: #b76e00;

  border-radius: 999px;
}

/* TITULO */
.programa-subbloque h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2f3b8f;
}

/* TEXTO */
.programa-subbloque p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* TEXTO SECUNDARIO */
.sub-extra {
  font-size: 14px;
  color: #666;
}

/* LISTA */
.sub-lista {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.sub-lista li {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.sub-lista li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2f3b8f;
}

/* CIERRE */
.sub-cierre {
  margin-top: 15px;
  font-style: italic;
  font-size: 14px;
  color: #777;
}

/* LINEA SUPERIOR */
.programa-subbloque::before {
  content: "";
  display: block;
  width: 35px;
  height: 3px;
  background: var(--gradiente-marca);
  margin: 0 auto 15px auto;
  border-radius: 2px;
}
/* ============================= */
/* TESTIMONIO VIDEO */
/* ============================= */

.testimonio-video {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 15px;
}

.testimonio-video img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.testimonio-video:hover img {
  transform: scale(1.05);
}

/* PLAY */

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(2px);

  transition: all 0.3s ease;
}

.play-overlay span {
  font-size: 40px;
  color: #fff;
}

.testimonio-video:hover .play-overlay {
  background: rgba(0,0,0,0.35);
}

/* ============================= */
/* TESTIMONIO DEPORTIVO */
/* ============================= */
.testimonio-img {
  position: relative;
  width: 100%;
  max-width: 600px; /* ⬅️ más chico */
  margin: 40px auto; /* menos aire */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* IMAGEN */
.testimonio-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 10%; /* 🔥 ajusta el foco */
  display: block;
}

/* OVERLAY */
.testimonio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 22px;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.25),
    transparent
  );

  color: #fff;
}
/* TITULO */
.testimonio-overlay h4 {
  font-size: 18px; /* ⬅️ más chico */
  margin-bottom: 6px;
  color: white;
}

/* TEXTO */
.testimonio-overlay p {
  font-size: 13px;
  max-width: 320px;
  margin-bottom: 6px;
  color: white;
}

/* AUTOR */
.testimonio-autor {
  font-size: 11px;
  opacity: 0.8;
 
}
.testimonio-autor p {
   color: white;

}

/* TAG */
.tag-testimonio {
  font-size: 11px;
  padding: 4px 10px;
}
.btn-testimonio:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.testimonio-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.testimonio-img {
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonio-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}
.testimonio-content{
  background-color: #3b4cca;
  border-radius: 12px;
}

/* CTA sutil */
.ver-mas {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.9;
}

/* MOBILE TESTIMONIO DEPORTISTA*/
@media (max-width: 768px) {

  .testimonio-deportivo {
    margin: 80px 16px;
  }

  .testimonio-hero img {
    height: 320px;
  }

  .testimonio-overlay {
    padding: 20px;
  }

  .testimonio-overlay h4 {
    font-size: 18px;
  }

  .testimonio-overlay p {
    font-size: 14px;
  }

  .btn-testimonio {
    font-size: 12px;
    padding: 9px 14px;
  }

}

/* =====================================================
   🔹 BLOQUE AVANZADO- COACHES CERTIFICADOS (DISTINCIÓN)
===================================================== */


/* =====================================================
   🔹 HEADER SECCIÓN AVANZADA
===================================================== */

.bloque-avanzado-header {
  text-align: center;
  margin-top: 140px;
  margin-bottom: 40px;
}

.bloque-avanzado-header p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

/* Tag refinada */
.tag-avanzado {
  display: inline-block;
  padding: 6px 14px;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;

  border-radius: 999px;

  background: rgba(47, 59, 143, 0.08);
  color: #2f3b8f;

  text-transform: uppercase;
}

.bloque-avanzado {
  margin-top: 120px; /* 🔥 separación real */

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fafbff 100%
  );

  border: 1px solid rgba(47, 59, 143, 0.08);
  border-radius: 20px;

  box-shadow: 0 25px 60px rgba(0,0,0,0.06);

  padding: 60px 40px;
}

.bloque-avanzado .programa-tag {
  background: rgba(47, 59, 143, 0.08);
  color: #2f3b8f;

  font-size: 11px;
  letter-spacing: 0.5px;

  padding: 6px 12px;
  border-radius: 999px;

  margin-bottom: 12px;

  text-transform: uppercase;
}

.bloque-avanzado .programa-imagen {
  display: flex;
  justify-content: center;
}

.bloque-avanzado .bloque-img {
  width: 100%;
  max-width: 420px;

  border-radius: 16px;
  overflow: hidden;

  background: #fff;

  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.bloque-avanzado::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;

  background: var(--gradiente-marca);

  margin-bottom: 20px;
  border-radius: 2px;
}



/* ============================= */
/* TESTIMONIOS */
/* ============================= */

.programas-testimonios {
  text-align: center;
  margin-top: 80px;
}

.programas-testimonios h3 {
  font-size: 26px;
  margin-bottom: 40px;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.testimonio-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.testimonio-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.testimonio-texto {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

.testimonio-autor {
  font-size: 14px;
  font-weight: 600;
  color: #2f3b8f;
}


.cta-final {
  background: linear-gradient(135deg, #f7f7f7, #ffffff);
  padding: 100px 20px;
  text-align: center;
}

.cta-final h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.cta-final p {
  margin-bottom: 25px;
  color: #666;
}

/* =====================================================
   🔹 PRÓXIMAS FORMACIONES
===================================================== */

.proximas-formaciones {
  padding: 120px 20px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

/* HEADER */

.proximas-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.proximas-header h2 {
  font-size: 28px;
  margin: 12px 0;
}

.proximas-header .intro {
  color: #666;
  line-height: 1.6;
}

/* TAG HEADER */

.tag-header {
  background: rgba(47, 59, 143, 0.08);
  color: #2f3b8f;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
}

/* LISTA */

.proximas-lista {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ITEM */

.proxima-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #eee;

  transition: all 0.3s ease;
  position: relative;
}

/* Hover sutil */

.proxima-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* TAG ITEM */

.proxima-item .tag {
  display: inline-block;
  background: #fff4e6;
  color: #b76e00;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

/* TÍTULO */

.proxima-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

/* TEXTO */

.proxima-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* =====================================================
   🔹 MICRO DETALLE PRO (línea superior)
===================================================== */

.proxima-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 40px;
  height: 3px;
  background: var(--gradiente-marca);
  border-radius: 2px;
}

/* =====================================================
   🔹 MOBILE
===================================================== */

@media (max-width: 768px) {

  .proximas-formaciones {
    padding: 80px 16px;
  }

  .proximas-header h2 {
    font-size: 24px;
  }

  .proximas-header .intro {
    font-size: 14px;
  }

  .proximas-lista {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .proxima-item {
    padding: 22px;
  }

  .proxima-item h3 {
    font-size: 16px;
  }

  .proxima-item p {
    font-size: 13.5px;
  }

}










/* =====================================================
   🔹 PAGINA INTERNA PARA COACHES CERTIFICADOS
===================================================== */


/* =====================================================
   🔹 PAGINA INTERNA PARA COACHES CERTIFICADOS ( MENU SECUNDAIRO )
===================================================== */

.breadcrumb {
  max-width: 1000px;
  margin: 20px auto 0;
  padding: 0 20px;

  font-size: 13px;
  color: #888;

  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  text-decoration: none;
  color: #666;
  transition: 0.2s;
}

.breadcrumb a:hover {
  color: #2f3b8f;
}

.breadcrumb .current {
  color: #222;
  font-weight: 500;
}
#card-deportivo {
  scroll-margin-top: 100px; /* ajustalo según tu header */
}


/* =====================================================
   🔹 HERO (PÁGINA INTERNA - CERTIFICADOS)
===================================================== */

.breadcrumb {
  max-width: 1000px;
  margin: 20px auto 0;
  padding: 0 20px;

  font-size: 13px;
  color: #888;

  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  text-decoration: none;
  color: #666;
  transition: 0.2s;
}

.breadcrumb a:hover {
  color: #2f3b8f;
}

.breadcrumb .current {
  color: #222;
  font-weight: 500;
}



.avanzado-hero {
  padding: 120px 20px 60px;
  text-align: center;
}

.avanzado-hero h1 {
  font-size: 32px;
  margin: 10px 0;
}

.avanzado-hero p {
  max-width: 600px;
  margin: 10px auto 0;
  color: #555;
  line-height: 1.6;
}

.tag-avanzado {
  display: inline-block;
  background: #fff4e6;
  color: #b76e00;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}


/* =====================================================
   🔹 INTRO / FRASE PUENTE
===================================================== */
.intro-avanzado {
  text-align: center;
  max-width: 650px;
  margin: 20px auto 60px;
  color: #666;
  line-height: 1.6;
}


/* =====================================================
   🔹 GRID DETALLE (páginas internas)
===================================================== */
.detalle-formaciones {
  margin-top: 80px;
  padding: 100px 20px;
}

.detalle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.detalle-formaciones.avanzadas {
  background: radial-gradient(
    circle at top,
    rgba(47, 59, 143, 0.04),
    transparent 60%
  )
}

/* =====================================================
   🔹 CARDS INTERNAS (VERSIÓN PREMIUM)
===================================================== */
.detalle-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  padding: 45px 35px;
  border-radius: 18px;
  max-width: 420px;
  border: 1px solid #eee;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Glow sutil */
.detalle-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(47, 59, 143, 0.06),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover */
.detalle-card:hover::before {
  opacity: 1;
}

.detalle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.10);
  transform: none;
  box-shadow: none;


}
.detalle-card h3 {
  font-size: 21px;
  font-weight: 600;
  color: #222;
}

.detalle-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.detalle-card ul {
  margin-bottom: 20px;
  padding-left: 0;
  list-style: none;
}

.detalle-card ul li {
  font-size: 13.5px;
  color: #444;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.detalle-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2f3b8f;
}
.detalle-card .btn-primary {
  display: block;
  margin: 20px auto 0 auto;
  text-align: center;
  width: fit-content;
  position: relative;
  z-index: 2;
}



.detalle-card:nth-child(1) {
  border-top: 3px solid rgba(47, 59, 143, 0.15);
}

.detalle-card:nth-child(2) {
  border-top: 3px solid rgba(183, 110, 0, 0.15);
}

.card-intro {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
}

.card-text {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.card-cierre {
  font-size: 13px;
  font-style: italic;
  color: #777;
  margin-top: 10px;
}
/* ============================= */
/* TAGS DE CARD */
/* ============================= */

.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;

  padding: 6px 12px;
  border-radius: 999px;

  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Variante 1 */
.card-tag.especializacion {
  background: rgba(47, 59, 143, 0.08);
  color: #2f3b8f;
}

/* Variante 2 */
.card-tag.entrenamiento {
  background: rgba(183, 110, 0, 0.08);
  color: #b76e00;
}



/* ============================= */
/* MOBILE - PROGRAMAS FORMATIVOS */
/* ============================= */

@media (max-width: 768px) {

  /* SECCIÓN */
  .programas-formativos {
    padding: 80px 20px;
  }

  /* HEADER */
  .programas-header h2 {
    font-size: 28px;
  }

  .programas-intro {
    font-size: 15px;
  }

  /* BLOQUES */
  .programa-bloque {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    margin-bottom: 60px;
  }

  .programa-bloque.reverse {
    flex-direction: column;
  }

  /* IMAGEN */
  .programa-imagen {
    display: flex;
    justify-content: center;
  }

  /* CONTENIDO */
  .programa-contenido {
    text-align: center;
  }

  .programa-contenido h3 {
    font-size: 24px;
  }

  .programa-contenido p {
    font-size: 15px;
  }

  /* LISTAS */
  .programa-contenido ul {
    padding-left: 0;
    list-style-position: inside;
  }

  /* 🔥 SUB BLOQUE (CLAVE) */
  .programa-subbloque {
    margin: 20px auto 60px auto; /* sacamos el negativo */
    padding: 25px 20px;
  }

  .programa-subbloque h4 {
    font-size: 18px;
  }

  .programa-subbloque p {
    font-size: 14px;
  }

  /* TESTIMONIOS */
  .testimonios-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonio-card {
    padding: 25px;
    text-align: center;
  }

  /* CTA FINAL */
  .cta-final {
    padding: 80px 20px;
  }

  .cta-final h2 {
    font-size: 26px;
  }

  .cta-final p {
    font-size: 15px;
  }

}
/* NUEVO BLOQUE CTA */

.ecoa-cta-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn-secondary {
  background: transparent;
  border: 1px solid #2f3b8f;
  color: #2f3b8f;
}

.btn-secondary:hover {
  background: #2f3b8f;
  color: #fff;
}
/* =====================================================
   📱 RESPONSIVE MOBILE (max-width: 768px)
   Página: Coaches Certificados
===================================================== */

  /* =====================================================
     🔹 Hmenu secundario 
  ===================================================== */
@media (max-width: 768px) {

  .breadcrumb {
    font-size: 12px;
    gap: 6px;
  
}


  /* =====================================================
     🔹 HERO
  ===================================================== */



  .avanzado-hero {
    padding: 80px 20px 40px;
  }

  .avanzado-hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .avanzado-hero p {
    font-size: 15px;
  }

  .tag-avanzado {
    font-size: 11px;
    padding: 5px 10px;
  }


  /* =====================================================
     🔹 INTRO / FRASE PUENTE
  ===================================================== */

  .intro-avanzado {
    font-size: 14px;
    margin: 10px auto 40px;
    padding: 0 10px;
    line-height: 1.6;
  }


  /* =====================================================
     🔹 SECCIÓN GENERAL
  ===================================================== */

  .detalle-formaciones {
    padding: 60px 15px;
    margin-top: 40px;
  }


  /* =====================================================
     🔹 GRID (1 columna en mobile)
  ===================================================== */

  .detalle-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }


  /* =====================================================
     🔹 CARDS INTERNAS
  ===================================================== */

  .detalle-card {
    padding: 25px 20px;
    border-radius: 14px;
  }

  .detalle-card h3 {
    font-size: 18px;
  }

  .detalle-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .detalle-card ul {
    margin-bottom: 20px;
  }

  .detalle-card ul li {
    font-size: 13px;
    margin-bottom: 6px;
  }


  /* =====================================================
     🔹 BOTONES (FULL WIDTH)
  ===================================================== */

  .detalle-card .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 14px;
  }

}



/* SECCIONES PRINCIPALES DEL SITIO- SOBRE NOSOTRAS- 2/4*/

/* - SOBRE NOSOTRAS- 2/4*/

/* SOBRE NOSOTRAS- HERO */
.sobre-hero {
  position: relative;
  background: url("../assets/img/hero-sobrenosotras.webp");
  background-size: cover;
  background-repeat: no-repeat;
 background-position: center 25%;
  padding: 120px 0 80px 0; /* 🔥 más equilibrado */
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 90vh;

}

.sobre-hero .overlay {
  position: absolute;
  inset: 0;
 background: linear-gradient(
  to right,
  rgba(0, 0, 0, 0.7),
  rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  max-width: 600px;
  text-align: left;
  z-index: 2;
  margin-left: 40px;
}
.hero-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

/* GENERAL */
.sobre-nosotras {
  padding-top: 0;
  margin-top: 0;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding:  0;
}



p {
  line-height: 1.7;
  color: #444;
}
/* QUIÉNES SOMOS */
.quienes-somos {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  margin-top: 80px;
}

/* TÍTULO */
.quienes-somos h2 {
  max-width: 500px;
  margin-bottom: 30px;
}

/* TEXTO */
.quienes-somos p {
  margin-bottom: 18px;
  line-height: 1.7;
  color: #444;
}

/* 🔥 FRASE DESTACADA */
.destacado {
  font-weight: 500;
  color: #2f3b8f;
  margin-top: 10px;
}

/* 🔥 SEPARACIÓN VISUAL */
.quienes-img {
  margin-top: 80px;
}

/* IMAGEN */
.quienes-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  margin-bottom: 150px;

  /* 🔥 más elegante */
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* EQUIPO */
.equipo {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-bottom: 140px;
  margin-top: 90px;
  
}

.persona {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 80px;
  align-items: center;
 
}

.persona.reverse {
  flex-direction: row-reverse;

}
.persona-img img {
  width: 320px;
  height: 450px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.persona-img img:hover {
  transform: scale(1.02);
}

.persona-info {
  flex: 1;
  max-width: 520px;
}
.persona-info p {
  line-height: 1.7;
  margin-bottom: 12px;
}

.persona-info h3 {
  font-size: 30px;
  margin-bottom: 5px;
}
.persona-info h4 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #2f3b8f;
}
.persona-info ul {
  list-style: none;
  padding: 0;
}

.persona-info ul li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.persona-info ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2f3b8f;
}

.rol {
  display: block;
  font-size: 14px;
  color: #2f3b8f;
  margin-bottom: 25px;
}

blockquote {
  margin-top: 20px;
  font-style: italic;
  color: #2f3b8f;
}


/* SOBRE NOSOTRAS- CTA FINAL */
.cta-final {
  text-align: center;
}


/* ===================== */
/* IDENTIDAD (NUEVO) */
/* ===================== */

.identidad {
  margin-bottom: 80px;
  margin-top: 80px;
 
}
.identidad-card:nth-child(2) {
  transform: translateY(20px);
}

/* HEADER */

.identidad-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px auto;
  margin-bottom: 100px;
}

.identidad-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
 align-content: center;
}

.identidad-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* GRID */

.identidad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  display: flex;


}

/* CARDS */
.identidad-card {
  background: #f7f7f7;
  padding: 50px;
  border-radius: 18px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  width: auto;
  

}

.identidad-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}
.identidad-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  position: relative;
}
.identidad-card h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #2f3b8f;
  margin-top: 8px;
}
.identidad-card p {
  line-height: 1.7;
}

/* VALORES (especial) */

.valores-card {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.valores-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.valores-lista li {
  margin-bottom: 20px;
  padding-left: 18px;
  position: relative;
}

.valores-lista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #2f3b8f;
  border-radius: 50%;
}

.valores-lista strong {
  display: block;
  color: #2f3b8f;
  margin-bottom: 5px;
}

.valores-lista span {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}


/* RESPONSIVE DE LA SECCION - SOBRE NOSOTRAS  */


/* - RESPONSIVE-HERO   */
@media (max-width: 768px) {

  .sobre-hero {
    min-height: auto;
    padding: 100px 20px;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

}
/* RESPONSIVE- CONTENIDO ( QUIENES SOMOS )    */
@media (max-width: 768px) {

  .quienes-somos {
    text-align: center;
    margin-top: 60px;
    padding: 0 10px;
  }

  .quienes-somos h2 {
    margin: 0 auto 20px auto;
    font-size: 26px;
    line-height: 1.3;
    text-align: center;
  }

  .quienes-img img {
    max-width: 100%;
    margin-bottom: 80px;
  }
  .quienes-somos p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: left;
  }

}

/* RESPONSIVE- CONTENIDO ( EQUIPO)    */



  @media (max-width: 768px) {
  .equipo{
    gap: 80px;
  }
  .persona {
    flex-direction: column;
    gap: 25px;
   align-items: center;
  }

  .persona.reverse {
    flex-direction: column;
  }

  .persona-img img {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin: 0 auto;
  }

  .persona-info {
    width: 100%;
    max-width: 480;
    text-align: center;
  }

  .persona-info h3 {
    font-size: 24px;
  }

  .persona-info p {
    font-size: 15px;
  }

}
/* RESPONISVE- CONTENIDO ( IDENTIDAD)    */
@media (max-width: 768px) {

  .identidad {
    margin-top: 60px;
  }

  .identidad-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .identidad-card {
    padding: 25px;
  }

  .identidad-header h2 {
    font-size: 28px;

  }

}
/* RESPONISVE- IMAGEN ( IMG DE LAS DOS)    */
@media (max-width: 768px) {

  .quienes-img img {
    max-width: 100%;
    margin-bottom: 80px;
  }

}







/*SECCIONES PRINCIPALES DEL SITIO-  SECCION METODO 3/4*/

/* SECCION METODO*3/4/




/* HEADER */
.metodo-header {
  text-align: center;
  margin-bottom: 80px;
}

.metodo-header h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.metodo-intro {
  font-size: 18px;
  max-width: 750px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  color: #555;
}



/* DESCRIPCION */
.metodo-descripcion {
  max-width: 800px;
  margin: 0 auto 100px auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* ETAPAS */
.metodo-etapas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 120px;
}
.etapa {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease; /* 🔥 clave */
}

.etapa:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.numero {
  transition: transform 0.3s ease;
}

.etapa:hover .numero {
  transform: scale(1.1);
}


.etapa h3 {
  margin-bottom: 15px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.etapa:hover h3 {
  color: #2f3b8f;
}


.etapa p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* DIFERENCIAL */
.metodo-diferencial {
  margin-bottom: 100px;
  text-align: center;
}

.metodo-diferencial h2 {
  margin-bottom: 60px;
  font-size: 28px;
}

.diferencial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.diferencial-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  transition: all 0.35s ease;
}

.diferencial-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
  border-color: #ddd;
}

.diferencial-item h4 {
  transition: color 0.3s ease;
}

.diferencial-item:hover h4 {
  color: #2f3b8f;
}




/* CTA */
.metodo-cta {
  text-align: center;
  margin-bottom: 30px;
}
/* RESPONSIVE MOBILE SECCION METODO */

@media (max-width: 768px) {

  .metodo {
    padding: 80px 20px;
  }

  .metodo-header h1 {
    font-size: 28px;
  }

  .metodo-intro {
    font-size: 16px;
    padding: 0 10px;
  }

  .metodo-descripcion {
    font-size: 15px;
    margin-bottom: 60px;
  }

  .metodo-etapas {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .etapa {
    padding: 25px;
    text-align: center;
  }

  .diferencial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .metodo-diferencial h2 {
    font-size: 24px;
  }

}



/* SECCION CONTACTO 4/4*/
.contacto {
  padding: 100px 20px;
  text-align: center;
}

.contacto-intro {
  max-width: 500px;
  margin: 0 auto 40px;
  color: #555;
}

/* WHATSAPP */
.contacto-whatsapp {
  background: linear-gradient(135deg, #f5f7ff, #eef1ff);
  padding: 40px 30px;
  border-radius: 18px;
  margin: 40px auto;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.btn-whatsapp {
  background: #2f3b8f;
  color: #fff;
  padding: 16px 34px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(47,59,143,0.25);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(47,59,143,0.35);
}

/* INFO */
.contacto-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.contacto-item{
  text-align: center;
}
.contacto-item a {
  text-decoration: none;
  color: #2f3b8f;
  font-weight: 500;
  display: inline-block;
  margin-top: 5px;
}

.contacto-item h4 {
  margin-bottom: 8px;
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contacto-item p {
  color: #555;
  font-size: 15px;
  color: #333;
}
/* RESPONSIVE SECTION CONTACTO MOBILE */
@media (max-width: 768px) {

  .contacto {
    padding: 80px 20px;
  }

  .contacto-whatsapp {
    padding: 25px 20px;
  }
}

.contacto-note {
  font-size: 13px;
  color: #777;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .contacto-info {
    flex-direction: column;
    gap: 20px;
  }
}

/* CTA EN MOBILE GENERAL PARA TODAS LAS SECCIONES */
@media (max-width: 768px) {

  .btn-secondary {
    background: #f4f6ff;
    color: #2f3b8f;
    border: 1px solid #d6dbff;
  }

}

