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

:root {
  --azul: #1F2B4D;
  --ciruela: #44365D;
  --malva: #B98FA4;
  --manteca: #F5F1E8;
  --malva-claro: #E8D5DF;
  --texto-suave: rgba(31,43,77,0.75);
  --borde: rgba(31,43,77,0.1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--manteca);
  color: var(--azul);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(245,241,232,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--borde);
  transition: padding 0.3s;
}
.nav.scrolled { padding: 1rem 3rem; }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--azul); text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem;
}
.nav-logo-texto { line-height: 1; }
.nav-sello {
  width: 46px;
  height: 46px;
  display: block;
  flex-shrink: 0;
  opacity: 1;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 400;
  color: var(--azul);
  text-decoration: none; transition: color 0.2s; padding-bottom: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--azul); border-bottom: 1.5px solid var(--malva); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--azul); transition: all 0.3s; }

/* MENÚ MOBILE */
.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: var(--manteca); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 400;
  color: var(--azul); text-decoration: none; transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--malva); }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 100vh;
  padding-top: 90px;
  overflow: hidden;
}

.hero-left {
  padding: 4.5rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-contenido {
  display: flex;
  flex-direction: column;
}

.etiqueta {
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--malva); margin-bottom: 1.75rem; display: block;
}

.hero-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.2vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--azul);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.subrayado { position: relative; display: inline-block; }
.subrayado::after {
  content: '';
  position: absolute; bottom: -6px; left: 0; right: 0;
  height: 3.5px; background: var(--malva); border-radius: 2px;
}

.hero-bajada {
  font-size: 1.05rem; line-height: 1.88;
  color: var(--texto-suave); font-weight: 400;
  max-width: 460px; margin-bottom: 2.75rem;
}

.hero-btns {
  display: flex; flex-direction: column;
  gap: 1rem; align-items: flex-start;
}

