*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg: #FBFAF6; --bg-alt: #F4F1EA; --bg-green: #F1ECE1; --bg-dark: #241B14;
      --text: #2A2018; --text-soft: #574C42; --muted: #8C8175;
      --green: #A7823F; --green-md: #C6A667; --green-light: #D9C08A; --green-pale: #F1E7D0;
      --earth: #9A8C74; --earth-light: #E7E0D2; --border: #E7E0D3; --card: #FFFFFF;
      --ink: #2A2018; --gold: #C6A667; --jade: #2FA087; --jade-pale: #E6F4F0; --jade-deep: #276B52; --ciruela: #6E4C67; --terracota: #714935; --chocolate-vino: #4A2420;
      --radius: 1.5rem;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
    a { color: inherit; text-decoration: none; }

    /* LOADER */
    #loader { position: fixed; inset: 0; z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--bg-green); transition: opacity 0.8s ease; }
    #loader.hide { opacity: 0; pointer-events: none; }
    .loader-ring { width: 52px; height: 52px; border: 2px solid var(--green-light); border-top-color: var(--green); border-radius: 50%; animation: spin 1s linear infinite; margin-bottom: 1.5rem; }
    @keyframes spin { to { transform: rotate(360deg); } }
    .loader-text { font-family: 'DM Serif Display', serif; font-size: 1.5rem; font-weight: 300; color: var(--green); letter-spacing: 0.2em; }

    /* NAV — vidrio dorado premium, siempre visible (misma estética en toda la web) */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.5rem 2.5rem; display: flex; align-items: center; justify-content: space-between; background: linear-gradient(rgba(255,255,255,0.45), rgba(255,255,255,0.45)), rgba(198,166,103,0.35); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(42,32,24,0.12); transition: background 0.4s, box-shadow 0.4s, padding 0.4s; }
    nav.scrolled { background: linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.55)), rgba(198,166,103,0.45); backdrop-filter: blur(16px); box-shadow: 0 4px 24px rgba(42,32,24,0.14); padding: 1rem 2.5rem; }
    /* La página de bienvenida ya queda bien con su propio fondo: el menú va sin fondo propio hasta que se hace scroll (para que se siga leyendo sobre el resto del contenido).
       Como ese fondo es oscuro (el hero), aquí el texto vuelve a ser claro en vez de terracota/oscuro, para que se siga leyendo. */
    body.page-home nav:not(.scrolled) { background: none; box-shadow: none; }
    body.page-home nav:not(.scrolled) .nav-logo { color: var(--gold); }
    body.page-home nav:not(.scrolled) .nav-logo span { color: var(--green-light); }
    body.page-home nav:not(.scrolled) .nav-links > li > a { color: rgba(255,255,255,0.85); }
    body.page-home nav:not(.scrolled) .nav-links > li > a:hover { color: var(--gold); }
    body.page-home nav:not(.scrolled) .nav-links > li > a.is-active { color: var(--gold); }
    body.page-home nav:not(.scrolled) .nav-links > li > a.is-active::after { background: var(--gold); }
    body.page-home nav:not(.scrolled) .nav-regalo { color: var(--gold) !important; }
    body.page-home nav:not(.scrolled) .nav-lang { border-left-color: rgba(255,255,255,0.3); }
    body.page-home nav:not(.scrolled) .nav-lang-opt { color: rgba(255,255,255,0.6); }
    body.page-home nav:not(.scrolled) a.nav-lang-opt:hover { color: var(--gold); }
    body.page-home nav:not(.scrolled) .nav-lang-opt.is-active { color: var(--gold); }
    body.page-home nav:not(.scrolled) .nav-lang-sep { color: rgba(255,255,255,0.3); }
    body.page-home nav:not(.scrolled) .nav-toggle span { background: rgba(255,255,255,0.92); }
    .nav-logo { font-family: 'DM Serif Display', serif; font-size: 1.5rem; font-weight: 500; color: var(--ink); letter-spacing: 0.06em; flex-shrink: 0; }
    .nav-logo span { color: var(--terracota); }
    .nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
    .nav-links > li { position: relative; }
    .nav-links > li > a { display: block; position: relative; padding: 0.5rem 0.9rem; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(42,32,24,0.72); transition: color 0.2s; white-space: nowrap; }
    .nav-links > li > a:hover { color: var(--terracota); }
    .nav-links > li > a.is-active { color: var(--terracota); }
    .nav-links > li > a.is-active::after { content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.15rem; height: 2px; background: var(--terracota); }
    .nav-regalo { color: var(--ink) !important; }
    .nav-regalo:hover { color: var(--terracota) !important; }
    .has-dropdown { cursor: pointer; }
    .dropdown { position: absolute; top: 100%; left: 0; margin-top: 0.5rem; background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; padding: 0.5rem 0; min-width: 200px; box-shadow: 0 8px 32px rgba(0,0,0,0.08); opacity: 0; pointer-events: none; transform: translateY(6px); transition: opacity 0.2s, transform 0.2s; }
    .dropdown::before { content: ""; position: absolute; top: -0.6rem; left: 0; right: 0; height: 0.6rem; background: transparent; }
    .has-dropdown:hover .dropdown, .dropdown:hover { opacity: 1; pointer-events: all; transform: translateY(0); }
    .dropdown a { display: block; padding: 0.6rem 1.25rem; font-size: 0.78rem; color: var(--text-soft); transition: background 0.15s, color 0.15s; }
    .dropdown a:hover { background: var(--green-pale); color: var(--green); }

    /* NAV — selector de idioma */
    .nav-lang { display: flex; align-items: center; gap: 0.35rem; margin-left: 0.5rem; padding-left: 1rem; border-left: 1px solid rgba(42,32,24,0.2); }
    .nav-lang-opt { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; padding: 0.3rem 0.15rem; color: rgba(42,32,24,0.55); transition: color 0.2s; }
    a.nav-lang-opt:hover { color: var(--terracota); }
    .nav-lang-opt.is-active { color: var(--terracota); }
    .nav-lang-sep { font-size: 0.72rem; color: rgba(42,32,24,0.25); }

    /* NAV — menú móvil (hamburguesa + panel deslizante) */
    .nav-toggle { display: none; position: relative; width: 38px; height: 20px; margin-left: 0.75rem; padding: 0; background: none; border: none; cursor: pointer; flex-shrink: 0; }
    .nav-toggle span { position: absolute; left: 0; right: 0; height: 2px; border-radius: 2px; background: rgba(42,32,24,0.78); transition: transform 0.3s ease, opacity 0.25s ease, background 0.3s ease; }
    .nav-toggle span:nth-child(1) { top: 0; }
    .nav-toggle span:nth-child(2) { top: 9px; }
    .nav-toggle span:nth-child(3) { top: 18px; }
    nav.menu-open .nav-toggle span:nth-child(1) { top: 9px; transform: rotate(45deg); }
    nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
    nav.menu-open .nav-toggle span:nth-child(3) { top: 9px; transform: rotate(-45deg); }
    nav.menu-open { z-index: 400; background: linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.75)), rgba(198,166,103,0.55) !important; box-shadow: 0 1px 0 rgba(42,32,24,0.15) !important; }
    nav.menu-open .nav-logo { color: var(--ink) !important; }
    nav.menu-open .nav-logo span { color: var(--terracota) !important; }

    .nav-overlay { position: fixed; inset: 0; z-index: 399; background: rgba(30,24,18,0.42); opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
    .nav-overlay.is-visible { opacity: 1; pointer-events: auto; }
    body.nav-locked { overflow: hidden; }

    .dropdown-caret { display: none; }

    /* NAV — logo con "Inicio" siempre visible debajo, sin ocupar un enlace de la lista */
    .nav-logo-group { display: flex; flex-direction: column; align-items: flex-start; gap: 0.15rem; text-decoration: none; }
    .nav-logo-caption { font-family: 'Inter', sans-serif; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); transition: color 0.2s; }
    .nav-logo-group:hover .nav-logo-caption { color: var(--terracota); }
    body.page-home nav:not(.scrolled) .nav-logo-caption { color: rgba(255,255,255,0.55); }
    body.page-home nav:not(.scrolled) .nav-logo-group:hover .nav-logo-caption { color: var(--gold); }

    /* NAV — dentro de "Explora", Recursos va primero y destacado (solo color/peso, el espaciado se fija en el bloque de escritorio de abajo para no chocar con el panel móvil) */
    .dropdown a.dropdown-featured { font-weight: 700; color: var(--terracota); }
    .dropdown a.dropdown-featured:hover { background: var(--green-pale); color: var(--terracota); }
    .dropdown-featured span { display: block; font-family: 'Inter', sans-serif; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.02em; text-transform: none; color: var(--muted); margin-top: 0.1rem; }
    .dropdown-divider { height: 1px; background: var(--border); margin: 0.4rem 0.75rem; }

    /* NAV — el regalo como botón, no como un enlace más (color universal; forma de píldora solo en escritorio, en móvil ya tiene su propia píldora vía .nav-regalo) */
    .nav-links > li > a.nav-pill { color: var(--terracota) !important; }
    body.page-home nav:not(.scrolled) .nav-links > li > a.nav-pill { color: var(--gold) !important; }

    @media (min-width: 901px) {
      .dropdown a.dropdown-featured { padding: 0.65rem 1.25rem; }
      .nav-links > li > a.nav-pill { margin-left: 0.4rem; padding: 0.6rem 1.3rem !important; border: 1.5px solid var(--terracota); border-radius: 999px; }
      .nav-links > li > a.nav-pill:hover { background: var(--terracota); color: #fff !important; }
      body.page-home nav:not(.scrolled) .nav-links > li > a.nav-pill { border-color: var(--gold); }
      body.page-home nav:not(.scrolled) .nav-links > li > a.nav-pill:hover { background: var(--gold); color: var(--ink) !important; }
    }

    /* BUTTONS */
    .btn { display: inline-flex; align-items: center; gap: 0.5rem; border: none; cursor: pointer; font-family: inherit; font-size: 0.86rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; border-radius: 3rem; padding: 1rem 2.2rem; transition: background 0.25s, transform 0.25s, box-shadow 0.25s, color 0.25s, border-color 0.25s; }
    .btn-primary { background: var(--gold); color: var(--ink); }
    .btn-primary:hover { background: var(--bg-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.14); }
    .btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
    .btn-outline:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
    .btn-dark { background: var(--bg-dark); color: white; }
    .btn-dark:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }

    /* ANIMATIONS */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
    .fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    .fade-in.d1 { transition-delay: 0.1s; } .fade-in.d2 { transition-delay: 0.2s; }
    .fade-in.d3 { transition-delay: 0.3s; } .fade-in.d4 { transition-delay: 0.4s; }
    .fade-in.d5 { transition-delay: 0.5s; }

    /* LAYOUT */
    section { padding: 7rem 2rem; }
    .container { max-width: 1100px; margin: 0 auto; }
    .eyebrow { display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 1rem; }
    .eyebrow-terracota { color: var(--terracota); }
    h1.sec-title, h2.sec-title { font-family: 'Italiana', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: 0.01em; line-height: 1.15; color: var(--text); margin-bottom: 1.5rem; }
    h1.sec-title em, h2.sec-title em { font-style: normal; color: var(--green); }
    .sec-body { font-size: 1rem; font-weight: 300; line-height: 1.95; color: var(--text-soft); }
    .sec-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 3.5rem; flex-wrap: wrap; }

    /* PAGE HERO (subpáginas: Lectura, Escucha) */
    .page-hero { position: relative; min-height: 62vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 10rem 2rem 5rem; background-size: cover; background-position: center; background-attachment: fixed; }
    .page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,36,32,0.55), rgba(30,36,32,0.78)); }
    .page-hero .container { position: relative; z-index: 1; max-width: 760px; }
    .page-hero .eyebrow { color: var(--green-light); }
    .page-hero h2.sec-title { color: #fff; margin-bottom: 0; }
    .page-hero h2.sec-title em { color: var(--green-light); }
    .page-hero .page-hero-intro { color: rgba(255,255,255,0.92); font-family: 'DM Sans', sans-serif; font-size: 1.08rem; font-style: normal; line-height: 1.8; margin-top: 1.75rem; }
    .page-hero .page-hero-intro p + p { margin-top: 1rem; }

    /* HERO — todo el contenido debe caber en una pantalla, sin scroll */
    .hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 6rem 2rem 2.5rem; position: relative; overflow: hidden; background: var(--bg-dark); }
    .hero-bg { position: absolute; inset: 0; pointer-events: none; background:
        radial-gradient(ellipse 65% 50% at 50% 18%, rgba(198,166,103,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 50% 45% at 85% 90%, rgba(47,160,135,0.12) 0%, transparent 65%); }
    .hero-h1 { max-width: 900px; margin-bottom: 1.2rem; opacity: 0; animation: fadeUp 0.9s ease 0.6s forwards; position: relative; z-index: 1; }
    .hero-kicker { display: block; font-family: 'Inter', sans-serif; font-size: clamp(0.8rem, 1.2vw, 0.92rem); font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; color: var(--green-light); margin-bottom: 1.1rem; }
    .hero-brand { display: block; font-family: 'Italiana', serif; font-weight: 400; font-size: clamp(3.2rem, 7.5vw, 6.4rem); line-height: 1.05; letter-spacing: 0.015em; color: #F7F3EC; }
    .hero-brand em { font-style: normal; background: linear-gradient(135deg, #E2C88F 0%, var(--gold) 45%, #96702F 100%); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
    .hero-poetic { display: block; font-family: 'Libre Caslon Display', serif; font-style: normal; letter-spacing: 0.015em; font-size: clamp(1.2rem, 2.2vw, 1.65rem); color: var(--jade); max-width: 600px; margin: 1.3rem auto 0; }
    .hero p { font-size: clamp(0.95rem, 1.6vw, 1.05rem); font-weight: 300; line-height: 1.65; color: rgba(255,255,255,0.68); max-width: 540px; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.9s ease 0.8s forwards; position: relative; z-index: 1; }
    .hero-ctas { display: flex; flex-direction: column; align-items: center; gap: 0.85rem; opacity: 0; animation: fadeUp 0.9s ease 1.1s forwards; position: relative; z-index: 1; }
    .btn-signature { text-transform: none; font-family: 'Italiana', serif; font-weight: 700; font-size: 1.2rem; letter-spacing: 0.015em; padding: 1.2rem 2.8rem; max-width: 90vw; text-align: center; box-shadow: 0 10px 28px rgba(0,0,0,0.35); }
    .btn-signature:hover { box-shadow: 0 14px 34px rgba(0,0,0,0.45); }

    /* BIENVENIDA + FUNDAMENTOS — introducción continua, mismo fondo, sin corte visual */
    .bienvenida { background: var(--bg-alt); }
    .bienvenida-inner { max-width: 860px; }
    .bienvenida-pilares-intro { margin-top: 3.5rem; margin-bottom: 2rem; }
    .eyebrow-jade { color: var(--jade-deep); }
    .bienvenida-link-tag { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 400; color: var(--text); }
    .bienvenida-link-tag em { font-style: italic; color: var(--jade-deep); }
    .bienvenida-pilares-cta { margin-top: 2.5rem; }

    /* PILARES */
    .pilares-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
    .pilar-card { position: relative; background: var(--card); padding: 1.85rem 1.6rem; display: flex; flex-direction: column; gap: 0.3rem; transition: background 0.3s; }
    .pilar-card:hover { background: var(--jade-pale); }
    .pilar-card-top { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
    .pilar-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.1rem; font-weight: 500; color: var(--text); margin-bottom: 0.1rem; }
    .pilar-icon-svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; opacity: 0.85; transition: transform 0.3s; }
    .pilar-card:hover .pilar-icon-svg { transform: scale(1.1); }
    .pilar-subtitle { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.82); margin-bottom: 0.85rem; display: block; }
    .pilares-grid .pilar-subtitle { font-size: 0.82rem; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--jade-deep); margin-bottom: 0; }
    .pilar-stat { margin-top: auto; font-size: 0.73rem; font-weight: 600; color: #fff; background: rgba(255,255,255,0.20); padding: 0.4rem 0.85rem; border-radius: 2rem; display: inline-block; align-self: flex-start; }
    /* Color por fundamento (fácil de reajustar al cambiar la paleta global) */
    .fund-mov { background: linear-gradient(150deg, #A86F52, #7A4A33); } /* Movimiento · cálido / energía */
    .fund-ali { background: linear-gradient(150deg, #6E8E74, #47624E); } /* Alimentación · verde */
    .fund-sue { background: linear-gradient(150deg, #4C5A70, #2A3345); } /* Sueño · azul noche */
    .fund-res { background: linear-gradient(150deg, #4E8F88, #2E645F); } /* Respiración · teal calma */
    .fund-fre { background: linear-gradient(150deg, #B48A3E, #8A6626); } /* Frecuencia · violeta / oro */
    .fund-enf { background: linear-gradient(150deg, #8A7E93, #5E556B); } /* Cuidado & Enfoque · pizarra */


    /* FUNDAMENTOS — página propia (fundamentos.html) */
    .fundamentos-intro { padding: 10rem 2rem 2.5rem; background: var(--bg); }
    .fundamentos-hub { padding-top: 1.5rem; }
    .fundamentos-intro-inner { text-align: left; }
    .fundamentos-intro-top { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: center; }
    .fundamentos-intro-body { font-size: 1.02rem; font-weight: 300; line-height: 1.9; color: var(--text-soft); margin-top: 1.75rem; }
    .fundamentos-intro-body p + p { margin-top: 1.1rem; }
    .fundamentos-recordatorio { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.5; color: var(--jade); text-align: center; max-width: 400px; margin: 0 auto; }
    .fundamentos-recordatorio strong { font-weight: 700; font-style: normal; color: var(--jade); }
    .fundamentos-lema { font-family: 'DM Serif Display', serif; font-style: italic; font-weight: 400; font-size: clamp(1.05rem, 1.7vw, 1.35rem); color: var(--chocolate-vino); margin: 2.75rem auto 0; text-align: center; max-width: 100%; }

    /* FUNDAMENTOS — secciones individuales por pilar, layout editorial a dos columnas (izquierda → derecha) */
    .fundamento-section { padding: 5.5rem 2rem; border-top: 1px solid var(--border); }
    .fundamento-section-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: minmax(220px, 300px) 1fr; gap: 4.5rem; align-items: start; }
    .fundamento-aside { position: sticky; top: 7.5rem; }
    .fundamento-num { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; display: block; }
    .fundamento-aside .sec-title { font-size: clamp(1.8rem, 2.6vw, 2.4rem); margin-bottom: 0.75rem; }
    .fundamento-aside .pilar-subtitle { display: block; color: var(--green); }
    .fundamento-aside .sec-body { max-width: none; }
    .fundamento-aside .pilar-stat { margin-top: 1.5rem; color: var(--ink); background: var(--green-pale); }

    /* FUNDAMENTOS — contenido largo por pilar (texto completo de la web original) */
    .fundamento-body { font-size: 1rem; font-weight: 300; line-height: 1.9; color: var(--text-soft); max-width: 660px; }
    .fundamento-body p strong, .fs-detail p strong { font-weight: 600; color: var(--chocolate-vino); }
    .fundamento-body li > strong, .fs-detail li > strong { font-weight: 700; color: var(--terracota); }
    .fundamento-aside .sec-body strong { font-weight: 600; color: var(--chocolate-vino); }
    .fundamento-body p + p, .fundamento-body ul + p, .fundamento-body p + ul, .fundamento-body ul + h3, .fundamento-body p + h3, .fundamento-body blockquote + h3 { margin-top: 1.15rem; }
    .fundamento-body em { font-style: italic; }
    .fundamento-body h3:first-child { margin-top: 0; }
    .fundamento-body h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; font-weight: 500; color: var(--text); margin: 2.25rem 0 0.75rem; }
    .fundamento-body h4 { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--green); margin: 1.5rem 0 0.5rem; }
    .fundamento-body ul { padding-left: 1.2rem; margin-top: 0.5rem; }
    .fundamento-body li { margin-bottom: 0.55rem; }
    .fundamento-body li::marker { color: var(--green-md); }
    .fundamento-body blockquote { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 1.2rem; color: var(--text); border-left: 3px solid var(--green-light); padding-left: 1.5rem; margin: 2.25rem 0; line-height: 1.6; }
    .term-popover { position: relative; display: inline-flex; vertical-align: baseline; }
    .term-trigger { appearance: none; -webkit-appearance: none; border: 0; border-bottom: 1.5px dashed currentColor; border-radius: 0.2em; background: transparent; color: var(--terracota); font: inherit; font-weight: 700; line-height: 1.1; padding: 0 0.06em 0.05em; cursor: help; transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s; }
    .term-trigger:hover, .term-trigger:focus-visible, .term-popover.is-open .term-trigger { color: var(--jade-deep); background: rgba(47,160,135,0.1); border-bottom-style: solid; outline: none; }
    .term-trigger:focus-visible { box-shadow: 0 0 0 3px rgba(47,160,135,0.18); }
    .term-card { position: absolute; z-index: 60; left: 50%; bottom: calc(100% + 0.75rem); width: min(23rem, calc(100vw - 3rem)); padding: 1.15rem 1.2rem; border: 1px solid rgba(217,192,138,0.82); border-radius: 1rem; background-image: linear-gradient(135deg, rgba(31,22,20,0.94), rgba(74,36,32,0.84)), url("telomero.png"); background-size: cover; background-position: center 58%; box-shadow: 0 20px 48px rgba(42,32,24,0.28); color: #F9F4EC; font-weight: 400; text-align: left; text-shadow: 0 1px 2px rgba(0,0,0,0.35); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, 0.4rem); transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease; }
    .term-card::after { content: ""; position: absolute; left: 50%; top: 100%; width: 0.75rem; height: 0.75rem; background: #3D2924; border-right: 1px solid rgba(217,192,138,0.82); border-bottom: 1px solid rgba(217,192,138,0.82); transform: translate(-50%, -50%) rotate(45deg); }
    .term-popover:hover .term-card, .term-popover.is-open .term-card, .term-trigger:focus-visible + .term-card { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
    .term-card-title { display: block; margin-bottom: 0.45rem; font-family: 'DM Serif Display', serif; font-size: 1.05rem; font-weight: 500; line-height: 1.3; color: #FFFFFF; }
    .term-card-text { display: block; font-size: 0.79rem; font-weight: 400; line-height: 1.65; color: rgba(255,255,255,0.92); }
    .inline-source { display: inline-block; margin-left: 0.3rem; color: var(--jade-deep); font-size: 0.76rem; font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
    .inline-source:hover { color: var(--terracota); }
    @media (max-width: 640px) { .term-card { left: -1rem; width: min(19rem, calc(100vw - 2.5rem)); transform: translateY(0.4rem); } .term-card::after { left: 2rem; } .term-popover:hover .term-card, .term-popover.is-open .term-card, .term-trigger:focus-visible + .term-card { transform: translateY(0); } }

    /* ===== RECURSOS PREMIUM — fondo oscuro reutilizable (Atlas, Termómetro, Primeros auxilios) ===== */
    .recurso-oscuro { background: var(--bg-dark); background-image:
        radial-gradient(ellipse 65% 50% at 50% 12%, rgba(198,166,103,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 50% 45% at 90% 85%, rgba(47,160,135,0.13) 0%, transparent 65%),
        radial-gradient(ellipse 45% 40% at 6% 70%, rgba(110,76,103,0.16) 0%, transparent 65%); }
    .recurso-oscuro .fundamento-hero-icon { stroke: var(--gold); }
    .recurso-oscuro .fundamento-num { color: var(--green-light); }
    .recurso-oscuro .sec-title { background: linear-gradient(135deg, #E2C88F 0%, var(--gold) 45%, #96702F 100%); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
    .recurso-oscuro .pilar-subtitle { color: rgba(255,255,255,.7); }
    .recurso-oscuro .sec-body { color: rgba(255,255,255,.82); }
    .recurso-oscuro .fundamento-aside .pilar-stat { color: #fff; background: rgba(255,255,255,.2); }
    .recurso-oscuro .fundamento-body > h3 { color: #fff; }
    .recurso-oscuro .fundamento-body > p { color: rgba(255,255,255,.82); }
    .recurso-oscuro .fundamento-body > p strong { color: var(--gold); background: none; font-weight: 700; }
    .recurso-oscuro .fundamento-body > p a { color: var(--green-light); font-weight: 600; }
    .recurso-oscuro .fundamento-body > ul { color: rgba(255,255,255,.82); }
    .recurso-oscuro .fundamento-body > ul li::marker { color: var(--gold); }
    .recurso-oscuro .fundamento-body > ul li strong { color: var(--gold); font-weight: 700; }
    .recurso-oscuro em { font-style: normal; }

    /* ===== Tarjeta premium (mismo sistema en Atlas y Primeros auxilios): un único estilo, colores del sitio ===== */
    .pc-card { background: var(--card); border: 1px solid var(--border); border-radius: 1.25rem; padding: 1.85rem 2rem; margin-bottom: 1.25rem; scroll-margin-top: 5rem; }
    .pc-top { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.1rem; }
    .pc-icono { width: 48px; height: 48px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .pc-icono svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
    .pc-nombre { font-family: 'Italiana', serif; font-size: 1.4rem; color: var(--text); }
    .pc-frase { font-size: 0.82rem; color: var(--ciruela); font-style: normal; }
    .pc-dato-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--jade-deep); margin-bottom: 0.5rem; }
    .pc-dato { font-family: 'DM Serif Display', serif; font-style: normal; font-size: 1.15rem; line-height: 1.55; color: var(--text); border-left: 3px solid var(--gold); padding-left: 1.25rem; margin-bottom: 1.1rem; }
    .pc-chips { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
    .pc-chips span { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; background: var(--green-pale); color: var(--jade-deep); border-radius: 2rem; padding: 0.28rem 0.75rem; }
    .pc-toggle { background: none; border: 1px solid var(--border); border-radius: 2rem; padding: 0.55rem 1.25rem; font-size: 0.82rem; font-weight: 600; color: var(--text); cursor: pointer; font-family: inherit; transition: border-color 0.2s, color 0.2s; }
    .pc-toggle:hover { border-color: var(--gold); color: var(--jade-deep); }
    .pc-detalle { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s cubic-bezier(.4,0,.2,1); }
    .pc-card.abierta .pc-detalle { grid-template-rows: 1fr; }
    .pc-detalle-inner { overflow: hidden; }
    .pc-historia { font-size: 0.92rem; line-height: 1.75; color: var(--text-soft); margin: 1.1rem 0; }
    .pc-accion { background: var(--bg-alt); border-radius: 0.9rem; padding: 1.1rem 1.3rem; margin-bottom: 0.85rem; }
    .pc-accion-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--jade-deep); margin-bottom: 0.35rem; }
    .pc-accion p { font-size: 0.9rem; line-height: 1.65; color: var(--text-soft); }
    .pc-primer-paso { margin-top: 1.1rem; font-size: 0.9rem; line-height: 1.7; color: var(--text-soft); }
    .pc-card a { color: var(--ciruela); font-weight: 600; }
    .pc-card .pc-dato strong, .pc-card .pc-historia strong, .pc-card .pc-accion strong, .pc-card .pc-primer-paso strong { color: var(--terracota); font-weight: 700; background: none; }

    /* ===== Primeros auxilios — componentes propios del kit, mismo sistema de 4 colores ===== */
    .rp-quote { background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 1.75rem 2rem; margin: 0 0 2rem; font-family: 'DM Serif Display', serif; font-size: 1.1rem; line-height: 1.65; color: var(--text); }
    .rp-clave { background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 1.75rem 2rem; margin: 1.5rem 0 1.75rem; }
    .rp-clave .pc-dato-label { margin-bottom: 0.6rem; }
    .rp-clave p { font-family: 'DM Serif Display', serif; font-size: 1.15rem; line-height: 1.55; color: var(--text); }
    .rp-no, .rp-ejercicio { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem 2rem; margin: 1.5rem 0 1.75rem; }
    .rp-no { list-style: none; }
    .rp-no li { position: relative; padding-left: 1.6rem; color: var(--text-soft); font-size: 0.95rem; line-height: 1.75; margin-bottom: 0.6rem; }
    .rp-no li:last-child { margin-bottom: 0; }
    .rp-no li::before { content: '✕'; position: absolute; left: 0; top: 0.1em; color: var(--jade-deep); font-size: 0.75rem; }
    .rp-ejercicio-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--jade-deep); margin-bottom: 0.9rem; }
    .rp-ejercicio ol { padding-left: 1.2rem; margin: 0; }
    .rp-ejercicio li { color: var(--text-soft); font-size: 0.95rem; line-height: 1.75; margin-bottom: 0.65rem; }
    .rp-ejercicio li:last-child { margin-bottom: 0; }
    .rp-ejercicio li::marker { color: var(--gold); font-weight: 700; }
    .rp-realista { font-size: 0.9rem; line-height: 1.75; color: var(--text-soft); margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--border); }
    .rp-ayuda { background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--ciruela); border-radius: var(--radius); padding: 1.75rem 2rem; margin: 1.75rem 0; }
    .rp-ayuda p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.75; }
    .rp-ayuda p + p { margin-top: 0.85rem; }
    .fundamento-body .pc-accion strong, .fundamento-body .rp-quote strong, .fundamento-body .rp-clave strong, .fundamento-body .rp-realista strong, .fundamento-body .rp-ayuda strong { color: var(--terracota); font-weight: 700; background: none; }
    .fundamento-body .pc-accion a, .fundamento-body .rp-quote a, .fundamento-body .rp-ayuda a { color: var(--ciruela); font-weight: 600; }
    .recurso-oscuro .rp-fuentes { margin-top: 2rem; }
    .recurso-oscuro .rp-fuentes summary { cursor: pointer; list-style: none; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.25); border-radius: 2rem; padding: 0.55rem 1.25rem; display: inline-block; transition: border-color 0.2s, color 0.2s; }
    .recurso-oscuro .rp-fuentes summary::-webkit-details-marker { display: none; }
    .recurso-oscuro .rp-fuentes summary::before { content: '+ '; }
    .recurso-oscuro .rp-fuentes[open] summary::before { content: '↑ '; }
    .recurso-oscuro .rp-fuentes summary:hover { border-color: var(--gold); color: #fff; }
    .recurso-oscuro .rp-fuentes[open] summary { margin-bottom: 1rem; }
    .recurso-oscuro .rp-fuentes-texto { font-size: 0.8rem; line-height: 1.75; color: rgba(255,255,255,.55); }

    /* ===== Primeros auxilios — índice del kit: tarjetas premium ===== */
    .kit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin: 2rem 0; }
    .kit-card { display: block; background: var(--card); border: 1px solid var(--border); border-radius: 1.25rem; padding: 1.75rem 1.85rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
    .kit-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.35); border-color: var(--gold); }
    .kit-card-top { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.9rem; }
    .kit-card-icono { width: 44px; height: 44px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .kit-card-icono svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
    .kit-card-num { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--jade-deep); }
    .kit-card-titulo { display: block; font-family: 'DM Serif Display', serif; font-size: 1.25rem; color: var(--text); margin: 0.15rem 0 0.5rem; }
    .kit-card-cuando { display: block; font-size: 0.9rem; line-height: 1.6; color: var(--text-soft); }
    .kit-card-flecha { display: inline-block; margin-top: 0.85rem; font-size: 0.8rem; font-weight: 600; color: var(--ciruela); }




    /* INSPÍRATE — franja resumen en la home, enlaza a inspirate.html */
    .inspirate-teaser { padding: 5rem 2rem; }

    /* INSPÍRATE — hub con 3 tarjetas (Lectura, Escucha, Referentes tienen página propia) */
    .inspirate-hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .inspirate-hub-card { position: relative; overflow: hidden; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.75rem 2rem 3.25rem; text-align: center; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
    .inspirate-hub-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,0.08); border-color: var(--green-light); }
    .inspirate-hub-card h3 { display: inline-flex; align-items: center; gap: 0.4rem; font-family: 'DM Serif Display', serif; font-size: 1.35rem; font-weight: 500; margin-bottom: 0.65rem; color: var(--text); transition: color 0.25s; }
    .inspirate-hub-card:hover h3 { color: var(--green); }
    .inspirate-hub-card h3 .hub-arrow { font-size: 1.05rem; color: var(--green-light); opacity: 0; transform: translateX(-4px); transition: opacity 0.25s, transform 0.25s; }
    .inspirate-hub-card:hover h3 .hub-arrow { opacity: 1; transform: translateX(0); }
    .inspirate-hub-card p { font-size: 0.88rem; font-weight: 300; line-height: 1.7; color: var(--text-soft); }
    .inspirate-hub-card .hub-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--border); }
    .inspirate-hub-card .hub-bar::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0%; background: var(--green-light); transition: width 0.35s ease; }
    .inspirate-hub-card:hover .hub-bar::after { width: 100%; }

    /* RECURSOS - articulos y ejercicios practicos */
    .recursos-page { background: var(--bg-alt); }
    .recursos-wrap { max-width: 900px; margin: 0 auto; }
    .recurso-lead { font-family: 'DM Serif Display', serif; font-size: clamp(1.35rem, 2.4vw, 1.8rem); line-height: 1.55; color: var(--text); margin-bottom: 2rem; }
    .recurso-summary { background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--green-light); border-radius: var(--radius); padding: 1.75rem 2rem; margin: 2rem 0 3rem; }
    .recurso-summary strong { color: var(--green); }
    .recurso-article h3 { font-family: 'DM Serif Display', serif; font-size: clamp(1.45rem, 2.8vw, 2rem); font-weight: 500; color: var(--text); margin: 3.25rem 0 1rem; }
    .recurso-article h4 { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin: 2rem 0 .65rem; }
    .recurso-article p, .recurso-article li { font-size: 1rem; font-weight: 300; line-height: 1.85; color: var(--text-soft); }
    .recurso-article p + p { margin-top: 1rem; }
    .recurso-article ol { display: grid; gap: 1rem; padding-left: 1.25rem; margin-top: 1.25rem; }
    .recurso-article li::marker { color: var(--green); font-weight: 700; }
    .recurso-practice { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0 2.5rem; }
    .recurso-practice article { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
    .recurso-practice span { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; color: var(--gold); margin-bottom: .65rem; }
    .recurso-practice h4 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--text); margin: 0 0 .65rem; }
    .recurso-practice p { font-size: .9rem; line-height: 1.7; }
    .recurso-action { display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; align-items: start; background: rgba(198, 166, 103, .07); border: 1px solid rgba(198, 166, 103, .28); border-left: 3px solid var(--gold); border-radius: calc(var(--radius) * .75); padding: 1.15rem 1.35rem; margin: 2.5rem 0; text-align: left; }
    .recurso-action::before { content: ""; grid-row: 1 / 3; align-self: center; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
    .recurso-action strong { display: block; margin-bottom: .3rem; font-family: 'DM Sans', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ciruela); }
    .recurso-action p { margin: 0; color: var(--text-soft); font-size: .92rem; line-height: 1.7; max-width: 620px; }
    .recurso-sources { border-top: 1px solid var(--border); margin-top: 3.5rem; padding-top: 1.5rem; }
    .recurso-sources h3 { margin-top: 0; font-size: 1.2rem; }
    .recurso-sources a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
    .recurso-note { font-size: .82rem !important; color: var(--muted) !important; }

    /* FUNDAMENTOS — hub con línea de progreso deslizante + acordeón (cada fundamento tiene página propia) */
    .fs-layout { display: grid; grid-template-columns: 32px 1fr; gap: 3rem; align-items: start; }
    .fs-track-wrap { position: sticky; top: 6rem; height: calc(100vh - 9rem); display: flex; justify-content: center; }
    .fs-track { position: relative; width: 1px; height: 100%; }
    .fs-marker { position: absolute; left: -0.5px; width: 1px; background: var(--gold); border-radius: 1px; opacity: 0; box-shadow: 0 0 7px rgba(198,166,103,.55); transition: top .65s cubic-bezier(.4,0,.2,1), height .65s cubic-bezier(.4,0,.2,1), opacity .5s ease; }
    .fs-marker.visible { opacity: 1; }

    .fs-block { border-bottom: 1px solid var(--border); }
    .fs-block:last-child { border-bottom: none; }
    .fs-block-row { display: flex; align-items: center; justify-content: space-between; gap: 3rem; min-height: 190px; padding: 1.5rem 0; cursor: pointer; }
    .fs-block.is-open .fs-block-row { min-height: 0; }
    .fs-block-text { flex: 1; }
    .fs-block .tag { font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--jade-deep); display: block; margin-bottom: .75rem; }
    .fs-block-row h3 { font-family: 'Italiana', serif; font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 400; color: var(--text); margin-bottom: 1rem; }
    .fs-block-row p { font-size: .98rem; font-weight: 300; color: var(--text-soft); line-height: 1.8; max-width: none; white-space: nowrap; margin-bottom: 1rem; }
    .fs-block .go { font-size: .8rem; font-weight: 600; color: var(--text); border-bottom: 1.5px solid var(--gold); padding-bottom: .2rem; display: inline-block; transition: opacity .25s ease; }
    .fs-block .go:hover { color: var(--gold); }
    .fs-block.is-open .go { display: none; }

    .fs-accent-wrap { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; }
    .fs-accent { width: 130px; height: 130px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; transition: transform .4s; }
    .fs-block-row:hover .fs-accent { transform: scale(1.05); }
    .fs-accent svg { width: 66px; height: 66px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .fs-accent svg circle[fill] { fill: var(--gold); }

    .fs-detail-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s cubic-bezier(.4,0,.2,1); }
    .fs-block.is-open .fs-detail-wrap { grid-template-rows: 1fr; }
    .fs-detail-inner { overflow: hidden; }
    .fs-detail { max-width: 640px; font-size: .98rem; font-weight: 300; line-height: 1.85; color: var(--text-soft); }
    .fs-detail p + p { margin-top: .95rem; }
    .fs-detail strong { color: var(--text); font-weight: 600; }
    .fs-detail blockquote { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 1.1rem; color: var(--text); border-left: 3px solid var(--green-light); padding-left: 1.25rem; margin: 1.6rem 0; line-height: 1.6; }
    .fs-detail ul { padding-left: 1.2rem; margin-top: .6rem; }
    .fs-detail li { margin-bottom: .5rem; }
    .fs-more { display: inline-block; margin-top: 1.75rem; font-size: .78rem; color: var(--muted); }
    .fs-detail-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.75rem; padding-bottom: 3rem; }
    .fs-detail-go { font-size: .82rem; font-weight: 600; letter-spacing: .01em; color: var(--text); border: none; border-bottom: 1.5px solid var(--gold); padding: 0 0 .25rem; white-space: nowrap; background: none; cursor: pointer; font-family: inherit; display: inline-flex; align-items: center; gap: .4rem; transition: gap .25s ease, color .25s ease; }
    .fs-detail-go:hover { gap: .6rem; color: var(--gold); }
    .fs-detail-go .arrow { transition: transform .25s ease; }
    .fs-detail-go:hover .arrow { transform: translateX(2px); }
    .fs-close { font-size: .78rem; font-weight: 600; letter-spacing: .03em; color: var(--text); border: 1px solid var(--border); border-radius: 2rem; padding: .6rem 1.4rem; background: none; cursor: pointer; display: inline-flex; align-items: center; gap: .45rem; transition: border-color .3s, color .3s; white-space: nowrap; }
    .fs-close:hover { border-color: var(--jade); color: var(--jade-deep); }
    .fs-full.fundamento-body { max-width: none; }

    /* FUNDAMENTOS — segundo nivel de cortina: el resumen se pliega y el contenido completo se despliega en su lugar */
    .fs-summary-wrap { display: grid; grid-template-rows: 1fr; opacity: 1; transition: grid-template-rows .55s cubic-bezier(.4,0,.2,1), opacity .35s ease; }
    .fs-block.full-open .fs-summary-wrap { grid-template-rows: 0fr; opacity: 0; }
    .fs-summary-inner { overflow: hidden; }
    .fs-full-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .6s cubic-bezier(.4,0,.2,1); }
    .fs-block.full-open .fs-full-wrap { grid-template-rows: 1fr; }
    .fs-full-inner { overflow: hidden; }

    /* TOOLTIP — bocadillo informativo al pasar el ratón sobre una palabra (reutilizable en toda la web) */
    .tt { position: relative; border-bottom: 1px dotted var(--muted); cursor: help; }
    .tt-bubble { position: absolute; left: 50%; bottom: calc(100% + 10px); transform: translateX(-50%) translateY(4px); width: min(260px, calc(100vw - 2.5rem)); background: var(--bg-dark); color: rgba(255,255,255,.9); font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 400; font-style: normal; line-height: 1.6; padding: 1rem 1.15rem; border-radius: .85rem; box-shadow: 0 14px 34px rgba(0,0,0,.28); opacity: 0; visibility: hidden; transition: opacity .25s ease, transform .25s ease; z-index: 20; text-align: left; pointer-events: none; }
    .tt-bubble::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: var(--bg-dark); }
    .tt:hover .tt-bubble, .tt:focus .tt-bubble { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

    @media (max-width: 860px) {
      .fs-layout { grid-template-columns: 1fr; }
      .fs-track-wrap { display: none; }
      .fs-block-row { flex-direction: row; align-items: center; gap: 1.25rem; min-height: 0 !important; padding: 1.25rem 0; }
      .fs-block-row p { white-space: normal; }
      .fs-accent { width: 52px; height: 52px; }
      .fs-accent svg { width: 24px; height: 24px; }
    }

    /* FUNDAMENTOS — página individual (movimiento.html, alimentacion.html...) */
    .fundamento-standalone { padding-top: 9.5rem; border-top: none; }
    .fundamento-hero-icon { width: 52px; height: 52px; stroke: var(--gold); fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 1.5rem; }

    /* LECTURA — FILTRO DE CATEGORÍAS (MEJORA UX) */
    .lectura { background: var(--bg-alt); }
    .lectura-intro { font-family: 'DM Sans', sans-serif; font-size: 1.02rem; font-weight: 400; font-style: normal; color: var(--text-soft); line-height: 1.8; max-width: 700px; margin-bottom: 3rem; }
    .filter-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem; }
    .filter-tabs[hidden] { display: none; }
    .filter-btn { background: transparent; border: 1.5px solid var(--border); border-radius: 2rem; padding: 0.5rem 1.1rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-soft); cursor: pointer; transition: all 0.2s; font-family: inherit; }
    .filter-btn:hover { border-color: var(--green); color: var(--green); }
    .filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--ink); }
    .libros-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .libro-card { background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
    .libro-card.hidden { display: none; }
    .libro-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
    .libro-cover { width: 100%; aspect-ratio: 2/3; background: linear-gradient(135deg, var(--green-pale), var(--earth-light)); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
    .libro-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .libro-cat { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); background: var(--green-pale); padding: 0.25rem 0.75rem; margin: 0.75rem 1.25rem 0; display: inline-block; border-radius: 2rem; }
    .libro-info { padding: 0.75rem 1.25rem 1.25rem; }
    .libro-info h3 { font-family: 'DM Serif Display', serif; font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 0.2rem; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.02em; }
    .libro-autor { font-size: 0.78rem; color: var(--green); font-weight: 500; margin-bottom: 0.5rem; }
    a.libro-autor, a.podcast-guest { display: block; text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
    a.libro-autor:hover, a.podcast-guest:hover { color: var(--earth); }
    .libro-desc { font-size: 0.8rem; font-weight: 300; line-height: 1.6; color: var(--muted); }

    /* ESCUCHA */
    .escucha-intro { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-style: normal; color: var(--text-soft); line-height: 1.8; max-width: 680px; margin-bottom: 3rem; border-left: 3px solid var(--green-light); padding-left: 1.5rem; }
    .podcast-grid { display: flex; flex-direction: column; gap: 1.5rem; }
    .podcast-card { background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); padding: 1.5rem; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; display: flex; flex-direction: row; align-items: center; gap: 1.75rem; }
    .podcast-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(92,122,95,0.1); border-color: var(--green-light); }
    .podcast-num { font-family: 'DM Serif Display', serif; font-size: 1.6rem; font-weight: 300; color: var(--green-light); line-height: 1; }
    .podcast-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.4rem; }
    .podcast-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; font-weight: 500; color: var(--text); line-height: 1.35; }
    .podcast-guest { font-size: 0.75rem; color: var(--green); font-weight: 500; }
    .podcast-topic { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
    .podcast-desc { font-size: 0.86rem; font-weight: 300; line-height: 1.7; color: var(--text-soft); margin-top: 0.15rem; }
    .podcast-desc strong { font-weight: 600; color: var(--terracota); }
    .podcast-special { background: var(--bg-dark); border-color: var(--bg-dark); }
    .podcast-special .podcast-num, .podcast-special h3, .podcast-special .podcast-guest, .podcast-special .podcast-topic, .podcast-special .podcast-desc { color: white; }
    .podcast-special .podcast-desc strong { color: var(--gold); }
    .podcast-special .podcast-topic { color: rgba(255,255,255,0.6); }
    .podcast-special .podcast-num { color: rgba(255,255,255,0.5); }
    .podcast-thumb { position: relative; display: block; flex: 0 0 260px; width: 260px; align-self: center; margin: 0; border-radius: calc(var(--radius) - 6px); overflow: hidden; aspect-ratio: 16/9; background: var(--bg-alt); }
    .podcast-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
    .podcast-card:hover .podcast-thumb img { transform: scale(1.05); }
    .podcast-thumb .play-badge { position: absolute; inset: 0; margin: auto; width: 2.75rem; height: 2.75rem; border-radius: 50%; background: rgba(36,27,20,0.55); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
    .podcast-thumb .play-badge::after { content: ""; border-style: solid; border-width: 0.5rem 0 0.5rem 0.85rem; border-color: transparent transparent transparent #fff; margin-left: 0.15rem; }
    .podcast-card:hover .podcast-thumb .play-badge { background: var(--gold); }
    .podcast-card h3 a { color: inherit; text-decoration: none; transition: color 0.2s; }
    .podcast-card h3 a:hover { color: var(--green); }
    @media (max-width: 860px) { .podcast-card { flex-direction: column; align-items: stretch; } .podcast-thumb { width: 100%; flex: none; } }

    /* REFERENTES */
    .referentes { background: var(--bg-green); }
    .ref-intro { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-style: normal; color: var(--text-soft); line-height: 1.8; max-width: 680px; margin-bottom: 3rem; }
    .ref-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .ref-card { background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); padding: 1.75rem 1.5rem; transition: transform 0.3s, box-shadow 0.3s; }
    .ref-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(92,122,95,0.1); }
    .ref-avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--green-pale), var(--earth-light)); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; overflow: hidden; }
    .ref-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .ref-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.05rem; font-weight: 500; color: var(--text); margin-bottom: 0.2rem; text-align: center; }
    .ref-campo { font-size: 0.72rem; color: var(--green); font-weight: 500; text-align: center; margin-bottom: 0.75rem; }
    .ref-quote { font-family: 'DM Serif Display', serif; font-size: 0.92rem; color: var(--text-soft); line-height: 1.6; margin-bottom: 0.5rem; }
    .ref-card p { font-size: 0.8rem; font-weight: 300; line-height: 1.65; color: var(--muted); }

    /* INSPÍRATE — navegación interna y cross-links entre libros / podcasts / referentes */
    .inspirate-jumpnav { padding: 2.25rem 2rem 1.5rem; }
    .inspirate-jumpnav + section { padding-top: 2rem; }
    .inspirate-jumpnav-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
    .inspirate-jumpnav a { position: relative; overflow: hidden; flex: 1 1 260px; max-width: 320px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.9rem 1.75rem 2.3rem; text-align: center; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
    .inspirate-jumpnav a:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.07); border-color: var(--green-light); }
    .inspirate-jumpnav .jumpnav-label { display: inline-flex; align-items: center; gap: 0.4rem; font-family: 'DM Serif Display', serif; font-size: 1.1rem; font-weight: 500; color: var(--text); margin-bottom: 0.5rem; transition: color 0.25s; }
    .inspirate-jumpnav a:hover .jumpnav-label { color: var(--green); }
    .inspirate-jumpnav .jumpnav-label .hub-arrow { font-size: 1rem; color: var(--green-light); opacity: 0; transform: translateX(-4px); transition: opacity 0.25s, transform 0.25s; }
    .inspirate-jumpnav a:hover .jumpnav-label .hub-arrow { opacity: 1; transform: translateX(0); }
    .inspirate-jumpnav p { font-size: 0.82rem; font-weight: 300; line-height: 1.6; color: var(--text-soft); margin: 0; }
    .inspirate-jumpnav .hub-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--border); }
    .inspirate-jumpnav .hub-bar::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0%; background: var(--green-light); transition: width 0.35s ease; }
    .inspirate-jumpnav a:hover .hub-bar::after { width: 100%; }

    /* FUNDAMENTOS — filtro minimalista (lista de texto, sin píldoras) */
    .fundamentos-jumpnav { display: flex; justify-content: center; align-items: center; gap: 1.35rem; flex-wrap: wrap; padding: 4rem 2rem 4.5rem; }
    .fundamentos-jumpnav a { font-family: 'DM Serif Display', serif; font-size: 1.08rem; font-weight: 500; letter-spacing: 0.01em; color: var(--text); padding-bottom: 0.4rem; border-bottom: 2px solid var(--gold); transition: color 0.2s, border-color 0.2s, transform 0.2s; display: inline-block; }
    .fundamentos-jumpnav a:hover { color: var(--green); border-color: var(--green); transform: translateY(-2px); }
    .fundamentos-jumpnav-sep { color: var(--border); font-size: 1.1rem; }
    .fundamentos-jumpnav + .fundamento-section { border-top: none; }
    .cross-links { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.85rem; }
    .cross-link { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.02em; color: var(--green); background: var(--green-pale); border-radius: 2rem; padding: 0.32rem 0.7rem; display: inline-flex; align-items: center; gap: 0.3rem; transition: background 0.2s, color 0.2s; }
    .cross-link:hover { background: var(--gold); color: var(--ink); }
    .podcast-special .cross-link, .podcast-card:not(.podcast-special) .cross-link { align-self: flex-start; }

    /* COMUNIDAD */
    .comunidad { background: var(--bg-dark); }
    .comunidad .eyebrow { color: var(--green-light); }
    .comunidad h2.sec-title { color: white; }
    .com-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
    .com-text p { font-size: 1rem; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
    .com-text .com-highlight { font-family: 'DM Serif Display', serif; font-size: 1.25rem; color: var(--green-light); line-height: 1.6; margin-bottom: 1.5rem; display: block; }
    .com-form-wrap { background: var(--card); border-radius: var(--radius); padding: 2.5rem; }
    .com-form-wrap h3 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; font-weight: 400; color: var(--text); margin-bottom: 0.5rem; }
    .com-form-wrap p { font-size: 0.88rem; font-weight: 300; color: var(--muted); margin-bottom: 1.75rem; line-height: 1.7; }
    .form-field { margin-bottom: 1rem; }
    .form-field label { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 0.4rem; }
    .form-field input, .form-field textarea { width: 100%; background: var(--bg); border: 1.5px solid var(--border); border-radius: 0.75rem; padding: 0.75rem 1rem; font-size: 0.88rem; font-family: inherit; color: var(--text); outline: none; transition: border-color 0.2s; resize: none; }
    .form-field input:focus, .form-field textarea:focus { border-color: var(--green); }
    .form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted); }
    .form-consent { display: flex; align-items: flex-start; gap: 0.6rem; text-align: left; font-size: 0.78rem; line-height: 1.5; color: var(--muted); cursor: pointer; margin-bottom: 1rem; }
    .form-consent input[type="checkbox"] { width: 16px; height: 16px; min-width: 16px; margin-top: 0.2rem; padding: 0; border-radius: 4px; accent-color: var(--green); cursor: pointer; }
    .form-consent a { color: var(--green); text-decoration: underline; }

    /* COMUNIDAD — página propia (comunidad.html): un único fondo de nubes muy suaves, pintado una sola vez
       detrás de las 3 secciones (envueltas en .comunidad-nubes), así no hay corte entre ellas al hacer scroll */
    .eyebrow-ciruela { color: var(--ciruela); }
    .comunidad-nubes { position: relative; overflow: hidden; background: var(--bg); }
    .comunidad-nubes .blob { position: absolute; border-radius: 50%; filter: blur(95px); pointer-events: none; z-index: 1; }
    .comunidad-page-hero .container, .comunidad-page-form-section .container, .foro .container { position: relative; z-index: 2; }
    .comunidad-page-hero { text-align: center; }
    .comunidad-page-hero .eyebrow { color: #96702F; }
    .comunidad-page-hero h2.sec-title { max-width: 720px; margin-left: auto; margin-right: auto; color: var(--text); }
    .comunidad-page-hero h2.sec-title em { color: var(--green); }
    .comunidad-page-highlight { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: var(--text-soft); line-height: 1.6; max-width: 780px; margin: 1.5rem auto 2rem; display: block; }
    .comunidad-page-text { max-width: 900px; margin: 0 auto; text-align: left; }
    .comunidad-page-text p { font-size: 1rem; font-weight: 300; line-height: 1.9; color: var(--text-soft); margin-bottom: 1rem; }
    .comunidad-page-text .kw { font-weight: 700; color: var(--text); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: var(--gold); }

    /* COMUNIDAD + FORO lado a lado — el contenido real de la pagina a la vista sin apenas scroll */
    .comunidad-duo { padding: 3rem 2rem 4.5rem; }
    .comunidad-duo-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 2.25rem; align-items: start; }
    .comunidad-page-form-card, .foro-entry-card {
      width: 100%; background: rgba(255,255,255,0.55);
      backdrop-filter: blur(22px) saturate(160%); -webkit-backdrop-filter: blur(22px) saturate(160%);
      border: 1px solid rgba(198,166,103,0.4); border-radius: 1.4rem; padding: 2.2rem 2rem;
      box-shadow: 0 35px 70px -35px rgba(42,32,24,0.28);
    }
    .comunidad-page-form-card .join-eyebrow { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #96702F; margin-bottom: 0.9rem; }
    .comunidad-page-form-card h3 { color: var(--text); font-size: 1.4rem; }
    .comunidad-page-form-card .form-field { margin-bottom: 0.75rem; }

    .foro-entry-card .foro-eyebrow { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracota); margin-bottom: 0.9rem; }
    .foro-entry-card .sec-title { font-size: 1.4rem; margin-bottom: 1rem; }

    /* FORO DE LA COMUNIDAD (comunidad.html) */
    .foro { padding-top: 0.5rem; }
    .foro-aviso-edad { text-align: left; font-size: 0.74rem; color: var(--terracota); line-height: 1.55; margin-bottom: 1.3rem; }
    .foro-aviso-edad a { color: inherit; text-decoration: underline; }
    .ayuda-inmediata { max-width: 720px; margin: 0 auto; padding: 0.85rem 1.3rem; background: var(--card); border: 1.5px solid var(--terracota); border-radius: 0.9rem; }
    .ayuda-inmediata-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
    .ayuda-inmediata p { font-size: 0.82rem; color: var(--text-soft); margin: 0; }
    .ayuda-inmediata .btn { flex-shrink: 0; padding: 0.55rem 1.15rem; font-size: 0.72rem; }
    .ayuda-inmediata #ayuda-inmediata-caja { margin-top: 1.1rem; text-align: left; }

    .foro-prompts-label { text-align: left; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.8rem; }
    .foro-prompts { display: flex; justify-content: flex-start; flex-wrap: wrap; gap: 0.3rem 0; margin-bottom: 1.4rem; text-align: left; }
    .foro-prompt { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 0.74rem; color: #8C7F71; padding: 0.1rem 0.55rem 0.1rem 0; }
    .foro-prompt-sep { color: #E2DACB; align-self: center; font-size: 0.68rem; }

    .foro-form { display: flex; flex-direction: column; gap: 0.65rem; background: rgba(255,255,255,0.6); border: 1px solid var(--border); border-radius: 0.6rem; padding: 1.1rem 1.2rem 1.3rem; }
    .foro-form input, .foro-form textarea { width: 100%; background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: 0.75rem; padding: 0.65rem 0.9rem; font-size: 0.85rem; font-family: inherit; color: var(--text); outline: none; transition: border-color 0.2s; resize: none; }
    .foro-form input:focus, .foro-form textarea:focus { border-color: var(--gold); }
    .foro-form input::placeholder, .foro-form textarea::placeholder { color: var(--muted); }
    .foro-form .btn-primary { align-self: flex-end; background: transparent; border: 1.5px solid var(--gold); color: #96702F; padding: 0.6rem 1.4rem; font-size: 0.74rem; }
    .foro-form .btn-primary:hover { background: var(--gold); color: var(--ink); }
    .foro-nota { text-align: left; font-size: 0.72rem; color: var(--muted); margin-top: 0.9rem; }
    .foro-lista { display: flex; flex-direction: column; gap: 1.6rem; max-width: 720px; margin: 0 auto 2.5rem; }
    .foro-msg { border-left: 2px solid var(--gold); padding: 0.1rem 0 0.1rem 1.3rem; }
    .foro-msg-head { display: flex; align-items: baseline; gap: 0.7rem; margin-bottom: 0.5rem; }
    .foro-msg-autor { font-weight: 700; font-size: 0.8rem; color: var(--text); }
    .foro-msg-time { font-size: 0.66rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
    .foro-msg-texto { font-size: 0.92rem; font-weight: 300; line-height: 1.75; color: var(--text-soft); white-space: pre-wrap; margin-bottom: 0.6rem; }
    .foro-msg-reply { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em; color: #96702F; text-decoration: none; background: none; border: none; cursor: pointer; font-family: inherit; padding: 0; }
    .foro-msg-reply::before { content: '↳ '; }
    .foro-msg-reply:hover { text-decoration: underline; }
    .foro-vacio, .foro-cargando { text-align: center; font-size: 0.9rem; color: var(--muted); padding: 2rem 0; }

    /* AYUDA POR PAÍS — selector de país tras detectar una señal de crisis (chat y foro) */
    .crisis-ayuda { margin-top: 0.6rem; }
    .crisis-ayuda p { margin-bottom: 0.5rem; }
    .crisis-ayuda-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
    .crisis-ayuda-row select { flex: 1 1 160px; min-width: 140px; background: var(--bg); border: 1.5px solid var(--border); border-radius: 0.75rem; padding: 0.5rem 0.75rem; font-size: 0.82rem; font-family: inherit; color: var(--text); outline: none; }
    .msg .crisis-ayuda .btn { padding: 0.6rem 1.1rem; font-size: 0.72rem; }
    .foro-crisis-ayuda { margin-top: 1.1rem; background: var(--card); border: 1.5px solid var(--terracota); border-radius: 0.9rem; padding: 1.2rem 1.3rem; }
    .foro-crisis-ayuda p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 0; }

    /* TIENDA */
    .productos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
    .producto-card { background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
    .producto-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.09); }
    .producto-img { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--green-pale), var(--earth-light)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
    .producto-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .producto-info { padding: 1.5rem; }
    .producto-info h3 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; font-weight: 500; color: var(--text); margin-bottom: 0.5rem; }
    .producto-info p { font-size: 0.86rem; font-weight: 300; line-height: 1.7; color: var(--muted); margin-bottom: 1rem; }
    .producto-precio { font-size: 1.1rem; font-weight: 600; color: var(--green); }

    /* RECURSOS — vitrina minimalista de los recursos reales de recursos.html */
    .recursos-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; margin-top: .5rem; }
    .recursos-teaser-card { position: relative; overflow: hidden; background: var(--card); border: 1px solid var(--border); border-top: 3px solid var(--jade); border-radius: var(--radius); padding: 2.4rem 2.2rem; text-decoration: none; display: block; transition: transform .3s, box-shadow .3s; }
    .recursos-teaser-card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -20px rgba(42,32,24,.18); }
    .recursos-teaser-card.terra { border-top-color: var(--terracota); }
    .recursos-teaser-ghost { position: absolute; top: -.6rem; right: 1rem; font-family: 'Italiana', serif; font-size: 6rem; color: rgba(42,32,24,.045); line-height: 1; user-select: none; pointer-events: none; }
    .recursos-teaser-icon { width: 50px; height: 50px; margin-bottom: 1.3rem; }
    .recursos-teaser-icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .recursos-teaser-tag { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--jade-deep); margin-bottom: .8rem; position: relative; }
    .recursos-teaser-card.terra .recursos-teaser-tag { color: var(--terracota); }
    .recursos-teaser-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; font-weight: 400; color: var(--text); margin-bottom: .7rem; position: relative; }
    .recursos-teaser-card p { font-size: .92rem; font-weight: 300; color: var(--text-soft); line-height: 1.7; margin-bottom: 1.1rem; position: relative; max-width: 420px; }
    .recursos-teaser-go { font-size: .8rem; font-weight: 600; color: var(--text); border-bottom: 1.5px solid var(--gold); padding-bottom: .2rem; position: relative; }
    .recursos-teaser-card:hover .recursos-teaser-go { color: var(--gold); }
    .recursos-teaser-more { text-align: center; margin-top: 2.4rem; }
    .recursos-teaser-more a { font-size: .82rem; font-weight: 600; color: var(--ciruela); text-decoration: none; border-bottom: 1px solid rgba(110,76,103,.35); padding-bottom: 2px; }
    .recursos-teaser-more a:hover { border-color: var(--ciruela); }

    /* DETALLE DE BIENVENIDA */

    /* GUÍA B */
    .guia-b { background: var(--bg-green); }
    .acomp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .chat-preview { background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: 0 20px 56px rgba(0,0,0,0.08); }
    .chat-hdr { background: var(--bg-dark); padding: 1.1rem 1.5rem; display: flex; align-items: center; gap: 0.8rem; }
    .chat-hdr-av { width: 38px; height: 38px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: #fff; overflow: hidden; }
    .chat-hdr-av img, .cw-av img, .fab-avatar { width: 100%; height: 100%; object-fit: cover; display: block; }
    .chat-hdr-name { font-family: 'DM Serif Display', serif; font-size: 1.15rem; font-weight: 500; color: white; }
    .chat-hdr-sub { font-size: 0.68rem; color: rgba(255,255,255,0.7); }
    .chat-msgs { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; min-height: 200px; }
    .msg { max-width: 88%; padding: 0.8rem 1.1rem; border-radius: 1rem; font-size: 0.88rem; line-height: 1.65; font-weight: 300; }
    .msg-aura { background: var(--green-pale); color: var(--text); border-bottom-left-radius: 0.3rem; align-self: flex-start; }
    .msg-user { background: var(--bg-dark); color: white; border-bottom-right-radius: 0.3rem; align-self: flex-end; }
    .chat-input-row { padding: 1rem 1.5rem; border-top: 1px solid var(--border); display: flex; gap: 0.75rem; align-items: center; }
    .chat-input-fake { flex: 1; background: var(--bg); border: none; border-radius: 2rem; padding: 0.65rem 1rem; font-size: 0.82rem; color: var(--muted); font-family: inherit; }
    .chat-send-fake { width: 34px; height: 34px; background: var(--gold); border: none; border-radius: 50%; cursor: pointer; color: var(--ink); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
    .chat-send-fake:hover { background: var(--bg-dark); color: #fff; }

    /* DISCLAIMER & FOOTER */
    .disclaimer { background: var(--green-pale); border-top: 1px solid var(--green-light); padding: 2rem; text-align: center; }
    .disclaimer p { font-size: 0.82rem; font-weight: 300; color: var(--text-soft); line-height: 1.7; max-width: 700px; margin: 0 auto; }
    .disclaimer strong { font-weight: 600; color: var(--green); }
    footer { background: var(--bg-alt); padding: 2.5rem; border-top: 1px solid var(--border); }
    .footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.25rem; }
    .footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.3rem; font-weight: 500; color: var(--green); }
    .footer-logo span { color: var(--earth); }
    .footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
    .footer-links a { font-size: 0.78rem; color: var(--muted); transition: color 0.2s; }
    .footer-links a:hover { color: var(--green); }
    .footer-copy { font-size: 0.75rem; color: var(--muted); }

    /* CHATBOT */
    #fab { position: fixed; bottom: 2rem; right: 2rem; z-index: 300; width: 60px; height: 60px; background: var(--gold); border: none; border-radius: 50%; cursor: pointer; font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--ink); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(166,140,100,0.45); transition: transform 0.3s, background 0.2s; overflow: hidden; }
    #fab:hover { transform: scale(1.08); }
    #fab.open { background: var(--text); }
    #fab .fab-close { display: none; }
    #fab.open .fab-avatar { display: none; }
    #fab.open .fab-close { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: #fff; }
    #chat-widget { position: fixed; bottom: 5.5rem; right: 2rem; z-index: 300; width: 360px; background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: 0 24px 64px rgba(0,0,0,0.14); display: none; flex-direction: column; overflow: hidden; transform-origin: bottom right; }
    #chat-widget.open { display: flex; animation: chatPop 0.3s cubic-bezier(.34,1.56,.64,1) forwards; }
    @keyframes chatPop { from { opacity: 0; transform: scale(0.88); } to { opacity: 1; transform: scale(1); } }
    .cw-header { background: var(--bg-dark); padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; }
    .cw-id { display: flex; align-items: center; gap: 0.75rem; }
    .cw-av { width: 36px; height: 36px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'DM Serif Display', serif; font-size: 1rem; color: #fff; overflow: hidden; }
    .cw-name { font-family: 'DM Serif Display', serif; font-size: 1.1rem; font-weight: 500; color: white; }
    .cw-sub { font-size: 0.68rem; color: rgba(255,255,255,0.7); }
    .cw-actions { display: flex; align-items: center; gap: 0.85rem; }
    .cw-close, .cw-reset { background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; font-size: 1.1rem; transition: color 0.2s; line-height: 1; }
    .cw-close:hover, .cw-reset:hover { color: white; }
    #chat-body { flex: 1; padding: 1.25rem; display: flex; flex-direction: column; gap: 0.8rem; max-height: 320px; overflow-y: auto; }
    #chat-body .msg { font-size: 0.86rem; }
    .quick-replies { display: flex; flex-direction: column; gap: 0.5rem; align-self: flex-start; max-width: 90%; }
    .quick-reply-btn { background: var(--bg); border: 1px solid var(--border); border-radius: 1rem; padding: 0.55rem 0.9rem; font-size: 0.82rem; font-family: inherit; color: var(--text); text-align: left; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
    .quick-reply-btn:hover { background: var(--green-pale); border-color: var(--green-light); }
    .typing { display: flex; gap: 4px; padding: 0.4rem; align-self: flex-start; }
    .typing span { width: 6px; height: 6px; background: var(--green-light); border-radius: 50%; animation: bounce 1.1s infinite; }
    .typing span:nth-child(2) { animation-delay: 0.18s; } .typing span:nth-child(3) { animation-delay: 0.36s; }
    @keyframes bounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }
    .cw-footer { padding: 0.75rem 1rem; border-top: 1px solid var(--border); display: flex; gap: 0.5rem; align-items: center; }
    #chat-input { flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: 2rem; padding: 0.6rem 1rem; font-size: 0.84rem; font-family: inherit; color: var(--text); outline: none; transition: border-color 0.2s; }
    #chat-input:focus { border-color: var(--green-light); }
    #chat-input::placeholder { color: var(--muted); }
    #send-btn { width: 36px; height: 36px; flex-shrink: 0; background: var(--gold); border: none; border-radius: 50%; cursor: pointer; color: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: background 0.2s; }
    #send-btn:hover { background: var(--bg-dark); color: #fff; }

    /* POPUP GUÍA GRATUITA */
    .popup-overlay { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1.5rem; background: rgba(20,16,12,0.6); opacity: 0; visibility: hidden; transition: opacity 0.4s ease; }
    .popup-overlay.open { opacity: 1; visibility: visible; }
    .popup-card { position: relative; width: min(92vw, 480px); background: var(--bg-dark); border-radius: var(--radius); padding: 3rem 2.6rem; text-align: center; box-shadow: 0 30px 80px rgba(0,0,0,0.5); transform: translateY(16px) scale(0.97); opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease; }
    .popup-overlay.open .popup-card { transform: translateY(0) scale(1); opacity: 1; }
    .popup-close { position: absolute; top: 1.1rem; right: 1.1rem; width: 30px; height: 30px; border-radius: 50%; border: none; background: rgba(255,255,255,0.08); color: #fff; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
    .popup-close:hover { background: rgba(255,255,255,0.16); }
    .popup-eyebrow { display: block; font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green-light); margin-bottom: 1rem; }
    .popup-title { font-family: 'Italiana', serif; font-size: clamp(1.6rem, 3vw, 2.1rem); color: #F7F3EC; line-height: 1.2; margin-bottom: 0.9rem; }
    .popup-body { font-family: 'DM Sans', sans-serif; font-size: 0.94rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.68); margin-bottom: 1.8rem; }
    .popup-form { display: flex; flex-direction: column; gap: 0.75rem; }
    .popup-form[hidden] { display: none; }
    .popup-form input { width: 100%; padding: 0.95rem 1.1rem; border-radius: 3rem; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.92rem; outline: none; transition: border-color 0.2s; }
    .popup-form input::placeholder { color: rgba(255,255,255,0.4); }
    .popup-form input:focus { border-color: var(--gold); }
    .popup-consent { display: flex; align-items: flex-start; gap: 0.6rem; text-align: left; font-family: 'DM Sans', sans-serif; font-size: 0.76rem; line-height: 1.5; color: rgba(255,255,255,0.6); cursor: pointer; }
    .popup-consent input[type="checkbox"] { width: 16px; height: 16px; min-width: 16px; margin-top: 0.2rem; padding: 0; border-radius: 4px; accent-color: var(--gold); cursor: pointer; }
    .popup-consent a { color: var(--green-light); text-decoration: underline; }
    .popup-thanks { font-family: 'DM Sans', sans-serif; font-size: 0.94rem; color: var(--green-light); }

    /* DETRÁS DE ESTADO B — carta personal (detras.html): columna ancha tipo ensayo/revista, fotos flotadas dentro del texto */
    .detras-page { padding: 10rem 1.5rem 7rem; background: var(--bg); }
    .detras-carta { max-width: 720px; margin: 0 auto; }

    .detras-eyebrow { display: block; text-align: center; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 3rem; }

    .detras-texto { font-size: 1.02rem; font-weight: 300; line-height: 1.95; color: var(--text-soft); }
    .detras-texto p + p { margin-top: 1.3rem; }
    .detras-movimiento + .detras-movimiento { margin-top: 2.5rem; }
    .detras-clear { clear: both; }

    .detras-cita { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(1.2rem, 2.4vw, 1.5rem); color: var(--terracota); text-align: center; line-height: 1.6; max-width: 480px; margin: 3rem auto; clear: both; }
    .detras-cita::before { content: ""; display: block; width: 32px; height: 1px; background: var(--gold); margin: 0 auto 1.4rem; }

    .detras-interludio { display: flex; justify-content: center; margin: 3rem 0; clear: both; }
    .detras-foto { width: min(240px, 60vw); aspect-ratio: 4/5; border-radius: 46% 54% 58% 42% / 42% 46% 54% 58%; background: linear-gradient(160deg, #F7ECD0, #E9CFC9 60%, #D9BFC4); display: flex; align-items: center; justify-content: center; text-align: center; padding: 1.75rem; box-shadow: 0 24px 50px rgba(110,76,103,0.16); }
    .detras-foto img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; box-shadow: none; }
    .detras-foto span { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 0.8rem; color: var(--ciruela); line-height: 1.6; }
    @media (min-width: 700px) {
      .detras-interludio.izq { float: left; display: block; margin: 0.25rem 2.25rem 1.25rem 0; }
      .detras-interludio.der { float: right; display: block; margin: 0.25rem 0 1.25rem 2.25rem; }
    }

    .detras-firma-final { clear: both; text-align: center; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
    .detras-firma-final .previo { font-size: 0.98rem; font-weight: 300; color: var(--text-soft); margin-bottom: 1.2rem; }
    .detras-firma-final .nombre { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 2.1rem; color: var(--text); }
    .detras-firma-final .trazo { width: 80px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0.9rem auto 0; }

    /* PÁGINAS LEGALES (privacidad, términos...) */
    .legal-page .sec-title { margin-bottom: 1.25rem; }
    .legal-aviso { background: var(--green-pale); border: 1px solid var(--green-light); border-radius: var(--radius); padding: 1.1rem 1.4rem; font-size: 0.88rem; color: var(--text-soft); margin-bottom: 2.5rem; }
    .legal-page h3 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--text); margin: 2rem 0 0.6rem; }
    .legal-page h3:first-child { margin-top: 0; }
    .popup-skip { display: block; margin-top: 1.2rem; font-family: 'Inter', sans-serif; font-size: 0.76rem; color: rgba(255,255,255,0.4); text-decoration: underline; cursor: pointer; }

    /* RESPONSIVE */
    @media (max-width: 1024px) { .libros-grid, .ref-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 900px) { .acomp-grid, .com-layout { grid-template-columns: 1fr; gap: 3rem; } .pilares-grid { grid-template-columns: repeat(2, 1fr); } .productos-grid { grid-template-columns: repeat(2, 1fr); } .fundamento-section-inner { grid-template-columns: 1fr; gap: 2rem; } .fundamento-aside { position: static; } .fundamentos-intro-top { grid-template-columns: 1fr; gap: 2rem; } .comunidad-duo-grid { grid-template-columns: 1fr; gap: 2rem; } .recurso-practice { grid-template-columns: 1fr; } }

    /* NAV — a partir de aquí el menú horizontal se sustituye por el panel móvil */
    @media (max-width: 900px) {
      .nav-toggle { display: block; }
      .nav-links {
        position: fixed; top: 0; right: 0; bottom: 0;
        width: min(82vw, 360px);
        margin: 0; padding: 6.5rem 1.75rem 2.5rem;
        list-style: none;
        display: flex; flex-direction: column; align-items: stretch; gap: 0;
        background: var(--bg);
        box-shadow: -18px 0 48px rgba(30,24,18,0.16);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      }
      nav.menu-open .nav-links { transform: translateX(0); }
      .nav-links > li { width: 100%; }
      .nav-links > li > a { display: block; padding: 0.95rem 0.1rem; font-size: 0.95rem; font-weight: 500; letter-spacing: 0.01em; text-transform: none; color: var(--text); white-space: normal; border-bottom: 1px solid var(--border); }

      .has-dropdown { display: flex; flex-wrap: wrap; align-items: center; border-bottom: 1px solid var(--border); }
      .has-dropdown > a { flex: 1 1 auto; border-bottom: none; }
      .dropdown-caret { display: flex; flex: 0 0 auto; align-items: center; justify-content: center; width: 40px; height: 40px; margin: 0; background: none; border: none; color: var(--muted); cursor: pointer; transition: transform 0.3s ease, color 0.3s ease; }
      .dropdown-caret svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
      .has-dropdown.dropdown-open .dropdown-caret { transform: rotate(180deg); color: var(--green); }
      .dropdown-static-arrow { display: none; }
      .dropdown {
        flex: 1 1 100%;
        position: static; opacity: 1; pointer-events: auto; transform: none;
        background: transparent; border: none; box-shadow: none; margin: 0; padding: 0;
        max-height: 0; overflow: hidden;
        transition: max-height 0.35s ease;
      }
      .has-dropdown.dropdown-open .dropdown { max-height: 320px; padding-bottom: 0.5rem; }
      .dropdown a { padding: 0.7rem 0.1rem 0.7rem 1rem; font-size: 0.88rem; color: var(--text-soft); border-bottom: none; }

      .nav-links > li.nav-lang { border-bottom: none; border-top: 1px solid var(--border); margin-top: 1rem; padding-top: 1.35rem; justify-content: flex-start; }
      .nav-links > li.nav-lang a { display: inline; padding: 0.3rem 0.15rem; font-size: 0.72rem; border-bottom: none; }
      .nav-links a.nav-regalo { display: block; margin-top: 0.85rem; padding: 0.9rem 1.1rem; text-align: center; background: var(--bg-alt); border: 1px solid var(--green-light); border-radius: 999px; }
    }

    @media (max-width: 640px) { nav { padding: 1rem 1.25rem; } .pilares-grid, .productos-grid, .libros-grid, .ref-grid, .inspirate-hub-grid, .recursos-teaser-grid { grid-template-columns: 1fr; } section { padding: 4.5rem 1.25rem; } .hero-brand { font-size: 3rem; } #chat-widget { width: calc(100vw - 2rem); right: 1rem; } }
