/* =========================================================================
   C.A.A.R. Ã¢â‚¬â€ Hoja de estilos
   EstÃƒÂ©tica: acuÃƒÂ¡tica Ã‚Â· editorial Ã‚Â· institucional Ã‚Â· mobile-first
   TipografÃƒÂ­as: Bricolage Grotesque (display) + DM Sans (texto)
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
    --navy:        #071a52;   /* azul profundo del logo */
    --navy-700:    #0a2470;
    --blue:        #1b4dd1;   /* azul primario */
    --celeste:     #29abe2;   /* celeste del logo */
    --celeste-300: #7fd4f5;
    --ice:         #eaf6fd;
    --foam:        #f3fafe;
    --white:       #ffffff;
    --ink:         #0a1430;   /* texto principal */
    --ink-soft:    #4a5570;   /* texto secundario */
    --wa:          #25d366;   /* verde WhatsApp */
    --wa-dark:     #1da851;

    --maxw: 1140px;
    --header-h: 76px;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow-sm: 0 4px 14px rgba(7, 26, 82, .08);
    --shadow-md: 0 18px 40px -18px rgba(7, 26, 82, .35);
    --shadow-lg: 0 30px 60px -24px rgba(7, 26, 82, .45);

    --font-display: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
    --font-body: "DM Sans", system-ui, sans-serif;
    --font-hero: "Bebas Neue", "Oswald", "Trebuchet MS", sans-serif;  /* display deportivo del hero */
    --font-ui: "Manrope", system-ui, sans-serif;                       /* texto/UI del hero */

    --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; font-weight: 700; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 100;
    background: var(--navy); color: #fff; padding: .75rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--celeste); outline-offset: 2px; border-radius: 4px; }

/* ---------- TipografÃƒÂ­a utilitaria ---------- */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--celeste-300);
    margin-bottom: 1rem;
}
.eyebrow--dark { color: var(--blue); }

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }

.section__head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section__title {
    font-size: clamp(1.9rem, 5.5vw, 3rem);
    color: var(--navy);
}
.section__title--light { color: var(--white); }
.section__lead { margin-top: 1rem; font-size: 1.08rem; color: var(--ink-soft); }
.section__lead--light { color: rgba(234, 246, 253, .82); }