.btn-grupo { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn-principal {
  border-radius: 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  padding: 0.9rem 1.75rem;
  background: var(--azul); color: var(--manteca);
  border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-principal:hover { background: var(--ciruela); transform: translateY(-1px); }

.btn-secundario {
  border-radius: 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  padding: 0.9rem 1.75rem;
  background: var(--ciruela); color: var(--manteca);
  border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-secundario:hover { background: #362849; transform: translateY(-1px); }

.link-terciario {
  font-size: 0.85rem; color: var(--malva);
  cursor: pointer; display: inline-flex;
  align-items: center; gap: 0.4rem;
  text-decoration: none; transition: gap 0.2s;
  font-weight: 400;
}
.link-terciario:hover { gap: 0.65rem; }

/* CITA */
.hero-cita {
  border-top: 0.5px solid var(--borde);
  padding-top: 2rem; margin-top: 3rem;
}
.cita-texto {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-style: italic;
  color: var(--texto-suave); line-height: 1.65;
  padding-left: 1.75rem; position: relative;
}
.cita-texto::before {
  content: '\201C';
  position: absolute; left: 0; top: -0.5rem;
  font-size: 2.8rem; color: var(--malva);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1; font-style: normal;
}

/* FOTO HERO */
.hero-right { position: relative; overflow: hidden; min-height: calc(100vh - 62px); display: flex; align-items: center; justify-content: center; padding: 3rem 3rem 3rem 1.5rem; }
.foto-wrap { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.foto-placeholder {
  width: 100%; height: 480px;
  background: var(--malva-claro);
  border-radius: 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
}
.foto-icono {
  width: 52px; height: 52px;
  border: 1px solid rgba(68,54,93,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.foto-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem; font-weight: 400;
  color: rgba(68,54,93,0.5);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.foto-real {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  border-radius: 20px;
}
.foto-nota {
  border-radius: 12px;
  position: absolute; bottom: 2.5rem; right: 2rem;
  background: var(--azul);
  padding: 1.35rem 1.5rem;
  max-width: 220px;
  box-shadow: 0 6px 28px rgba(31,43,77,0.18);
  z-index: 2;
  border-left: 3px solid var(--malva);
}
.foto-nota-texto {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: normal;
  font-weight: 500;
  color: var(--manteca); line-height: 1.6;
}
.foto-nota-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 500;
  color: var(--manteca); line-height: 1.5;
  margin-bottom: 0.6rem;
}
.foto-nota-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,240,232,0.6); line-height: 1.5;
}

/* SECCIÓN LABEL */
.seccion-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--malva); margin-bottom: 1rem; display: block;
}
.seccion-label--claro { color: rgba(185,143,164,0.8); }

/* BOTONES GLOBALES */
.btn-link {
  font-size: 0.78rem; font-weight: 600;
  color: var(--azul); text-decoration: none;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-bottom: 1.5px solid var(--malva);
  padding-bottom: 2px; display: inline-block;
  transition: color 0.2s;
}
.btn-link:hover { color: var(--malva); }
.btn-cta {
  border-radius: 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  padding: 1rem 2.5rem;
  background: var(--malva); color: var(--manteca);
  border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-cta:hover { background: #a67a92; transform: translateY(-1px); }

/* PRESENTACIÓN */
.seccion-presentacion { border-top: none; margin-top: 0; background: white; }
.pres-inner { display: grid; grid-template-columns: 1.2fr 1fr; min-height: 400px; border-top: 4px solid var(--malva); }
.pres-texto { padding: 5rem 5rem 5rem 4rem; background: white; }
.pres-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 500;
  color: var(--azul); line-height: 1.2; margin-bottom: 1.75rem;
}
.pres-titulo em { font-style: italic; color: var(--ciruela); }
.pres-cuerpo {
  font-size: 1.05rem; line-height: 1.9;
  color: var(--texto-suave); font-weight: 400;
  margin-bottom: 1.25rem;
}
.pres-foto { background: transparent; min-height: 400px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 2.5rem; }
.pres-foto .foto-real { width: 85%; height: 85%; max-height: 420px; object-fit: cover; object-position: center 20%; border-radius: 20px; position: relative; inset: auto; }
.pres-foto .foto-placeholder { position: absolute; inset: 0; }

/* PUERTAS */
.seccion-puertas { border-top: 0.5px solid var(--borde); padding: 5rem 4rem; }
.puertas-intro {
  font-size: 1.15rem; line-height: 1.85;
  color: var(--texto-suave); font-weight: 400;
  max-width: 680px; margin-bottom: 3.5rem;
}
.puertas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.tarjeta {
  border-radius: 16px;
  padding: 2rem 1.75rem; background: white;
  border: 0.5px solid var(--borde);
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tarjeta:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(31,43,77,0.08); }
.tarjeta--oscura { background: var(--azul); border-color: var(--azul); }
.tarjeta--ciruela { background: var(--malva); border-color: var(--malva); }
.tarjeta--ciruela .tarjeta-num { color: rgba(245,241,232,0.45); }
.tarjeta--ciruela .tarjeta-titulo { color: var(--azul); }
.tarjeta--ciruela .tarjeta-texto { color: rgba(31,43,77,0.8); }
.tarjeta--ciruela .tarjeta-btn { color: var(--azul); border-color: rgba(31,43,77,0.35); background: transparent; }
.tarjeta--ciruela .tarjeta-btn:hover { background: var(--azul); color: var(--manteca); border-color: var(--azul); }
.tarjeta-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300;
  color: var(--malva); line-height: 1;
  margin-bottom: 0.25rem;
}
.tarjeta--oscura .tarjeta-num { color: rgba(185,143,164,0.5); }
.tarjeta-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--azul); line-height: 1.15;
}
.tarjeta--oscura .tarjeta-titulo { color: var(--manteca); }
.tarjeta-texto {
  font-size: 0.92rem; line-height: 1.7;
  color: var(--texto-suave); font-weight: 400; flex: 1;
}
.tarjeta--oscura .tarjeta-texto { color: rgba(245,241,232,0.7); }
.tarjeta-btn {
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--azul); text-decoration: none;
  border: 1.5px solid var(--azul); padding: 0.6rem 1.25rem;
  border-radius: 50px;
  display: block; text-align: center;
  transition: all 0.2s; margin-top: auto;
  background: transparent;
}
.tarjeta-btn:hover { background: var(--azul); color: var(--manteca); border-color: var(--azul); }
.tarjeta--oscura .tarjeta-btn:hover { background: var(--manteca); color: var(--azul); }
.tarjeta--oscura .tarjeta-btn { color: var(--manteca); border-color: rgba(245,241,232,0.4); background: transparent; }

