/* Estilos externos de la vista; tokens y comportamiento compartido: ../public-pages.css */
/* =========================================================
           BASE Y COMPONENTES
           ========================================================= */

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            color: var(--gd-ink);
            background: var(--gd-bg);
            font-family: var(--font-family-primary);
            line-height: 1.62;
            text-rendering: optimizeLegibility;
        }

        body,
        button,
        input,
        textarea,
        select {
            font: inherit;
        }

        a {
            color: inherit;
        }

        img,
        svg {
            display: block;
            max-width: 100%;
        }

        h1,
        h2,
        h3,
        p {
            margin-top: 0;
        }

        h1,
        h2,
        h3 {
            color: var(--gd-primary-strong);
            line-height: 1.08;
            text-wrap: balance;
        }

        p {
            text-wrap: pretty;
        }

        [hidden] {
            display: none !important;
        }

        :focus-visible {
            outline: 3px solid rgba(30, 55, 103, 0.78);
            outline-offset: 4px;
        }

        .gd-shell {
            width: min(calc(100% - 40px), var(--gd-max));
            margin-inline: auto;
        }

        .gd-section {
            position: relative;
            padding: 102px 0;
        }

        .gd-section--soft {
            background: var(--gd-bg-soft);
        }

        .gd-section-heading {
            max-width: 790px;
            margin-bottom: 44px;
        }

        .gd-section-heading--center {
            margin-inline: auto;
            text-align: center;
        }

        .gd-eyebrow,
        .gd-section-heading__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 17px;
            color: var(--gd-primary);
            font-size: 0.76rem;
            font-weight: 900;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .gd-eyebrow::before,
        .gd-section-heading__eyebrow::before {
            width: 26px;
            height: 3px;
            border-radius: var(--gd-radius-pill);
            background: var(--gd-accent);
            content: "";
        }

        .gd-section-heading h2 {
            margin-bottom: 18px;
            font-size: clamp(2.1rem, 4.4vw, 3.65rem);
            letter-spacing: -0.035em;
        }

        .gd-section-heading p {
            margin-bottom: 0;
            color: var(--gd-copy);
            font-size: clamp(1rem, 1.75vw, 1.13rem);
        }

        .gd-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }

        .gd-btn {
            display: inline-flex;
            min-height: 50px;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 13px 23px;
            border: 1px solid transparent;
            border-radius: var(--gd-radius-pill);
            background: var(--gd-primary);
            color: var(--gd-white);
            text-decoration: none;
            font-weight: 850;
            line-height: 1.2;
            cursor: pointer;
            transition:
                transform var(--gd-transition),
                background-color var(--gd-transition),
                border-color var(--gd-transition),
                color var(--gd-transition),
                box-shadow var(--gd-transition);
        }

        .gd-btn::after,
        .gd-link::after {
            content: "→";
            transition: transform var(--gd-transition);
        }

        .gd-btn:hover,
        .gd-link:hover {
            transform: translateY(-2px);
        }

        .gd-btn:hover::after,
        .gd-link:hover::after {
            transform: translateX(4px);
        }

        .gd-btn:hover {
            background: var(--gd-primary-strong);
            box-shadow: 0 12px 30px rgba(30, 55, 103, 0.2);
        }

        .gd-btn--accent {
            background: var(--gd-accent);
            color: var(--gd-primary-strong);
        }

        .gd-btn--accent:hover {
            background: var(--gd-accent-strong);
            color: var(--gd-white);
        }

        .gd-btn--outline {
            border-color: var(--gd-primary);
            background: transparent;
            color: var(--gd-primary);
        }

        .gd-btn--outline:hover {
            background: var(--gd-primary);
            color: var(--gd-white);
        }

        .gd-btn--light {
            border-color: rgba(255, 255, 255, 0.44);
            background: transparent;
            color: var(--gd-white);
        }

        .gd-btn--light:hover {
            border-color: var(--gd-white);
            background: var(--gd-white);
            color: var(--gd-primary-strong);
        }

        .gd-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--gd-primary);
            text-decoration: none;
            font-weight: 850;
            transition:
                transform var(--gd-transition),
                color var(--gd-transition);
        }

        .gd-card {
            border: 1px solid var(--gd-border);
            border-radius: var(--gd-radius-md);
            background: var(--gd-white);
            box-shadow: var(--gd-shadow-soft);
        }

        .gd-badge {
            display: inline-flex;
            min-height: 32px;
            align-items: center;
            gap: 8px;
            padding: 7px 13px;
            border-radius: var(--gd-radius-pill);
            background: var(--gd-primary-soft);
            color: var(--gd-primary);
            font-size: 0.73rem;
            font-weight: 900;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }

        .gd-badge::before {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: currentColor;
            content: "";
        }

        .gd-neum-icon {
            display: grid;
            width: 66px;
            height: 66px;
            flex: 0 0 auto;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.84);
            border-radius: 20px;
            background: #ffffff;
            box-shadow: var(--gd-neum-out);
            color: var(--gd-primary);
            transition:
                transform var(--gd-transition),
                box-shadow var(--gd-transition),
                color var(--gd-transition);
        }

        .gd-neum-icon svg {
            width: 29px;
            height: 29px;
            fill: none;
            stroke: currentColor;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 1.8;
        }

        .gd-card:hover .gd-neum-icon,
        .gd-neum-icon:hover {
            transform: translateY(-2px);
            box-shadow: var(--gd-neum-in);
            color: var(--gd-accent-strong);
        }

        .gd-parallax {
            transform: translate3d(0, var(--gd-parallax-y, 0), 0);
            will-change: transform;
        }

        .gd-media-frame {
            position: relative;
            display: block;
            overflow: hidden;
            background: var(--gd-primary-strong);
            isolation: isolate;
        }

        .gd-media-frame__image {
            position: absolute;
            width: 100%;
            height: 100%;
            inset: 0;
            object-fit: cover;
            object-position: center;
            transition: transform 700ms ease;
        }

        .gd-media-frame::after {
            position: absolute;
            z-index: 1;
            inset: 0;
            background:
                linear-gradient(
                    180deg,
                    rgba(30, 55, 103, 0.02) 52%,
                    rgba(30, 55, 103, 0.22) 100%
                );
            content: "";
            pointer-events: none;
        }

        .gd-media-frame:hover .gd-media-frame__image {
            transform: scale(1.025);
        }


        /* =========================================================
           3. HERO INSTITUCIONAL
           ========================================================= */

        .gd-about-hero {
            position: relative;
            overflow: hidden;
            padding: 92px 0 102px;
            background:
                linear-gradient(
                    112deg,
                    rgba(255, 255, 255, 0.98),
                    rgba(255, 255, 255, 0.98) 63%
                );
        }

        .gd-about-hero__orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .gd-about-hero__orb--one {
            width: 550px;
            height: 550px;
            top: -350px;
            right: -165px;
            background: rgba(30, 55, 103, 0.16);
        }

        .gd-about-hero__orb--two {
            width: 270px;
            height: 270px;
            bottom: -170px;
            left: -95px;
            border: 1px solid rgba(30, 55, 103, 0.1);
        }

        .gd-about-hero__grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
            gap: 66px;
            align-items: center;
        }

        .gd-about-hero__content {
            max-width: 750px;
        }

        .gd-about-hero h1 {
            margin-bottom: 24px;
            font-size: clamp(3rem, 6vw, 5.65rem);
            letter-spacing: -0.055em;
        }

        .gd-about-hero__lead {
            max-width: 710px;
            margin-bottom: 31px;
            color: var(--gd-copy);
            font-size: clamp(1.08rem, 2vw, 1.3rem);
        }

        .gd-about-hero__quote {
            margin: 34px 0 0;
            padding: 20px 22px;
            border-left: 4px solid var(--gd-accent);
            background: rgba(255, 255, 255, 0.78);
            color: var(--gd-primary-strong);
            font-size: clamp(1.05rem, 2vw, 1.22rem);
            font-weight: 850;
        }

        .gd-about-hero__visual {
            position: relative;
            display: grid;
            overflow: hidden;
            min-height: 520px;
            place-items: center;
            border-radius: var(--gd-radius-lg);
            background:
                radial-gradient(
                    circle at 18% 18%,
                    rgba(30, 55, 103, 0.48),
                    transparent 28%
                ),
                linear-gradient(
                    138deg,
                    var(--gd-primary-strong),
                    var(--gd-primary) 55%,
                    #1e3767
                );
            box-shadow: var(--gd-shadow-strong);
            isolation: isolate;
        }

        .gd-about-hero__visual.gd-media-frame .gd-media-frame__image {
            object-position: center 38%;
        }

        .gd-about-hero__visual.gd-media-frame::after {
            background:
                linear-gradient(
                    180deg,
                    rgba(30, 55, 103, 0.01) 60%,
                    rgba(30, 55, 103, 0.15) 100%
                );
        }


        /* =========================================================
           4. QUÉ ES GASTÓN
           ========================================================= */

        .gd-about-story__grid {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
            gap: 66px;
            align-items: center;
        }

        .gd-about-story__visual {
            position: relative;
            display: grid;
            min-height: 500px;
            place-items: center;
            overflow: hidden;
            border-radius: var(--gd-radius-lg);
            background:
                radial-gradient(
                    circle at 78% 18%,
                    rgba(30, 55, 103, 0.42),
                    transparent 28%
                ),
                linear-gradient(
                    145deg,
                    var(--gd-primary-soft),
                    var(--gd-white)
                );
            box-shadow: var(--gd-shadow-strong);
        }

        .gd-about-story__visual.gd-media-frame .gd-media-frame__image {
            object-position: center;
        }

        .gd-about-story__visual.gd-media-frame::after {
            background:
                linear-gradient(
                    180deg,
                    rgba(30, 55, 103, 0.01) 58%,
                    rgba(30, 55, 103, 0.16) 100%
                );
        }

        .gd-about-story__copy p {
            color: var(--gd-copy);
            font-size: 1.03rem;
        }

        .gd-about-story__copy p:last-child {
            margin-bottom: 0;
        }


        /* =========================================================
           5. POR QUÉ EXISTE
           ========================================================= */

        .gd-about-purpose__grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
        }

        .gd-about-purpose__card {
            min-height: 100%;
            padding: 38px 34px;
        }

        .gd-about-purpose__card h3 {
            margin: 25px 0 14px;
            font-size: 1.55rem;
        }

        .gd-about-purpose__card p {
            margin-bottom: 0;
            color: var(--gd-copy);
        }


        /* =========================================================
           6. METODOLOGÍA
           ========================================================= */

        .gd-about-method {
            color: var(--gd-white);
            background: var(--gd-primary-strong);
        }

        .gd-about-method .gd-eyebrow {
            color: var(--gd-accent);
        }

        .gd-about-method h2 {
            color: var(--gd-white);
        }

        .gd-about-method__intro {
            color: rgba(255, 255, 255, 0.76);
        }

        .gd-about-method__grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            margin-top: 42px;
        }

        .gd-about-method__step {
            min-height: 100%;
            padding: 29px 25px;
            border: 1px solid rgba(255, 255, 255, 0.13);
            border-radius: var(--gd-radius-md);
            background: rgba(255, 255, 255, 0.05);
        }

        .gd-about-method__number {
            display: grid;
            width: 44px;
            height: 44px;
            margin-bottom: 23px;
            place-items: center;
            border-radius: 14px;
            background: var(--gd-accent);
            color: var(--gd-primary-strong);
            font-weight: 900;
        }

        .gd-about-method__step h3 {
            margin-bottom: 11px;
            color: var(--gd-white);
            font-size: 1.2rem;
        }

        .gd-about-method__step p {
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.91rem;
        }


        /* =========================================================
           7. EQUIPO
           ========================================================= */

        .gd-about-team__grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }

        .gd-team-card {
            display: flex;
            min-height: 100%;
            flex-direction: column;
            overflow: hidden;
        }

        .gd-team-card__photo {
            position: relative;
            display: grid;
            min-height: 260px;
            place-items: center;
            overflow: hidden;
            background:
                radial-gradient(
                    circle at 70% 18%,
                    rgba(30, 55, 103, 0.42),
                    transparent 28%
                ),
                linear-gradient(
                    145deg,
                    var(--gd-primary-strong),
                    var(--gd-primary)
                );
            color: rgba(255, 255, 255, 0.72);
            text-align: center;
        }

        .gd-team-card__photo span {
            display: grid;
            width: 88px;
            height: 88px;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.1);
            font-size: 2rem;
            font-weight: 900;
            backdrop-filter: blur(10px);
        }

        .gd-team-card__photo img {
            width: 100%;
            height: 100%;
            min-height: 320px;
            object-fit: cover;
            object-position: center 28%;
        }

        .gd-team-card__body {
            display: flex;
            flex: 1;
            flex-direction: column;
            padding: 29px;
        }

        .gd-team-card__role {
            margin-bottom: 12px;
            color: var(--gd-primary);
            font-size: 0.75rem;
            font-weight: 900;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }

        .gd-team-card h3 {
            margin-bottom: 12px;
            font-size: 1.45rem;
        }

        .gd-team-card p {
            margin-bottom: 0;
            color: var(--gd-copy);
        }

        .gd-about-team__note {
            margin-top: 28px;
            padding: 18px 20px;
            border: 1px solid var(--gd-border);
            border-radius: var(--gd-radius-sm);
            background: var(--gd-primary-soft);
            color: var(--gd-copy);
            font-size: 0.88rem;
        }


        /* =========================================================
           8. VALORES
           ========================================================= */

        .gd-about-values__grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .gd-about-value {
            min-height: 100%;
            padding: 27px 23px;
        }

        .gd-about-value strong {
            display: block;
            margin-bottom: 8px;
            color: var(--gd-primary-strong);
            font-size: 1.08rem;
        }

        .gd-about-value p {
            margin-bottom: 0;
            color: var(--gd-copy);
            font-size: 0.92rem;
        }


        /* =========================================================
           9. CONTACTO
           ========================================================= */

        .gd-about-contact {
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(
                    145deg,
                    rgba(255, 255, 255, 0.86),
                    rgba(255, 255, 255, 0.98)
                );
        }

        .gd-about-contact__grid {
            display: grid;
            grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
            gap: 64px;
            align-items: start;
        }

        .gd-about-contact__intro p {
            color: var(--gd-copy);
        }

        .gd-about-contact__media {
            position: relative;
            min-height: 275px;
            margin-top: 28px;
            border-radius: var(--gd-radius-lg);
            box-shadow: var(--gd-shadow-strong);
        }

        .gd-about-contact__media .gd-media-frame__image {
            object-position: center;
        }

        .gd-about-contact__media.gd-media-frame::after {
            background:
                linear-gradient(
                    180deg,
                    rgba(30, 55, 103, 0.01) 62%,
                    rgba(30, 55, 103, 0.13) 100%
                );
        }

        .gd-about-contact__cards {
            display: grid;
            gap: 14px;
            margin-top: 31px;
        }

        .gd-contact-card {
            display: grid;
            grid-template-columns: 52px minmax(0, 1fr);
            gap: 16px;
            align-items: center;
            padding: 18px;
        }

        .gd-contact-card__icon {
            display: grid;
            width: 48px;
            height: 48px;
            place-items: center;
            border-radius: 16px;
            background: var(--gd-primary-soft);
            color: var(--gd-primary);
        }

        .gd-contact-card__icon svg {
            width: 23px;
            height: 23px;
            fill: none;
            stroke: currentColor;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 1.8;
        }

        .gd-contact-card small {
            display: block;
            margin-bottom: 3px;
            color: var(--gd-muted);
            font-size: 0.7rem;
            font-weight: 850;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .gd-contact-card strong,
        .gd-contact-card span {
            color: var(--gd-primary-strong);
            font-weight: 800;
        }

        .gd-contact-card__note {
            display: block;
            margin-top: 4px;
            color: var(--gd-copy);
            font-size: 0.8rem;
            font-weight: 500;
        }

        .gd-contact-form {
            padding: clamp(28px, 5vw, 46px);
            border-radius: var(--gd-radius-lg);
            box-shadow: var(--gd-shadow-strong);
        }

        .gd-contact-form__heading {
            margin-bottom: 28px;
        }

        .gd-contact-form__heading h2 {
            margin-bottom: 10px;
            font-size: clamp(1.9rem, 3.5vw, 2.8rem);
        }

        .gd-contact-form__heading p {
            margin-bottom: 0;
            color: var(--gd-copy);
        }

        .gd-form-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

        .gd-form-field {
            display: grid;
            gap: 8px;
        }

        .gd-form-field--full {
            grid-column: 1 / -1;
        }

        .gd-form-field label {
            color: var(--gd-primary-strong);
            font-size: 0.84rem;
            font-weight: 850;
        }

        .gd-form-field input,
        .gd-form-field select,
        .gd-form-field textarea {
            width: 100%;
            border: 1px solid var(--gd-border);
            border-radius: var(--gd-radius-sm);
            background: var(--gd-white);
            color: var(--gd-ink);
            padding: 13px 14px;
            transition:
                border-color var(--gd-transition),
                box-shadow var(--gd-transition);
        }

        .gd-form-field textarea {
            min-height: 150px;
            resize: vertical;
        }

        .gd-form-field input:focus,
        .gd-form-field select:focus,
        .gd-form-field textarea:focus {
            border-color: var(--gd-primary);
            outline: 0;
            box-shadow: 0 0 0 4px rgba(30, 55, 103, 0.1);
        }

        .gd-contact-form__footer {
            display: flex;
            gap: 16px;
            align-items: center;
            justify-content: space-between;
            margin-top: 22px;
        }

        .gd-contact-form__privacy {
            max-width: 470px;
            margin: 0;
            color: var(--gd-muted);
            font-size: 0.78rem;
        }

        .gd-contact-form__notice {
            margin-top: 18px;
            padding: 14px 16px;
            border: 1px solid var(--gd-border);
            border-radius: var(--gd-radius-sm);
            background: var(--gd-primary-soft);
            color: var(--gd-copy);
            font-size: 0.84rem;
        }


        /* =========================================================
           10. CTA FINAL
           ========================================================= */

        .gd-about-final {
            position: relative;
            overflow: hidden;
            padding: 90px 0;
            background:
                radial-gradient(
                    circle at 14% 22%,
                    rgba(30, 55, 103, 0.26),
                    transparent 28%
                ),
                linear-gradient(
                    120deg,
                    var(--gd-primary-strong),
                    var(--gd-primary)
                );
            color: var(--gd-white);
        }

        .gd-about-final::after {
            position: absolute;
            width: 350px;
            height: 350px;
            right: -110px;
            bottom: -190px;
            border: 1px solid rgba(255, 255, 255, 0.17);
            border-radius: 50%;
            content: "";
        }

        .gd-about-final__grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 54px;
            align-items: center;
        }

        .gd-about-final h2 {
            max-width: 790px;
            margin-bottom: 16px;
            color: var(--gd-white);
            font-size: clamp(2.25rem, 4.7vw, 4.15rem);
            letter-spacing: -0.04em;
        }

        .gd-about-final p {
            max-width: 760px;
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.75);
            font-size: 1.06rem;
        }

        .gd-about-final__actions {
            justify-content: flex-end;
        }


        /* =========================================================
           11. RESPONSIVE
           ========================================================= */

        @media (max-width: 1040px) {
            .gd-about-hero__grid,
            .gd-about-story__grid,
            .gd-about-contact__grid {
                grid-template-columns: 1fr;
            }

            .gd-about-hero__content {
                max-width: 820px;
            }

            .gd-about-hero__visual,
            .gd-about-story__visual {
                width: min(100%, 790px);
            }

            .gd-about-method__grid,
            .gd-about-values__grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .gd-about-final__grid {
                grid-template-columns: 1fr;
            }

            .gd-about-final__actions {
                justify-content: flex-start;
            }
        }

        @media (max-width: 840px) {
            .gd-section {
                padding: 76px 0;
            }

            .gd-about-hero {
                padding: 68px 0 78px;
            }

            .gd-about-hero__grid {
                gap: 44px;
            }

            .gd-about-purpose__grid,
            .gd-about-team__grid {
                grid-template-columns: 1fr;
            }

            .gd-parallax {
                transform: none;
            }
        }

        @media (max-width: 620px) {
            .gd-shell {
                width: min(calc(100% - 28px), var(--gd-max));
            }

            .gd-actions {
                align-items: stretch;
                flex-direction: column;
            }

            .gd-btn {
                width: 100%;
            }

            .gd-about-hero h1 {
                font-size: clamp(3rem, 15vw, 4.3rem);
            }

            .gd-about-hero__visual {
                min-height: 430px;
            }

            .gd-about-hero__visual.gd-media-frame .gd-media-frame__image {
                object-position: center 34%;
            }

            .gd-about-contact__media {
                min-height: 230px;
            }

            .gd-about-method__grid,
            .gd-about-values__grid,
            .gd-form-grid {
                grid-template-columns: 1fr;
            }

            .gd-form-field--full {
                grid-column: auto;
            }

            .gd-contact-form__footer {
                align-items: stretch;
                flex-direction: column;
            }

            .gd-contact-card {
                grid-template-columns: 1fr;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
            }

            .gd-parallax {
                transform: none !important;
            }
        }