/* ---------- Botones ---------- */
.btn {
    --btn-bg: var(--blue);
    --btn-fg: #fff;
    display: inline-flex; align-items: center; gap: .55rem;
    background: var(--btn-bg); color: var(--btn-fg);
    font-family: var(--font-body); font-weight: 600; font-size: 1rem;
    padding: .85rem 1.5rem; border: 0; border-radius: 999px; cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
    box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.btn--sm { padding: .55rem 1.1rem; font-size: .92rem; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.08rem; }
.btn--primary { --btn-bg: var(--blue); }
.btn--wa { --btn-bg: var(--wa); --btn-fg: #053b1e; }
.btn--wa:hover { background: var(--wa-dark); --btn-fg: #fff; }
.btn--ghost {
    --btn-bg: transparent; --btn-fg: #fff;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .45);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px #fff; background: rgba(255, 255, 255, .08); }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
    position: sticky; top: 0; z-index: 100;
    transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    padding-block: .85rem;
}
.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; position: relative; z-index: 3; }
.brand__logo {
    width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
    background: #fff; padding: 3px; object-fit: contain; box-shadow: var(--shadow-sm);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); letter-spacing: -.02em; }
.site-header.is-scrolled .brand__text strong { color: var(--navy); }
.brand__text small { font-size: .72rem; color: var(--ink-soft); letter-spacing: .04em; }

/* Hasta que el header tenga fondo, el texto sobre el hero va en claro */
.site-header:not(.is-scrolled) .brand__text strong { color: #fff; }
.site-header:not(.is-scrolled) .brand__text small { color: rgba(255,255,255,.75); }
.site-header:not(.is-scrolled) .site-nav > a { color: #fff; }

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav > a { font-weight: 500; font-size: .98rem; color: var(--ink); transition: color .2s; }
.site-nav > a:not(.btn):hover { color: var(--celeste); }
.site-nav .btn { color: #053b1e; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: 0; cursor: pointer; padding: 8px;
    position: relative; z-index: 2;   /* visible para ABRIR; al abrir, el panel y su × quedan encima */
}
.nav-toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.site-header.is-scrolled .nav-toggle span { background: var(--navy); }

/* Botón cerrar (X) y backdrop: solo se muestran en mobile */
.nav-close { display: none; }
.nav-backdrop { display: none; }

/* Bloqueo de scroll del body con el menú abierto */
body.no-scroll { overflow: hidden; }

/* ---------- Header responsive ---------- */
@media (max-width: 860px) {
    .nav-toggle { display: flex; }
    .brand__logo { width: 44px; height: 44px; }

    /* En mobile, sin backdrop-filter: evita que el header sea "containing block"
       del panel fixed (causa de que el menú quedara mal posicionado al scrollear). */
    .site-header.is-scrolled {
        -webkit-backdrop-filter: none; backdrop-filter: none;
        background: rgba(255, 255, 255, .96);
    }

    .site-nav {
        position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px); z-index: 3;
        flex-direction: column; align-items: stretch; gap: 1.1rem;
        background: linear-gradient(180deg, var(--navy-700), var(--navy));
        padding: 4.8rem 1.6rem 2rem;
        transform: translateX(100%); visibility: hidden;
        transition: transform .35s var(--ease), visibility .35s var(--ease);
        box-shadow: var(--shadow-lg); overflow-y: auto;
    }
    .site-header.is-nav-open .site-nav { transform: translateX(0); visibility: visible; }
    .site-nav > a { color: #fff !important; font-size: 1.15rem; padding: .35rem 0; }
    .site-nav .btn { width: 100%; justify-content: center; margin-top: .4rem; }

    /* Hamburguesa -> X */
    .site-header.is-nav-open .nav-toggle span { background: #fff; }
    .site-header.is-nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .site-header.is-nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .site-header.is-nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Botón cerrar visible dentro del panel */
    .nav-close {
        display: inline-flex; align-items: center; justify-content: center;
        position: absolute; top: .7rem; right: 1rem;
        width: 42px; height: 42px; border: 0; border-radius: 50%;
        background: rgba(255,255,255,.1); color: #fff; font-size: 1.9rem; line-height: 1; cursor: pointer;
        transition: background .2s;
    }
    .nav-close:hover, .nav-close:focus-visible { background: rgba(255,255,255,.22); }

    /* Backdrop: cerrar tocando fuera */
    .nav-backdrop {
        display: block; position: fixed; inset: 0; z-index: 1;
        background: rgba(2, 12, 40, .55);
        opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
    }
    .site-header.is-nav-open .nav-backdrop { opacity: 1; visibility: visible; }
}

/* =========================================================================
   HERO Ã¢â‚¬â€ "DEEP LANE"
   InmersiÃƒÂ³n acuÃƒÂ¡tica fullscreen: profundidad + caustics + rayos de luz +
   burbujas (canvas) + nadador en movimiento + tipografÃƒÂ­a cinÃƒÂ©tica.
   ========================================================================= */
.hero {
    position: relative; isolation: isolate;
    min-height: 100svh;
    display: flex; align-items: center;
    color: #fff;
    overflow: hidden;
    margin-top: calc(-1 * var(--header-h));
    padding-top: var(--header-h);
    background:
        radial-gradient(140% 100% at 75% -20%, #1b4dd1 0%, transparent 45%),
        radial-gradient(120% 120% at 10% 110%, #0a2470 0%, transparent 55%),
        linear-gradient(180deg, #0a2a78 0%, var(--navy) 45%, #03102f 100%);
}

/* ---- Capas de agua (todas decorativas) ---- */
.hero__water { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }

/* Foto del nadador: cubre el hero, anclada a la derecha para dejar aire al texto */
.hero__photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: 72% 50%;
    transform: scale(1.06) translate3d(var(--water-x, 0px), var(--water-y, 0px), 0);
    transition: transform .6s var(--ease);
    will-change: transform;
}
/* Velo de contraste: oscuro a la izquierda (texto), transparente a la derecha (nadador) */
.hero__photo-shade {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(2,12,40,.95) 0%, rgba(3,16,52,.74) 36%, rgba(3,16,52,.16) 66%, rgba(3,16,52,0) 100%),
        linear-gradient(180deg, rgba(2,12,40,.5) 0%, transparent 26%, rgba(1,8,30,.6) 100%);
}
/* Refraccion: destellos sutiles en movimiento */
.hero__refract {
    position: absolute; inset: -12%;
    background:
        radial-gradient(38% 28% at 28% 22%, rgba(127,212,245,.16), transparent 70%),
        radial-gradient(46% 36% at 74% 76%, rgba(43,107,255,.14), transparent 72%);
    mix-blend-mode: screen; opacity: .85;
    animation: refract-drift 18s ease-in-out infinite alternate;
}

/* Caustics: red de luz viva generada por feTurbulence (SVG, sin JS) */
.hero__caustics {
    position: absolute; inset: -10%;
    width: 120%; height: 120%;
    mix-blend-mode: screen; opacity: .28;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 100%);
}

/* Rayos de luz descendentes (god rays) */
.hero__rays {
    position: absolute; inset: -20% -10% 0;
    background: repeating-linear-gradient(
        100deg,
        transparent 0 38px,
        rgba(127, 212, 245, .07) 38px 42px,
        transparent 42px 90px);
    transform-origin: top center;
    -webkit-mask-image: radial-gradient(120% 80% at 70% -10%, #000 0%, transparent 70%);
            mask-image: radial-gradient(120% 80% at 70% -10%, #000 0%, transparent 70%);
    animation: rays-drift 16s ease-in-out infinite alternate;
}

/* LÃƒÂ­nea de superficie + brillo en el borde superior */
.hero__surface {
    position: absolute; top: 0; left: 0; right: 0; height: 32%;
    background: linear-gradient(180deg, rgba(127, 212, 245, .30), transparent 80%);
    -webkit-mask-image: linear-gradient(180deg, #000, transparent);
            mask-image: linear-gradient(180deg, #000, transparent);
    animation: surface-breathe 9s ease-in-out infinite;
}

/* Burbujas (canvas pintado por JS) */
.hero__bubbles { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Resplandor de profundidad inferior */
.hero__vignette {
    position: absolute; inset: 0;
    background: radial-gradient(120% 90% at 50% 120%, rgba(3,16,47,.85), transparent 60%);
}

/* ---- Contenido ---- */
.hero__inner {
    position: relative; z-index: 2; width: 100%;
    display: flex; flex-direction: column; align-items: flex-start;
    text-align: left;
    padding-block: clamp(2rem, 6vh, 4rem);
}

.hero__season {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .24em;
    line-height: 1;
    text-transform: uppercase;
    color: rgba(181, 233, 255, .72);
    text-shadow: 0 8px 22px rgba(0,0,0,.35);
}
.hero__title {
    font-family: var(--font-hero);
    font-weight: 400;
    line-height: .86;
    letter-spacing: .005em;
    margin-top: 1.1rem;
    text-align: left;
    text-transform: uppercase;
    text-shadow: 0 18px 50px rgba(0,0,0,.34);
}
.hero__line { display: block; overflow: hidden; }
.hero__line > span {
    display: block;
    font-size: clamp(2.65rem, 11.6vw, 7.6rem);
    transform: translateY(110%);
    animation: line-rise 1s var(--ease) forwards;
}
.hero__line--1 > span {
    animation-delay: .15s;
    color: #fff;
}
.hero__line--2 > span {
    animation-delay: .32s;
    background: linear-gradient(96deg, #29abe2 0%, #aeeaff 42%, #fff 94%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__rule {
    width: 0; height: 3px;
    margin-top: 1.3rem;
    background: linear-gradient(90deg, #fff, var(--celeste), transparent);
    box-shadow: 0 0 22px rgba(41,171,226,.55);
    border-radius: 4px;
    animation: rule-grow 1.1s var(--ease) .7s forwards;
}
.hero__lead {
    margin-top: 1.5rem;
    max-width: 37ch;
    font-family: var(--font-ui);
    font-size: clamp(1rem, 2.4vw, 1.18rem);
    color: rgba(234, 246, 253, .9);
    text-shadow: 0 10px 26px rgba(0,0,0,.32);
    text-align: left;
    opacity: 0;
    animation: fade-up .9s var(--ease) .85s forwards;
}
.hero__tag {
    color: rgba(181, 233, 255, .58);
}
@media (max-width: 920px) {
    .hero__photo {
        object-position: 68% 50%;
    }
    .hero__photo-shade {
        background:
            linear-gradient(90deg, rgba(1,8,30,.9) 0%, rgba(2,14,44,.72) 45%, rgba(1,8,30,.18) 100%),
            linear-gradient(180deg, rgba(1,8,30,.26) 0%, transparent 42%, rgba(1,8,30,.54) 100%);
    }
}
@media (max-width: 720px) {
    .hero {
        min-height: 92svh;
    }
    .hero__photo {
        object-position: 73% 50%;
        transform: scale(1.1) translate3d(var(--water-x, 0px), var(--water-y, 0px), 0);
    }
    .hero__photo-shade {
        background:
            linear-gradient(90deg, rgba(1,8,30,.9) 0%, rgba(2,14,44,.7) 58%, rgba(1,8,30,.25) 100%),
            linear-gradient(180deg, rgba(1,8,30,.12) 0%, rgba(1,8,30,.18) 48%, rgba(1,8,30,.78) 100%);
    }
    .hero__inner {
        padding-top: 5rem;
        padding-bottom: 5.5rem;
    }
    .hero__line > span {
        font-size: clamp(2.65rem, 16vw, 4.9rem);
    }
    .hero__lead {
        max-width: 31ch;
        font-size: 1rem;
    }
}
@keyframes refract-drift {
    from { transform: translate3d(-1.2%, -.8%, 0) rotate(-.4deg); }
    to { transform: translate3d(1.2%, .8%, 0) rotate(.4deg); }
}
@media (prefers-reduced-motion: reduce) {
    .hero__photo,
    .hero__refract,
    .hero__caustics {
        transform: none !important;
    }
    .hero__line > span { transform: none; animation: none; }
    .hero__rule { width: clamp(90px, 22vw, 220px); animation: none; }
    .hero__lead { opacity: 1; animation: none; }
}

/* =========================================================================
   HERO SCROLL INDICATOR V4
   ========================================================================= */
.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: clamp(1.1rem, 3.2vw, 2.1rem);
    z-index: 3;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: .34rem;
    width: min(86vw, 360px);
    font-family: var(--font-ui);
    color: rgba(234, 246, 253, .9);
    text-align: center;
    text-shadow: 0 0 18px rgba(127, 212, 245, .34), 0 8px 24px rgba(0,0,0,.5);
    opacity: 0;
    animation: scroll-reveal .9s var(--ease) 1.15s forwards, scroll-float 2s ease-in-out 1.15s infinite;
    will-change: transform, opacity;
}
.hero__scroll:hover { color: #fff; }
.hero__scroll-title {
    font-size: .72rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .28em;
    text-transform: uppercase;
}
.hero__scroll-copy {
    font-size: clamp(.72rem, 1.7vw, .84rem);
    line-height: 1.25;
    color: rgba(234, 246, 253, .68);
}
.hero__scroll-arrows {
    display: grid;
    gap: 0;
    margin-top: .1rem;
    color: var(--celeste-300);
    filter: drop-shadow(0 0 10px rgba(127, 212, 245, .5));
}
.hero__scroll-arrows span {
    height: .78rem;
    font-size: 1rem;
    line-height: .78rem;
    opacity: .35;
    animation: arrow-pulse 2s ease-in-out infinite;
}
.hero__scroll-arrows span:nth-child(2) { animation-delay: .16s; }
.hero__scroll-arrows span:nth-child(3) { animation-delay: .32s; }

@keyframes scroll-reveal {
    from { opacity: 0; transform: translate(-50%, 14px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes scroll-float {
    0%, 100% { transform: translate(-50%, 0); opacity: .78; }
    50% { transform: translate(-50%, 8px); opacity: 1; }
}
@keyframes arrow-pulse {
    0%, 100% { opacity: .22; transform: translateY(-2px); }
    50% { opacity: .95; transform: translateY(4px); }
}
@media (max-width: 720px) {
    .hero__scroll {
        bottom: 1rem;
        width: min(88vw, 320px);
    }
    .hero__scroll-copy {
        font-size: .72rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero__scroll,
    .hero__scroll-arrows span {
        animation: none !important;
        opacity: 1;
    }
}

/* =========================================================================
   KEYFRAMES (hero + globales)
   ========================================================================= */
@keyframes line-rise { to { transform: translateY(0); } }
@keyframes rule-grow { to { width: clamp(90px, 22vw, 220px); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes rays-drift { from { transform: translateX(-3%) rotate(-1deg); } to { transform: translateX(3%) rotate(1.5deg); } }
@keyframes surface-breathe { 0%, 100% { opacity: .8; } 50% { opacity: 1; } }
@keyframes pulse {
    0%   { box-shadow: 0 10px 30px -6px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.5); }
    70%  { box-shadow: 0 10px 30px -6px rgba(37,211,102,.6), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 10px 30px -6px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,0); }
}

/* =========================================================================
   REVEAL AL SCROLL
   ========================================================================= */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.activity-grid [data-reveal]:nth-child(2) { transition-delay: .05s; }
.activity-grid [data-reveal]:nth-child(3) { transition-delay: .1s; }

/* =========================================================================
   ACTIVIDADES
   ========================================================================= */
.activities { background: var(--white); }
.activity-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .activity-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .activity-grid { grid-template-columns: repeat(3, 1fr); } }

.activity-card {
    position: relative;
    background: var(--foam);
    border: 1px solid #e3eef6;
    border-radius: var(--radius);
    padding: 1.6rem 1.5rem;
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s, background .35s;
}
.activity-card::before {
    content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
    background: linear-gradient(90deg, var(--celeste), var(--blue));
    transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.activity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; background: #fff; }
.activity-card:hover::before { transform: scaleX(1); }
.activity-card__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 54px; height: 54px; border-radius: 14px; margin-bottom: 1.1rem;
    background: linear-gradient(145deg, var(--ice), #d4ecfa); color: var(--blue);
}
.activity-card__icon svg { stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.activity-card__name { font-size: 1.18rem; color: var(--navy); }
.activity-card__tag {
    display: inline-block; margin-top: .5rem; padding: .2rem .7rem;
    font-size: .76rem; font-weight: 600; letter-spacing: .03em;
    color: var(--blue); background: var(--ice); border-radius: 999px;
}
.activity-card__desc { margin-top: .8rem; font-size: .95rem; color: var(--ink-soft); }

/* =========================================================================
   SECCIONES OSCURAS (plan / historia)
   ========================================================================= */
.section--dark {
    position: relative; color: #fff;
    background:
        radial-gradient(100% 100% at 0% 0%, var(--navy-700) 0%, transparent 60%),
        linear-gradient(180deg, var(--navy) 0%, #04123d 100%);
}

/* =========================================================================
   PROSA INSTITUCIONAL + CITAS DESTACADAS
   ========================================================================= */
.prose { max-width: 62ch; color: var(--ink-soft); }
.prose > p { margin-top: 1.1rem; font-size: 1.04rem; line-height: 1.75; }
.prose > p:first-child { margin-top: 0; }
.prose__lead { font-size: 1.18rem !important; color: var(--ink); font-weight: 500; }
.prose--after { margin-top: 2.2rem; }
.prose--light { color: rgba(234, 246, 253, .82); }
.prose--light .prose__lead { color: #fff; }

.pullquote {
    position: relative;
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding: 2rem 1.6rem 2rem 2rem;
    border-left: 5px solid var(--celeste);
    background: linear-gradient(120deg, var(--ice), transparent 80%);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.pullquote p {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(1.25rem, 3.2vw, 1.9rem); line-height: 1.25;
    color: var(--navy); letter-spacing: -.01em;
}
.pullquote__mark { position: absolute; top: -18px; left: 18px; color: var(--celeste); opacity: .5; }
.pullquote__mark svg { width: 34px; height: 34px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.pullquote--light {
    background: linear-gradient(120deg, rgba(41,171,226,.16), transparent 80%);
    border-left-color: var(--celeste-300);
}
.pullquote--light p { color: #fff; }
.pullquote--light .pullquote__mark { color: var(--celeste-300); }

/* =========================================================================
   ¿POR QUÉ NACIÓ C.A.A.R.?
   ========================================================================= */
.purpose { background: var(--white); }
.purpose__grid { display: grid; gap: 1.8rem; align-items: start; }
@media (min-width: 940px) { .purpose__grid { grid-template-columns: 1.4fr .9fr; gap: 2.6rem; } }

.purpose__card {
    background: linear-gradient(165deg, var(--navy-700), var(--navy));
    color: #fff; border-radius: var(--radius);
    padding: 1.8rem 1.7rem; box-shadow: var(--shadow-md);
    position: sticky; top: calc(var(--header-h) + 1rem);
}
.purpose__card-icon {
    display: inline-flex; width: 52px; height: 52px; border-radius: 14px; margin-bottom: 1rem;
    align-items: center; justify-content: center;
    background: rgba(127,212,245,.16); color: var(--celeste-300);
}
.purpose__card-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.purpose__card-title { font-size: 1.3rem; color: #fff; }
.purpose__card-text { margin-top: .7rem; font-size: .96rem; color: rgba(234,246,253,.8); line-height: 1.6; }

.force-badges { display: grid; gap: .6rem; margin-top: 1.3rem; }
.force-badge {
    display: flex; align-items: center; gap: .7rem;
    padding: .7rem .85rem; border-radius: 12px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(127,212,245,.18);
    font-family: var(--font-ui); font-weight: 600; font-size: .92rem; color: #eaf6fd;
    transition: background .25s, transform .25s var(--ease);
}
.force-badge:hover { background: rgba(127,212,245,.14); transform: translateX(3px); }
.force-badge__icon { display: inline-flex; color: var(--celeste-300); flex: none; }
.force-badge__icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* =========================================================================
   LA HISTORIA DE C.A.A.R.
   ========================================================================= */
.history__grid { display: grid; gap: 1.8rem; align-items: start; }
@media (min-width: 940px) { .history__grid { grid-template-columns: 1.4fr .9fr; gap: 2.6rem; } }

.history__aside { display: grid; gap: 1.2rem; }
.milestone {
    background: linear-gradient(160deg, rgba(41,171,226,.18), rgba(27,77,209,.06));
    border: 1px solid rgba(127,212,245,.22); border-radius: var(--radius);
    padding: 1.6rem; text-align: center;
}
.milestone__label { display: block; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--celeste-300); }
.milestone__date {
    display: block; margin: .4rem 0; font-family: var(--font-hero);
    font-size: clamp(2.6rem, 7vw, 3.6rem); line-height: 1; color: #fff; letter-spacing: .02em;
}
.milestone__note { font-size: .92rem; color: rgba(234,246,253,.78); }

.founders {
    background: rgba(255,255,255,.05); border: 1px solid rgba(127,212,245,.18);
    border-radius: var(--radius); padding: 1.6rem;
}
.founders__label { display: block; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--celeste); margin-bottom: 1rem; }
.founders__list { display: grid; gap: .8rem; }
.founder { display: flex; align-items: center; gap: .8rem; }
.founder__icon {
    display: inline-flex; width: 42px; height: 42px; border-radius: 50%; flex: none;
    align-items: center; justify-content: center;
    background: rgba(127,212,245,.16); color: var(--celeste-300);
}
.founder__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.founder__name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: #fff; }
.founders__note { margin-top: 1rem; font-size: .92rem; color: rgba(234,246,253,.75); line-height: 1.6; }

/* =========================================================================
   PLAN DE ENTRENAMIENTO
   ========================================================================= */
.plan__stats { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
@media (min-width: 720px) { .plan__stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
    display: flex; flex-direction: column; padding: 1.4rem; border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .05); border: 1px solid rgba(127, 212, 245, .18);
}
.stat__value { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 5vw, 2.6rem); color: var(--celeste-300); line-height: 1; }
.stat__unit { font-size: .9rem; color: rgba(255,255,255,.7); margin-top: .35rem; }
.stat__label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--celeste); margin-top: .8rem; }

.timeline { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .timeline { grid-template-columns: repeat(4, 1fr); } }
.timeline__item {
    position: relative; padding: 1.5rem 1.3rem; border-radius: var(--radius-sm);
    background: linear-gradient(160deg, rgba(41,171,226,.16), rgba(27,77,209,.06));
    border: 1px solid rgba(127, 212, 245, .2); transition: transform .3s var(--ease);
}
.timeline__item:hover { transform: translateY(-5px); }
.timeline__marker {
    display: inline-block; font-family: var(--font-display); font-weight: 700;
    font-size: .82rem; letter-spacing: .04em; color: var(--navy); background: var(--celeste-300);
    padding: .25rem .7rem; border-radius: 999px; margin-bottom: .9rem;
}
.timeline__title { font-size: 1.15rem; color: #fff; }
.timeline__focus { margin-top: .55rem; font-size: .92rem; color: rgba(255,255,255,.75); }

/* =========================================================================
   DISTRIBUCIÓN SEMANAL
   ========================================================================= */
.schedule { background: var(--ice); }
.schedule__grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .schedule__grid { grid-template-columns: repeat(3, 1fr); } }
.day-card {
    background: #fff; border-radius: var(--radius); padding: 1.8rem 1.6rem;
    box-shadow: var(--shadow-sm); border-left: 5px solid var(--celeste);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.day-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.day-card__day { font-size: 1.5rem; color: var(--navy); margin-bottom: 1rem; }
.day-card__blocks { display: flex; flex-wrap: wrap; gap: .55rem; }
.day-card__blocks li { font-size: .9rem; font-weight: 600; color: var(--blue); background: var(--ice); padding: .45rem .9rem; border-radius: 999px; }

/* =========================================================================
   CONTACTO
   ========================================================================= */
.contact {
    color: #fff;
    background:
        radial-gradient(120% 120% at 100% 0%, var(--celeste) -10%, transparent 50%),
        linear-gradient(150deg, var(--blue) 0%, var(--navy) 70%);
}
.contact__inner { display: grid; gap: 2.5rem; }
@media (min-width: 820px) { .contact__inner { grid-template-columns: 1.2fr .8fr; align-items: center; } }
.contact__text .btn { margin-top: 1.8rem; }
.contact__list {
    display: grid; gap: 1.2rem;
    background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius); padding: 1.8rem; backdrop-filter: blur(6px);
}
.contact__list li { display: flex; flex-direction: column; gap: .2rem; }
.contact__label { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--celeste-300); }
.contact__value { font-size: 1.1rem; font-weight: 500; color: #fff; transition: color .2s; }
a.contact__value:hover { color: var(--celeste-300); }
.contact__address { font-size: 1rem; color: rgba(234,246,253,.9); line-height: 1.5; }
.contact__map-link {
    display: inline-flex; align-items: center; gap: .4rem; margin-top: .3rem;
    font-weight: 600; font-size: .92rem; color: var(--celeste-300); transition: color .2s;
}
.contact__map-link:hover { color: #fff; }
.contact__map-link svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* =========================================================================
   UBICACIÓN / CTA FINAL
   ========================================================================= */
.location-cta { background: var(--white); }
.location-card {
    display: grid; gap: 1.4rem; align-items: center;
    background: var(--foam); border: 1px solid #e3eef6; border-radius: var(--radius);
    padding: clamp(1.6rem, 4vw, 2.6rem);
}
@media (min-width: 820px) { .location-card { grid-template-columns: auto 1fr auto; gap: 2rem; } }
.location-card__icon {
    display: inline-flex; width: 64px; height: 64px; border-radius: 18px;
    align-items: center; justify-content: center;
    background: linear-gradient(145deg, var(--ice), #d4ecfa); color: var(--blue);
}
.location-card__icon svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.location-card__content .section__title { font-size: clamp(1.4rem, 3.5vw, 2rem); margin-top: .2rem; }
.location-card__address { font-style: normal; margin-top: .8rem; display: grid; gap: .15rem; color: var(--ink-soft); }
.location-card__button { white-space: nowrap; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
    position: relative;
    color: rgba(234,246,253,.72);
    background: linear-gradient(180deg, #061a45 0%, #03102f 100%);
    padding-top: clamp(2.6rem, 5vw, 3.6rem);
}
.site-footer::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(127,212,245,.45), transparent);
}
.site-footer__grid {
    display: grid; gap: 2rem 1.6rem; grid-template-columns: 1fr; padding-bottom: 2.4rem;
}
@media (min-width: 560px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .site-footer__grid { grid-template-columns: 1.5fr .8fr 1fr 1fr; gap: 2.4rem; } }

.site-footer__col { min-width: 0; }
.site-footer__title {
    font-family: var(--font-ui); font-weight: 700; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--celeste-300); margin-bottom: 1.1rem;
}
.site-footer__logo { display: inline-flex; align-items: center; gap: .7rem; }
.site-footer__logo img { width: 50px; height: 50px; background: #fff; border-radius: 50%; padding: 5px; }
.site-footer__logo span { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #fff; letter-spacing: -.01em; }
.site-footer__about { margin-top: 1rem; max-width: 40ch; font-size: .92rem; line-height: 1.65; }

.site-footer__links { display: grid; gap: .65rem; }
.site-footer__links a { font-size: .94rem; color: rgba(234,246,253,.8); transition: color .2s var(--ease), padding-left .2s var(--ease); }
.site-footer__links a:hover { color: var(--celeste-300); padding-left: .25rem; }

.site-footer__contactlist { display: grid; gap: .85rem; }
.site-footer__contactlist li { display: flex; align-items: center; gap: .6rem; font-size: .92rem; }
.site-footer__contactlist a { color: rgba(234,246,253,.85); transition: color .2s; word-break: break-word; }
.site-footer__contactlist a:hover { color: var(--celeste-300); }
.site-footer__ico { flex: none; display: inline-flex; color: var(--celeste-300); }
.site-footer__ico svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.site-footer__address { font-style: normal; display: grid; gap: .2rem; }
.site-footer__address span { font-size: .92rem; line-height: 1.45; }
.site-footer__maplink { display: inline-flex; align-items: center; gap: .4rem; margin-top: .9rem; font-weight: 600; font-size: .9rem; color: var(--celeste-300); transition: color .2s; }
.site-footer__maplink:hover { color: #fff; }
.site-footer__maplink svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 1.3rem; }
.site-footer__bottom p { font-size: .82rem; color: rgba(234,246,253,.6); text-align: center; }

/* =========================================================================
   WHATSAPP FLOTANTE
   ========================================================================= */
.wa-float {
    position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 60;
    width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
    background: var(--wa); color: #fff;
    box-shadow: 0 10px 30px -6px rgba(37, 211, 102, .6);
    animation: pulse 2.6s ease-in-out infinite; transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* =========================================================================
   PÁGINA DE ERROR
   ========================================================================= */
.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center;
    background: linear-gradient(160deg, var(--navy-700), var(--navy)); color: #fff; }
.error-page__code { font-family: var(--font-display); font-weight: 800; font-size: clamp(4rem, 18vw, 9rem); color: var(--celeste-300); line-height: 1; }
.error-page__title { font-size: clamp(1.5rem, 5vw, 2.2rem); margin-top: .5rem; }
.error-page__text { margin: 1rem 0 2rem; color: rgba(255,255,255,.75); }

/* =========================================================================
   ACCESIBILIDAD: reducir movimiento (global)
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    .wa-float { animation: none; }
}

/* =========================================================================
   PÁGINA "NOSOTROS"
   ========================================================================= */

/* ---- Cabecera de página ---- */
.page-hero {
    position: relative; isolation: isolate;
    min-height: clamp(46vh, 60vh, 620px);
    display: flex; align-items: flex-end;
    color: #fff; overflow: hidden;
    margin-top: calc(-1 * var(--header-h));
    padding-top: var(--header-h);
    background: linear-gradient(160deg, #0a2a78 0%, var(--navy) 55%, #03102f 100%);
}
.page-hero__photo {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: 70% 38%; opacity: .42;
}
.page-hero__shade {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(3,16,52,.92) 0%, rgba(3,16,52,.5) 55%, rgba(3,16,52,.2) 100%),
        linear-gradient(180deg, rgba(3,16,52,.4) 0%, transparent 35%, rgba(2,12,40,.85) 100%);
}
.page-hero__inner { position: relative; z-index: 2; padding-block: clamp(3rem, 8vw, 5rem); }
.page-hero__title {
    font-family: var(--font-hero); font-weight: 400; text-transform: uppercase;
    font-size: clamp(3.4rem, 13vw, 8rem); line-height: .9; letter-spacing: .01em;
    margin-top: .6rem; text-shadow: 0 18px 50px rgba(0,0,0,.4);
}
.page-hero__subtitle {
    font-family: var(--font-ui); margin-top: 1rem; max-width: 46ch;
    font-size: clamp(1.05rem, 2.6vw, 1.3rem); color: rgba(234,246,253,.9);
    text-shadow: 0 8px 22px rgba(0,0,0,.35);
}
.page-hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(50px, 8vw, 110px); z-index: 1; }
.page-hero__wave path { fill: var(--white); }

/* ---- Bloque 1: pilares ---- */
.purpose-block { background: var(--white); }
.pillars { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
/* Tablet: 2 columnas */
@media (min-width: 560px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
/* Desktop: 3 arriba / 2 abajo centradas (grilla de 6 columnas, cada card ocupa 2) */
@media (min-width: 920px) {
    .pillars { grid-template-columns: repeat(6, 1fr); }
    .pillar { grid-column: span 2; }
    .pillar:nth-child(4) { grid-column: 2 / span 2; }
    .pillar:nth-child(5) { grid-column: 4 / span 2; }
}
.pillar {
    position: relative; overflow: hidden;
    background: var(--foam); border: 1px solid #e3eef6; border-radius: var(--radius);
    padding: 1.7rem 1.6rem;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: #fff; }
.pillar__num {
    position: absolute; top: .6rem; right: 1rem;
    font-family: var(--font-hero); font-size: 2.6rem; line-height: 1;
    color: var(--celeste); opacity: .16;
}
.pillar__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 54px; height: 54px; border-radius: 14px; margin-bottom: 1.1rem;
    background: linear-gradient(145deg, var(--ice), #d4ecfa); color: var(--blue);
}
.pillar__icon svg { stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.pillar__title { font-size: 1.25rem; color: var(--navy); }
.pillar__text { margin-top: .6rem; font-size: .96rem; color: var(--ink-soft); line-height: 1.6; }

/* Franja de Fuerzas */
.forces {
    margin-top: 1.6rem;
    background: linear-gradient(165deg, var(--navy-700), var(--navy));
    color: #fff; border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.2rem);
    box-shadow: var(--shadow-md);
}
.forces__head { display: flex; align-items: flex-start; gap: 1rem; }
.forces__icon {
    display: inline-flex; flex: none; width: 50px; height: 50px; border-radius: 14px;
    align-items: center; justify-content: center;
    background: rgba(127,212,245,.16); color: var(--celeste-300);
}
.forces__icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.forces__title { font-size: 1.3rem; color: #fff; }
.forces__text { margin-top: .4rem; font-size: .96rem; color: rgba(234,246,253,.8); line-height: 1.6; }
.force-badges--row { grid-template-columns: 1fr; margin-top: 1.4rem; }
@media (min-width: 620px) { .force-badges--row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .force-badges--row { grid-template-columns: repeat(3, 1fr); } }

/* ---- Bloque 2: línea de tiempo ---- */
.story-timeline { position: relative; display: grid; gap: 1.6rem; max-width: 760px; margin-inline: auto; }
.story-timeline::before {
    content: ""; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 2px;
    background: linear-gradient(180deg, var(--celeste-300), rgba(127,212,245,.15));
}
.story-item { position: relative; padding-left: 3rem; }
.story-item__dot {
    position: absolute; left: 0; top: 4px; width: 24px; height: 24px; border-radius: 50%;
    background: var(--navy); border: 3px solid var(--celeste-300);
    box-shadow: 0 0 0 5px rgba(127,212,245,.12);
}
.story-item.is-highlight .story-item__dot {
    background: var(--celeste); border-color: #fff;
    box-shadow: 0 0 0 6px rgba(41,171,226,.28), 0 0 22px rgba(41,171,226,.6);
}
.story-item__body {
    background: rgba(255,255,255,.05); border: 1px solid rgba(127,212,245,.18);
    border-radius: var(--radius-sm); padding: 1.3rem 1.4rem;
}
.story-item.is-highlight .story-item__body {
    background: linear-gradient(160deg, rgba(41,171,226,.2), rgba(27,77,209,.08));
    border-color: rgba(127,212,245,.4);
}
.story-item__date {
    display: inline-block; font-family: var(--font-ui); font-weight: 700;
    font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--celeste-300);
}
.story-item.is-highlight .story-item__date {
    color: var(--navy); background: var(--celeste-300); padding: .2rem .7rem; border-radius: 999px;
}
.story-item__title { margin-top: .5rem; font-size: 1.25rem; color: #fff; }
.story-item__text { margin-top: .5rem; font-size: .96rem; color: rgba(234,246,253,.78); line-height: 1.65; }

/* ---- Bloque 3: fundadores ---- */
.founders-block { background: var(--ice); }
.founders-grid { display: grid; gap: 1.4rem; }
@media (min-width: 760px) { .founders-grid { grid-template-columns: repeat(2, 1fr); } }
.founder-card {
    position: relative; background: #fff; border-radius: var(--radius);
    padding: 2rem 1.8rem; box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--celeste);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.founder-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.founder-card__avatar {
    display: inline-flex; align-items: center; justify-content: center;
    width: 76px; height: 76px; border-radius: 50%; margin-bottom: 1.1rem;
    background: linear-gradient(150deg, var(--navy-700), var(--blue)); color: #fff;
}
.founder-card__avatar svg { width: 38px; height: 38px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.founder-card__name { font-size: 1.5rem; color: var(--navy); }
.founder-card__role {
    display: inline-block; margin-top: .5rem; font-family: var(--font-ui); font-weight: 600;
    font-size: .82rem; color: var(--blue); line-height: 1.4;
}
.founder-card__bio { margin-top: 1rem; font-size: 1rem; color: var(--ink-soft); line-height: 1.7; }

/* ---- Bloque 4: propósito ---- */
.purpose-statement { text-align: center; }
.purpose-statement .eyebrow { color: var(--celeste-300); }
.purpose-statement__text { display: grid; gap: .2rem; margin-top: 1rem; }
.purpose-statement__text span {
    font-family: var(--font-hero); text-transform: uppercase; letter-spacing: .01em;
    font-size: clamp(2rem, 7vw, 4.2rem); line-height: 1.02; color: #fff;
}
.purpose-statement__text span:nth-child(2),
.purpose-statement__text span:nth-child(4) {
    background: linear-gradient(96deg, var(--celeste) 0%, var(--celeste-300) 50%, #fff 95%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- CTA final ---- */
.about-cta {
    color: #fff; text-align: center;
    background:
        radial-gradient(120% 120% at 50% -10%, var(--celeste) -20%, transparent 50%),
        linear-gradient(150deg, var(--blue) 0%, var(--navy) 70%);
}
.about-cta__inner { max-width: 640px; margin-inline: auto; }
.about-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }

/* =========================================================================
   MÉTODO SPEEDISWIM +1  (sección de entrenamiento)
   ========================================================================= */
.method { position: relative; overflow: hidden; }
.method__waves {
    position: absolute; left: 0; right: 0; bottom: 0; height: 55%; z-index: 0; pointer-events: none;
    background: radial-gradient(120% 100% at 50% 135%, rgba(41,171,226,.18), transparent 62%);
}
.method .container { position: relative; z-index: 1; }

/* ---- Hero interno: métricas ---- */
.method-metrics {
    display: grid; gap: 1rem; grid-template-columns: 1fr;
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
}
@media (min-width: 680px) { .method-metrics { grid-template-columns: repeat(3, 1fr); } }
.method-metric {
    position: relative; overflow: hidden; text-align: center;
    padding: 1.7rem 1.3rem; border-radius: var(--radius);
    background: rgba(255,255,255,.05); border: 1px solid rgba(127,212,245,.18);
}
.method-metric::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
    background: linear-gradient(90deg, var(--celeste), transparent);
}
.method-metric__value { display: block; font-family: var(--font-hero); font-size: clamp(3rem, 9vw, 4.6rem); line-height: .88; color: #fff; }
.method-metric__unit { display: block; margin-top: .4rem; font-family: var(--font-ui); font-weight: 700; font-size: .84rem; letter-spacing: .08em; text-transform: uppercase; color: var(--celeste-300); }
.method-metric__note { display: block; margin-top: .4rem; font-size: .9rem; color: rgba(234,246,253,.7); }

/* ---- Roadmap de 4 etapas ---- */
.method-roadmap {
    position: relative; list-style: none; margin: clamp(2.6rem, 6vw, 4rem) 0 0; padding: 0;
    display: grid; gap: 1.4rem; grid-template-columns: 1fr;
}
@media (min-width: 560px) { .method-roadmap { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
    .method-roadmap { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
    /* Línea del journey conectando los nodos */
    .method-roadmap::before {
        content: ""; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px;
        background: linear-gradient(90deg, rgba(127,212,245,.12), var(--celeste-300), rgba(127,212,245,.12));
    }
}
.method-phase { position: relative; display: flex; flex-direction: column; align-items: center; }
.method-phase__node {
    position: relative; z-index: 1; margin-bottom: 1rem;
    width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
    font-family: var(--font-hero); font-size: 1.5rem; color: #fff;
    background: linear-gradient(150deg, var(--blue), var(--navy));
    border: 2px solid var(--celeste-300);
    box-shadow: 0 0 22px rgba(41,171,226,.45);
}
.method-phase__card {
    width: 100%; flex: 1;
    background: linear-gradient(165deg, rgba(41,171,226,.1), rgba(27,77,209,.05));
    border: 1px solid rgba(127,212,245,.2); border-radius: var(--radius); padding: 1.5rem 1.4rem;
    transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.method-phase:hover .method-phase__card { transform: translateY(-6px); border-color: rgba(127,212,245,.45); box-shadow: var(--shadow-lg); }
.method-phase__month { font-family: var(--font-ui); font-weight: 700; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--celeste-300); }
.method-phase__title { margin-top: .3rem; font-size: 1.2rem; color: #fff; }
.method-phase__goal { margin-top: .55rem; font-size: .92rem; color: rgba(234,246,253,.75); line-height: 1.55; }
.method-phase__distance { display: flex; align-items: center; gap: .5rem; margin-top: 1rem; font-size: .9rem; color: rgba(234,246,253,.85); }
.method-phase__distance strong { color: #fff; }
.method-phase__distance-icon { display: inline-flex; color: var(--celeste-300); flex: none; }
.method-phase__distance-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.method-phase__skills { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.method-phase__skills li { font-size: .76rem; font-weight: 600; color: var(--celeste-300); background: rgba(127,212,245,.12); border: 1px solid rgba(127,212,245,.2); padding: .3rem .6rem; border-radius: 999px; }
.method-phase__progress { display: flex; align-items: center; gap: .7rem; margin-top: 1.3rem; }
.method-phase__bar { flex: 1; height: 6px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; }
.method-phase__bar-fill {
    display: block; height: 100%; width: 0; border-radius: 999px;
    background: linear-gradient(90deg, var(--celeste), var(--celeste-300));
    box-shadow: 0 0 12px rgba(41,171,226,.6);
    transition: width 1.1s var(--ease) .25s;
}
.method-phase.is-visible .method-phase__bar-fill { width: var(--w, 100%); }
.method-phase__pct { font-family: var(--font-hero); font-size: 1.1rem; color: var(--celeste-300); min-width: 2.6em; text-align: right; }
.method-phase--p25 { --w: 25%; }
.method-phase--p50 { --w: 50%; }
.method-phase--p75 { --w: 75%; }
.method-phase--p100 { --w: 100%; }

/* ---- Resultados ---- */
.method-outcome { margin-top: clamp(2.6rem, 6vw, 4rem); text-align: center; }
.method-outcome__title { font-family: var(--font-display); font-size: clamp(1.4rem, 4vw, 2rem); color: #fff; }
.method-results { display: grid; gap: 1rem; margin-top: 1.6rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .method-results { grid-template-columns: repeat(5, 1fr); } }
.result-card {
    display: flex; flex-direction: column; align-items: center; gap: .8rem; text-align: center;
    padding: 1.5rem 1rem; border-radius: var(--radius);
    background: rgba(255,255,255,.05); border: 1px solid rgba(127,212,245,.18);
    transition: transform .3s var(--ease), background .3s;
}
.result-card:hover { transform: translateY(-5px); background: rgba(127,212,245,.1); }
.result-card__icon {
    display: inline-flex; width: 54px; height: 54px; border-radius: 50%; align-items: center; justify-content: center;
    background: linear-gradient(150deg, var(--celeste), var(--blue)); color: #fff;
}
.result-card__icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.result-card__label { font-family: var(--font-ui); font-weight: 600; font-size: .92rem; color: #eaf6fd; line-height: 1.35; }

/* ---- Bloque de competencia ---- */
.method-compete {
    margin-top: clamp(2.6rem, 6vw, 4rem); display: grid; gap: 1.4rem; align-items: center;
    background: linear-gradient(150deg, rgba(41,171,226,.18), rgba(27,77,209,.06));
    border: 1px solid rgba(127,212,245,.3); border-radius: var(--radius);
    padding: clamp(1.6rem, 4vw, 2.6rem);
}
@media (min-width: 860px) { .method-compete { grid-template-columns: auto 1fr auto; gap: 2rem; } }
.method-compete__icon {
    display: inline-flex; width: 64px; height: 64px; border-radius: 18px; align-items: center; justify-content: center;
    background: rgba(255,255,255,.1); color: var(--celeste-300); flex: none;
}
.method-compete__icon svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.method-compete__title { font-size: clamp(1.5rem, 4vw, 2rem); color: #fff; margin-top: .2rem; }
.method-compete__text { margin-top: .7rem; color: rgba(234,246,253,.85); line-height: 1.7; max-width: 62ch; }
.method-compete__stat {
    text-align: center; padding: 1.1rem 1.5rem; border-radius: var(--radius-sm);
    background: rgba(3,16,52,.4); border: 1px solid rgba(127,212,245,.25); white-space: nowrap;
}
.method-compete__stat-value { display: block; font-family: var(--font-hero); font-size: clamp(2rem, 5vw, 2.8rem); color: var(--celeste-300); line-height: 1; }
.method-compete__stat-unit { display: block; margin-top: .35rem; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(234,246,253,.7); }

/* =========================================================================
   ECOSISTEMA C.A.A.R.  (actividades por etapa de la vida)
   ========================================================================= */
.ecosystem { background: var(--white); }
.ecosystem__groups { display: grid; gap: 1.4rem; margin-top: clamp(1.6rem, 4vw, 2.6rem); }

.eco-category {
    --accent: #1b4dd1; --accent-soft: #eaf1fc;
    display: grid; gap: 1.3rem; position: relative; overflow: hidden;
    background: var(--accent-soft);
    border: 1px solid rgba(7, 26, 82, .06);
    border-radius: 24px;
    padding: clamp(1.4rem, 3.5vw, 2.2rem);
}
@media (min-width: 920px) {
    .eco-category { grid-template-columns: minmax(230px, .85fr) 1.6fr; gap: 2.2rem; align-items: center; }
}

/* Acentos diferenciados por categoría */
.eco-category--infancia    { --accent: #29abe2; --accent-soft: #e8f6fd; }
.eco-category--deportiva   { --accent: #1b4dd1; --accent-soft: #e9eefc; }
.eco-category--salud       { --accent: #0fa3ba; --accent-soft: #e4f6f9; }
.eco-category--profesional { --accent: #3a57c4; --accent-soft: #ebeefb; }
.eco-category--rehab       { --accent: #4f93d6; --accent-soft: #eaf3fb; }

.eco-category__intro { position: relative; z-index: 1; }
.eco-category__mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 16px; margin-bottom: 1rem;
    background: var(--accent); color: #fff; box-shadow: 0 12px 26px -10px var(--accent);
}
.eco-category__mark svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.eco-category__kicker { display: inline-block; font-family: var(--font-ui); font-weight: 700; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.eco-category__title { margin-top: .3rem; font-family: var(--font-display); font-size: clamp(1.4rem, 3.2vw, 1.9rem); color: var(--navy); }
.eco-category__msg { margin-top: .7rem; font-size: .98rem; color: var(--ink-soft); line-height: 1.6; max-width: 36ch; }

.eco-category__items { display: grid; gap: .9rem; grid-template-columns: 1fr; }
@media (min-width: 680px) { .eco-category__items { grid-template-columns: repeat(2, 1fr); } }

.eco-card {
    display: flex; gap: .9rem; align-items: flex-start; position: relative; overflow: hidden;
    background: #fff; border: 1px solid rgba(7, 26, 82, .06); border-radius: 16px;
    padding: 1.1rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.eco-card::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease);
}
.eco-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.eco-card:hover::before { transform: scaleY(1); }
.eco-card__icon {
    flex: none; display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); color: var(--accent);
}
.eco-card__icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.eco-card__name { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); }
.eco-card__tag { display: inline-block; margin-top: .25rem; font-size: .72rem; font-weight: 700; letter-spacing: .03em; color: var(--accent); background: var(--accent-soft); padding: .15rem .55rem; border-radius: 999px; }
.eco-card__desc { margin-top: .5rem; font-size: .9rem; color: var(--ink-soft); line-height: 1.5; }

/* CTA final del ecosistema */
.eco-cta {
    margin-top: 2rem; text-align: center; border-radius: 24px;
    padding: clamp(2rem, 5vw, 3.2rem);
    background:
        radial-gradient(120% 120% at 100% 0%, var(--celeste) -20%, transparent 55%),
        linear-gradient(150deg, var(--blue) 0%, var(--navy) 72%);
    color: #fff;
}
.eco-cta__text { font-family: var(--font-display); font-size: clamp(1.3rem, 3.5vw, 2rem); line-height: 1.32; }
.eco-cta__text strong { color: var(--celeste-300); }
.eco-cta .btn { margin-top: 1.6rem; }

/* =========================================================================
   METODOLOGÍA DE ENTRENAMIENTO  (proceso, sin cronograma fijo)
   ========================================================================= */
.approach { background: var(--ice); }
.approach-steps {
    display: grid; gap: 1.1rem; grid-template-columns: 1fr;
    margin-top: clamp(1.5rem, 4vw, 2.4rem);
}
@media (min-width: 560px)  { .approach-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .approach-steps { grid-template-columns: repeat(4, 1fr); } }

.approach-step {
    position: relative; overflow: hidden;
    background: #fff; border: 1px solid #e3eef6; border-radius: var(--radius);
    padding: 1.8rem 1.5rem;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.approach-step::before {
    content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
    background: linear-gradient(90deg, var(--celeste), var(--blue));
    transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.approach-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.approach-step:hover::before { transform: scaleX(1); }
.approach-step__num {
    position: absolute; top: .6rem; right: 1rem;
    font-family: var(--font-hero); font-size: 3rem; line-height: 1; color: var(--celeste); opacity: .14;
}
.approach-step__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 16px; margin-bottom: 1.1rem;
    background: linear-gradient(145deg, var(--ice), #d4ecfa); color: var(--blue);
}
.approach-step__icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.approach-step__title { font-size: 1.2rem; color: var(--navy); }
.approach-step__text { margin-top: .6rem; font-size: .95rem; color: var(--ink-soft); line-height: 1.6; }
.approach-step__tag {
    display: inline-block; margin-top: 1.1rem;
    font-family: var(--font-ui); font-weight: 700; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--blue); background: var(--ice); padding: .3rem .7rem; border-radius: 999px;
}

/* Nota destacada */
.approach-note {
    margin-top: clamp(2rem, 4vw, 2.6rem); display: flex; gap: 1rem; align-items: center;
    background: linear-gradient(150deg, var(--navy-700), var(--navy)); color: #fff;
    border-left: 5px solid var(--celeste); border-radius: var(--radius); padding: 1.5rem 1.7rem;
    box-shadow: var(--shadow-md);
}
.approach-note__icon {
    flex: none; display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 12px; background: rgba(127,212,245,.16); color: var(--celeste-300);
}
.approach-note__icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.approach-note p { font-size: 1rem; color: rgba(234,246,253,.92); line-height: 1.6; }

/* Mensaje final */
.approach-final {
    margin: clamp(2rem, 4vw, 2.6rem) auto 0; max-width: 60ch; text-align: center;
    font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 3vw, 1.7rem);
    color: var(--navy); line-height: 1.35;
}

/* CTA */
.approach-cta { margin-top: 1.8rem; text-align: center; }
.approach-cta__label {
    display: block; margin-bottom: 1rem;
    font-family: var(--font-ui); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-soft);
}

/* =========================================================================
   CONTACTO + UBICACIÓN (datos + mini-mapa)
   ========================================================================= */
.contact__grid { display: grid; gap: 2rem; }
@media (min-width: 880px) { .contact__grid { grid-template-columns: 1.05fr .95fr; align-items: center; } }

.contact__data { display: grid; gap: 1.1rem; margin: 1.8rem 0; }
.contact__data li { display: flex; gap: .85rem; align-items: flex-start; }
.contact__data-icon {
    flex: none; display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); color: var(--celeste-300);
}
.contact__data-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact__data-label { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--celeste-300); margin-bottom: .15rem; }
.contact__data-value { color: #fff; font-weight: 500; line-height: 1.55; font-style: normal; }
.contact__data-value span { display: block; }
.contact__data-value a { display: block; color: #fff; transition: color .2s; }
.contact__data-value a:hover { color: var(--celeste-300); }

.contact__map { display: flex; flex-direction: column; gap: 1rem; }
.map-card {
    height: 260px; border-radius: var(--radius); overflow: hidden;
    border: 1px solid rgba(255,255,255,.18); box-shadow: var(--shadow-lg); background: rgba(255,255,255,.06);
}
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-card__btn { align-self: flex-start; }
@media (max-width: 880px) {
    .map-card { height: 220px; }
    .map-card__btn { align-self: stretch; justify-content: center; }
}