/* EJES */
.seccion-ejes { border-top: 0.5px solid var(--borde); background: var(--azul); padding: 5rem 4rem; }
.ejes-cabeza { max-width: 640px; margin-bottom: 4rem; }
.ejes-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400;
  color: var(--manteca); line-height: 1.2; margin-bottom: 1.25rem;
}
.ejes-titulo em { font-style: italic; color: var(--malva); }
.ejes-intro {
  font-size: 1.05rem; line-height: 1.85;
  color: rgba(245,241,232,0.65); font-weight: 400;
}
.ejes-items { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; margin-bottom: 4rem; }
.eje-item { border-top: 1px solid rgba(185,143,164,0.25); padding-top: 2.5rem; padding-bottom: 1rem; position: relative; }
.eje-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 600;
  color: var(--manteca); margin-bottom: 1rem; line-height: 1.2;
}
.eje-texto {
  font-size: 1.05rem; line-height: 1.85;
  color: rgba(245,241,232,0.7); font-weight: 400;
}
.ejes-cierre {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-style: italic;
  color: rgba(185,143,164,0.9);
  border-top: 0.5px solid rgba(185,143,164,0.3);
  padding-top: 2rem; max-width: 720px; line-height: 1.6;
}

/* CHARLAS */
.seccion-charlas { border-top: 0.5px solid var(--borde); padding: 5rem 4rem; }
.charlas-cabeza { margin-bottom: 3.5rem; max-width: 720px; }
.charlas-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 500;
  color: var(--azul); line-height: 1.15; margin-bottom: 1.25rem;
}
.charlas-bajada {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--texto-suave); font-weight: 400;
}
.charlas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; margin-bottom: 3rem; }
.charla-card {
  border-radius: 16px;
  padding: 2.75rem 2.25rem; background: white;
  border: 0.5px solid var(--borde);
  display: flex; flex-direction: column; gap: 0.85rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.charla-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(31,43,77,0.08); }
.charla-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: var(--malva); line-height: 1;
  margin-bottom: 0.25rem;
}
.charla-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 600;
  color: var(--azul); line-height: 1.2;
}
.charla-subtitulo { font-size: 1.05rem; font-style: italic; color: var(--texto-suave); line-height: 1.5; }
.charla-texto { font-size: 1.08rem; line-height: 1.85; color: var(--texto-suave); font-weight: 400; flex: 1; }
.charlas-footer { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }

/* WORKSHOPS */
.seccion-workshops { border-top: 0.5px solid var(--borde); background: var(--malva-claro); }
.workshops-inner { display: grid; grid-template-columns: 1.2fr 1fr; }
.workshops-texto { padding: 5rem 4rem; border-right: 0.5px solid rgba(185,143,164,0.25); }
.workshops-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 500;
  color: var(--ciruela); line-height: 1.2; margin-bottom: 1.75rem;
}
.workshops-cuerpo {
  font-size: 1.05rem; line-height: 1.9;
  color: rgba(68,54,93,0.75); font-weight: 400; margin-bottom: 1.25rem;
}
.workshops-lineas-wrap { padding: 5rem 3.5rem; display: flex; flex-direction: column; justify-content: center; gap: 1.75rem; }
.workshops-lineas-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 500; color: var(--ciruela);
}
.workshops-lineas { display: flex; flex-direction: column; gap: 1rem; }
.workshops-linea {
  border-radius: 0 4px 4px 0;
  font-size: 1rem; line-height: 1.65;
  color: rgba(68,54,93,0.75);
  padding-left: 1.1rem; border-left: 2.5px solid var(--malva); font-weight: 400;
}

/* SOBRE MI */
.seccion-sobre { border-top: 0.5px solid var(--borde); display: grid; grid-template-columns: 1fr 1.3fr; }
.sobre-foto-wrap { min-height: 520px; position: relative; overflow: hidden; background: var(--ciruela); }
.sobre-foto-wrap .foto-placeholder { position: absolute; inset: 0; background: var(--ciruela); }
.sobre-foto-wrap .foto-label { color: rgba(185,143,164,0.4); }
.sobre-contenido { padding: 5rem 4rem; }
.sobre-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 500;
  color: var(--azul); margin-bottom: 0.5rem; line-height: 1.1; white-space: nowrap;
}
.sobre-texto {
  font-size: 1.05rem; line-height: 1.9;
  color: var(--texto-suave); font-weight: 400; margin-bottom: 1.25rem;
}
.sobre-frase {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-style: italic;
  color: var(--ciruela);
  border-left: 2.5px solid var(--malva);
  padding-left: 1.35rem; margin: 2rem 0; line-height: 1.7;
}
.sobre-credenciales { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.5rem; }
.sobre-credencial {
  font-size: 0.95rem; color: var(--texto-suave); font-weight: 400;
  padding-left: 1.1rem; border-left: 1.5px solid rgba(185,143,164,0.4); line-height: 1.5;
}
.sobre-credencial em { font-style: italic; }

/* EBOOK */
.seccion-ebook { border-top: 0.5px solid var(--borde); background: var(--azul); }
.ebook-inner { display: grid; grid-template-columns: 1fr 1.6fr; }
.ebook-tapa-wrap {
  padding: 5rem 3rem 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; gap: 2.5rem;
  border-right: 0.5px solid rgba(185,143,164,0.15);
}
.ebook-tapa {
  border-radius: 12px;
  background: var(--ciruela); width: 150px; aspect-ratio: 3/4;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.35rem;
}
.ebook-tapa-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 500; color: var(--manteca); line-height: 1.3;
}
.ebook-tapa-titulo em { font-style: italic; color: var(--malva); }
.ebook-tapa-autor { font-size: 0.65rem; color: rgba(185,143,164,0.55); margin-top: 0.5rem; }
.ebook-texto { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.ebook-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 400;
  color: var(--manteca); line-height: 1.2; margin-bottom: 1.5rem;
}
.ebook-cuerpo {
  font-size: 1.05rem; line-height: 1.9;
  color: rgba(245,241,232,0.65); font-weight: 400; margin-bottom: 1.25rem;
}

/* TRAYECTORIA */
.seccion-trayectoria { border-top: 0.5px solid var(--borde); padding: 5rem 4rem; }
.tray-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 500; color: var(--azul); margin-bottom: 0.75rem;
}
.tray-texto {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--texto-suave); font-weight: 400;
  margin-bottom: 3rem; max-width: 640px;
}
.tray-logos { display: flex; flex-wrap: wrap; width: 100%; }
.tray-logo {
  padding: 1.5rem 2rem; border: 0.5px solid var(--borde);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 400;
  color: rgba(31,43,77,0.55); letter-spacing: 0.03em;
  margin: -0.5px; transition: color 0.2s, background 0.2s; cursor: default;
  flex: 1; text-align: center;
}
.tray-logo:hover { color: var(--azul); background: white; }
.tray-btns { display: flex; gap: 1.5rem; margin-top: 3rem; flex-wrap: wrap; align-items: center; }

/* CTA */
.seccion-cta {
  border-top: 0.5px solid var(--borde); background: var(--azul);
  padding: 7rem 4rem; display: grid;
  grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.cta-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 400;
  color: var(--manteca); line-height: 1.12;
}
.cta-titulo em { font-style: italic; color: var(--malva); }
.cta-right { display: flex; flex-direction: column; gap: 1.75rem; }
.cta-texto {
  font-size: 1.05rem; line-height: 1.85;
  color: rgba(245,241,232,0.65); font-weight: 400;
}

/* FOOTER */
.footer {
  border-top: 0.5px solid rgba(185,143,164,0.15);
  background: var(--azul); padding: 2.5rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 400; color: rgba(245,241,232,0.45);
}
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-size: 0.82rem; color: rgba(245,241,232,0.4);
  text-decoration: none; letter-spacing: 0.05em; transition: color 0.2s;
}
.footer-links a:hover { color: var(--malva); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo { font-size: 1.15rem; }
  .nav-sello { width: 34px; height: 34px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3rem 1.75rem 2.5rem; }
  .hero-right { min-height: 70vw; position: relative; }
  .foto-wrap { position: relative; height: 70vw; }
  .hero-titulo { font-size: clamp(2.6rem, 7vw, 3.5rem); }
  .pres-inner, .workshops-inner, .seccion-sobre, .seccion-sobre--page, .ebook-inner { grid-template-columns: 1fr !important; }
  .pres-foto { min-height: 50vw; }
  .pres-texto { padding: 3.5rem 2rem; }
  .seccion-puertas, .seccion-charlas, .seccion-trayectoria { padding: 3.5rem 2rem; }
  .puertas-grid, .charlas-grid, .ejes-items { grid-template-columns: 1fr; }
  .seccion-ejes { padding: 3.5rem 2rem; }
  .workshops-texto, .workshops-lineas-wrap { padding: 3rem 2rem; }
  .workshops-texto { border-right: none; border-bottom: 0.5px solid rgba(185,143,164,0.25); }
  .sobre-foto-wrap { min-height: 50vw; }
  .sobre-contenido { padding: 3.5rem 2rem; }
  .ebook-tapa-wrap { padding: 3.5rem 2rem; border-right: none; border-bottom: 0.5px solid rgba(185,143,164,0.15); }
  .ebook-texto { padding: 3.5rem 2rem; }
  .seccion-cta { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 2rem; }
  .tray-logos { flex-direction: column; }
  .tray-logo { border-bottom: 0.5px solid var(--borde); }
  .footer { flex-direction: column; gap: 1.5rem; padding: 2rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 600px) {
  .btn-grupo { flex-direction: column; width: 100%; }
  .btn-principal, .btn-secundario { text-align: center; }
  .cta-titulo { font-size: 2.2rem; }
}

/* VIDEO CHARLA */
.charla-video {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  background: var(--azul);
  padding: 3rem 0;
}
.video-charla {
  width: auto;
  height: 520px;
  max-width: 300px;
  display: block;
  object-fit: cover;
}

/* PÁGINA HEADER */
.pagina-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  padding-top: 62px;
  overflow: hidden;
  border-bottom: 0.5px solid var(--borde);
}
.pagina-header--charlas {
  min-height: 42vh;
}
.pagina-header--simple {
  display: block;
  padding: 6rem 4rem 4rem;
  max-width: 760px;
}
.pagina-header-inner {
  padding: 5rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pagina-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  color: var(--azul);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.pagina-bajada {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--texto-suave);
  font-weight: 400;
  max-width: 520px;
}
.pagina-header-foto {
  overflow: hidden;
  position: relative;
  min-height: 400px;
}
.pagina-header-foto .foto-real {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* CHARLAS DETALLE */
.charlas-grid--detalle { grid-template-columns: repeat(3,1fr); }
.charla-card--detalle { min-height: 480px; }
.charla-temas { margin-top: 1rem; }
.charla-temas-titulo {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--malva);
  margin-bottom: 0.6rem;
}
.charla-temas-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.charla-temas-lista li {
  font-size: 0.9rem;
  color: var(--texto-suave);
  padding-left: 1rem;
  border-left: 1.5px solid rgba(185,143,164,0.35);
  line-height: 1.5;
}
.charla-formato {
  font-size: 0.82rem;
  color: rgba(31,43,77,0.45);
  font-style: italic;
  margin-top: 1rem;
}

/* FORMACIÓN */
.seccion-formacion {
  border-top: 0.5px solid var(--borde);
  padding: 4rem;
}
.formacion-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  margin-top: 1.5rem;
  border: 0.5px solid var(--borde);
}
.formacion-item {
  padding: 2rem 1.75rem;
  border-right: 0.5px solid var(--borde);
}
.formacion-item:last-child { border-right: none; }
.formacion-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--azul);
  line-height: 1.3;
}

/* FOTO ADICIONAL SOBRE MI */
.seccion-foto-adicional {
  border-top: 0.5px solid var(--borde);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.foto-adicional-wrap {
  overflow: hidden;
  min-height: 420px;
  position: relative;
}
.foto-adicional-wrap .foto-real {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.foto-adicional-texto {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* NOTAS */
.seccion-notas {
  border-top: 0.5px solid var(--borde);
  padding: 2rem 4rem 4rem;
}

/* MEDIA KIT */
.seccion-mediakit {
  border-top: 0.5px solid var(--borde);
  background: var(--azul);
  padding: 4rem;
}
.mediakit-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.mediakit-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--manteca);
  margin-bottom: 0.75rem;
}
.mediakit-texto {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245,241,232,0.6);
  font-weight: 400;
  max-width: 500px;
}

/* EBOOK FORM */
.ebook-form { margin-top: 2rem; }
.ebook-form-label {
  font-size: 0.88rem;
  color: rgba(245,241,232,0.6);
  margin-bottom: 1rem;
  display: block;
}
.form-simple {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form-input {
  border-radius: 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  background: rgba(245,241,232,0.08);
  border: 0.5px solid rgba(185,143,164,0.25);
  color: var(--manteca);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input::placeholder { color: rgba(245,241,232,0.3); }
.form-input:focus { border-color: var(--malva); }

/* CONTACTO */
.seccion-contacto {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 100vh;
  padding-top: 62px;
}
.contacto-left {
  background: var(--azul);
  padding: 5rem 3.5rem 4rem;
  display: flex;
  flex-direction: column;
}
.contacto-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--manteca);
  line-height: 1.12;
  margin-bottom: 1.5rem;
}
.contacto-titulo em { font-style: italic; color: var(--malva); }
.contacto-intro {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(245,241,232,0.6);
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.contacto-foto {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  margin-top: auto;
}
.contacto-foto .foto-real {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.contacto-right {
  padding: 5rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-contacto { display: flex; flex-direction: column; gap: 1.25rem; }
.form-fila { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grupo { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(31,43,77,0.5);
}
.contacto-right .form-input {
  background: white;
  border: 0.5px solid var(--borde);
  color: var(--azul);
}
.contacto-right .form-input::placeholder { color: rgba(31,43,77,0.3); }
.contacto-right .form-input:focus { border-color: var(--malva); }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-gracias { text-align: center; padding: 3rem 0; }
.form-gracias-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--azul);
  margin-bottom: 0.75rem;
}
.form-gracias-texto {
  font-size: 1rem;
  color: var(--texto-suave);
}

/* RESPONSIVE PÁGINAS INTERNAS */
@media (max-width: 1024px) {
  .pagina-header { grid-template-columns: 1fr; }
  .pagina-header-foto { min-height: 50vw; position: relative; }
  .pagina-header-foto .foto-real { position: relative; width: 100%; height: 50vw; }
  .pagina-header-foto--sobre { min-height: 520px; }
  .pagina-header-foto--sobre .foto-real { height: 520px; }
  .charlas-grid--detalle, .formacion-grid { grid-template-columns: 1fr; }
  .formacion-item { border-right: none; border-bottom: 0.5px solid var(--borde); }
  .seccion-foto-adicional { grid-template-columns: 1fr; }
  .foto-adicional-wrap { min-height: 50vw; }
  .foto-adicional-texto { padding: 3rem 2rem; }
  .seccion-formacion, .seccion-notas, .seccion-mediakit { padding: 3rem 2rem; }
  .mediakit-inner { flex-direction: column; align-items: flex-start; }
  .seccion-contacto { grid-template-columns: 1fr; }
  .contacto-left { padding: 4rem 2rem 3rem; }
  .contacto-foto { min-height: 50vw; }
  .contacto-right { padding: 3rem 2rem; }
  .form-fila { grid-template-columns: 1fr; }
}

/* NOTAS Y APARICIONES */
.notas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.notas-grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.nota-card {
  border-radius: 16px;
  background: white;
  border: 0.5px solid var(--borde);
  padding: 2.25rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nota-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(31,43,77,0.08); }
.nota-card--video { padding-bottom: 1.75rem; }
.nota-meta { display: flex; justify-content: space-between; align-items: center; }
.nota-fuente {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--malva);
}
.nota-fecha {
  font-size: 0.78rem; color: rgba(31,43,77,0.4);
}
.nota-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500;
  color: var(--azul); line-height: 1.3;
}
.nota-bajada {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--texto-suave); font-weight: 400;
  flex: 1;
}
.nota-link {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--azul);
  border-bottom: 1.5px solid var(--malva);
  padding-bottom: 2px;
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
}
.nota-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 0.5rem 0;
}
.nota-iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

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

.ebook-tapa-img {
  width: 260px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.ebook-portada {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* TRAYECTORIA MEJORADA */
.tray-logo {
  display: flex !important;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
}
.tray-logo-nombre {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--azul);
  display: block;
}
.tray-logo-desc {
  font-size: 0.78rem;
  color: rgba(31,43,77,0.45);
  display: block;
  font-weight: 400;
}

/* VIDEO PREVIEW */
.nota-video-preview {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--azul);
}
.nota-video-thumb {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: opacity 0.2s;
}
.nota-card--video:hover .nota-video-thumb { opacity: 0.85; }
.nota-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* NÚMEROS GRANDES EJES */
.eje-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(185,143,164,0.35);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

/* PUERTAS GRID más aire */
.puertas-grid {
  gap: 1.25rem !important;
}
.tarjeta {
  padding: 2rem 1.75rem 1.75rem !important;
  gap: 0.75rem !important;
}

/* FOTO HERO REDONDEADA CON MARCO DECORATIVO */
.foto-wrap {
  position: relative !important;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 62px);
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.foto-deco-frame {
  position: absolute;
  top: 2.5rem;
  right: 0.5rem;
  width: 75%;
  height: 82%;
  border: 2px solid rgba(185,143,164,0.35);
  border-radius: 24px;
  z-index: 0;
}

.foto-hero-img {
  position: relative !important;
  width: 78% !important;
  height: 85% !important;
  max-height: 580px;
  object-fit: cover !important;
  object-position: center 15% !important;
  border-radius: 24px !important;
  z-index: 1;
  display: block !important;
  inset: auto !important;
}

/* PRES FOTO redondeada */
.pres-foto .foto-real {
  border-radius: 20px !important;
}

/* SOBRE MI foto redondeada */
.sobre-foto-wrap {
  border-radius: 0 16px 16px 0;
  overflow: hidden;
}

/* CHARLA CARDS más redondas */
.charla-card {
  border-radius: 16px !important;
}

/* NOTA hero en azul */
.foto-nota {
  z-index: 2;
}

/* RECORRIDO solo texto */
.seccion-recorrido {
  border-top: 0.5px solid var(--borde);
  padding: 5rem 4rem;
  background: white;
}
.recorrido-inner {
  max-width: 680px;
}

/* EJES FULL WIDTH */
.ejes-cabeza--full {
  max-width: 100%;
  margin-bottom: 3rem;
}
.ejes-cabeza--full .ejes-titulo {
  max-width: 100%;
}
.ejes-cabeza--full .ejes-intro {
  max-width: 100%;
}

/* EJES CIERRE FULL WIDTH */
.ejes-cierre--full {
  max-width: 100% !important;
  font-size: 1.3rem !important;
}

/* WORKSHOPS sin columna derecha */


/* TRAYECTORIA full width */
.tray-logos {
  width: 100%;
}
.tray-logo {
  flex: 1;
  min-width: 0;
}

/* SOBRE MI PAGE — proporción equilibrada */
.seccion-sobre--page {
  grid-template-columns: 1fr 1.6fr;
  min-height: auto !important;
}
.seccion-sobre--page .sobre-foto-wrap {
  min-height: 480px;
}
.seccion-sobre--page .sobre-foto-wrap .foto-real {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .seccion-sobre--page {
    grid-template-columns: 1fr !important;
    grid-template-rows: 70vw auto;
  }
  .seccion-sobre--page .sobre-foto-wrap {
    min-height: 70vw;
    width: 100%;
    border-radius: 0;
    order: -1;
  }
  .seccion-sobre--page .sobre-foto-wrap .foto-real {
    object-position: center 20%;
  }
}

/* FORMACIÓN — 5 items */
.formacion-grid {
  grid-template-columns: repeat(5, 1fr) !important;
}

/* WORKSHOPS FULL WIDTH */
.seccion-workshops--full .workshops-inner {
  grid-template-columns: 1fr !important;
}
.seccion-workshops--full .workshops-texto {
  border-right: none !important;
  max-width: 100% !important;
  padding: 5rem 4rem !important;
}
.seccion-workshops--full .workshops-titulo {
  font-size: 2.2rem;
}
.seccion-workshops--full .workshops-cuerpo {
  max-width: 720px;
}

/* TRAYECTORIA FULL WIDTH */
.seccion-trayectoria--full {
  padding: 5rem 4rem;
}
.seccion-trayectoria--full .tray-titulo,
.seccion-trayectoria--full .tray-texto {
  max-width: 100%;
}
.seccion-trayectoria--full .tray-logos {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

/* LINKEDIN FOOTER */
.footer-linkedin {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: rgba(245,241,232,0.5);
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-linkedin:hover { color: var(--malva); }
.footer-linkedin svg { flex-shrink: 0; }

/* NAV más grande */
.nav-logo {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
}
.nav-links a {
  font-size: 1.05rem !important;
}

/* FOOTER SIMPLE */
.footer--simple {
  display: flex !important;
  align-items: center !important;
  gap: 1.5rem !important;
  padding: 1.75rem 4rem !important;
  flex-wrap: wrap;
}
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(245,241,232,0.5);
  font-family: 'Source Sans 3', sans-serif;
}
.footer--simple .footer-links { display: none !important; }
.footer--simple .footer-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245,241,232,0.3);
  color: rgba(245,241,232,0.6);
  transition: all 0.2s;
}
.footer--simple .footer-linkedin:hover {
  background: rgba(245,241,232,0.1);
  color: var(--manteca);
  border-color: rgba(245,241,232,0.6);
}

/* WORKSHOPS BLOQUE AZUL */
.seccion-workshops-bloque {
  padding: 5rem 4rem;
  background: var(--manteca);
}
.workshops-bloque-inner {
  background: var(--azul);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  padding: 4rem;
  gap: 3rem;
}
.workshops-bloque-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--manteca);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.workshops-bloque-texto {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(245,241,232,0.65);
  font-weight: 400;
  margin-bottom: 1rem;
}
.workshops-bloque-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.workshops-bloque-lineas-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--malva);
  margin-bottom: 0.75rem;
}
.workshops-bloque-lineas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.workshops-bloque-linea {
  font-size: 0.95rem;
  color: rgba(245,241,232,0.7);
  padding: 0.75rem 1rem;
  background: rgba(245,241,232,0.07);
  border-radius: 8px;
  font-weight: 400;
}

/* MINI BIO */
.seccion-minibio {
  border-top: 0.5px solid var(--borde);
  padding: 5rem 4rem;
}
.minibio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.minibio-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--azul);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--malva);
}
.minibio-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.minibio-lista li {
  font-size: 1rem;
  color: var(--texto-suave);
  padding-left: 1.1rem;
  border-left: 1.5px solid rgba(185,143,164,0.4);
  line-height: 1.5;
}
.minibio-lista li em { font-style: italic; }

/* RESPONSIVE workshops bloque y minibio */
@media (max-width: 1024px) {
  .workshops-bloque-inner { grid-template-columns: 1fr; }
  .seccion-workshops-bloque { padding: 3rem 2rem; }
  .minibio-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .seccion-minibio { padding: 3.5rem 2rem; }
  .footer--simple { padding: 1.5rem 2rem !important; }
}

/* LOGOS */
/* nav-logo-img no usado */

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  opacity: 0.9;
}
.footer-logo-img:hover { opacity: 1; }

.footer-sello {
  width: 52px;
  height: 52px;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* SELLO decorativo */
.hero-sello {
  position: absolute;
  top: 1.5rem;
  left: 1rem;
  transform: none;
  width: 220px;
  height: 220px;
  opacity: 0.92;
  z-index: 2;
  pointer-events: none;
}

.page-sello {
  display: none;
}

@media (max-width: 768px) {
  .hero-sello { width: 130px; height: 130px; left: 1rem; }
  .page-sello { display: none; }
}

/* FOTO RECURSOS — ajuste cabeza */
.foto-recursos {
  object-position: center 5% !important;
}

/* MENÚ MÓVIL ABIERTO */
.nav-links.is-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(245,241,232,0.98);
  z-index: 200;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-links.is-open a {
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--azul);
}

/* VIDEO EMBED EN RECURSOS */
.nota-card--embed {
  display: block;
  text-decoration: none;
  cursor: default;
}
.nota-video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 0.75rem;
}
.nota-video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 12px;
}

/* FOOTER YOUTUBE */
.footer--simple .footer-youtube {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245,241,232,0.3);
  color: rgba(245,241,232,0.6);
  text-decoration: none;
  transition: all 0.2s;
}
.footer--simple .footer-youtube:hover {
  background: rgba(245,241,232,0.1);
  color: var(--manteca);
  border-color: rgba(245,241,232,0.6);
}
