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

        * {
            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%;
        }

        figure {
            margin: 0;
        }

        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;
        }

        :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: 104px 0;
        }

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

        .gd-section-heading {
            max-width: 770px;
            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;
            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-badge {
            display: inline-flex;
            min-height: 32px;
            align-items: center;
            gap: 8px;
            padding: 7px 13px;
            border-radius: var(--gd-radius-pill);
            background: var(--gd-accent-soft);
            color: #1e3767;
            font-size: 0.74rem;
            font-weight: 900;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }

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

        .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-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-media-placeholder {
            position: relative;
            display: grid;
            overflow: hidden;
            min-height: 320px;
            place-items: center;
            border-radius: var(--gd-radius-lg);
            background:
                radial-gradient(
                    circle at 18% 18%,
                    rgba(30, 55, 103, 0.5),
                    transparent 27%
                ),
                linear-gradient(
                    138deg,
                    var(--gd-primary-strong),
                    var(--gd-primary) 55%,
                    #1e3767
                );
            color: var(--gd-white);
            isolation: isolate;
        }

        .gd-media-placeholder::before,
        .gd-media-placeholder::after {
            position: absolute;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            content: "";
        }

        .gd-media-placeholder::before {
            width: 320px;
            height: 320px;
            top: -165px;
            right: -90px;
        }

        .gd-media-placeholder::after {
            width: 230px;
            height: 230px;
            bottom: -130px;
            left: -70px;
        }

        .gd-media-placeholder__label {
            position: relative;
            z-index: 1;
            max-width: 330px;
            padding: 28px;
            text-align: center;
        }

        .gd-media-placeholder__label strong {
            display: block;
            margin-bottom: 8px;
            font-size: 1.22rem;
        }

        .gd-media-placeholder__label span {
            color: rgba(255, 255, 255, 0.76);
            font-size: 0.9rem;
        }

        .gd-image-frame {
            position: relative;
            overflow: hidden;
            border-radius: var(--gd-radius-lg);
            background: var(--gd-primary-soft);
            isolation: isolate;
        }

        .gd-image-frame img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .gd-image-frame--hero img {
            object-position: center 35%;
        }

        .gd-image-frame--workshop img {
            object-position: center;
        }

        .gd-image-frame--audience img {
            object-position: center;
        }

        .gd-image-frame--about img {
            object-position: center 28%;
        }

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


        /* =========================================================
           3. HERO: IDENTIDAD Y POSICIONAMIENTO
           ========================================================= */

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

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

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

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

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

        .gd-home-hero__content {
            max-width: 720px;
        }

        .gd-home-hero h1 {
            margin-bottom: 25px;
            font-size: clamp(2.8rem, 5.9vw, 5.45rem);
            letter-spacing: -0.052em;
        }

        .gd-home-hero__accent {
            display: block;
            color: var(--gd-primary);
        }

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

        .gd-home-hero__actions {
            margin-bottom: 36px;
        }

        .gd-home-hero__signals {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .gd-home-hero__signals li {
            min-height: 100%;
            padding: 15px 15px 15px 17px;
            border-left: 3px solid var(--gd-accent);
            background: rgba(255, 255, 255, 0.74);
            color: var(--gd-copy);
            font-size: 0.84rem;
        }

        .gd-home-hero__signals strong {
            display: block;
            margin-bottom: 3px;
            color: var(--gd-primary-strong);
            font-size: 0.89rem;
        }

        .gd-home-hero__visual {
            position: relative;
        }

        .gd-home-hero__media {
            min-height: 570px;
            box-shadow: var(--gd-shadow-strong);
        }

        .gd-home-hero__media::after {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                    180deg,
                    transparent 52%,
                    rgba(30, 55, 103, 0.18)
                );
            content: "";
            pointer-events: none;
        }

        .gd-home-hero__media-copy {
            position: relative;
            z-index: 1;
            max-width: 350px;
            padding: 30px;
            text-align: left;
        }

        .gd-home-hero__media-copy small {
            display: block;
            margin-bottom: 14px;
            color: var(--gd-accent);
            font-weight: 900;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .gd-home-hero__media-copy strong {
            display: block;
            font-size: clamp(2rem, 4vw, 3.5rem);
            line-height: 1;
        }

        .gd-home-hero__identity {
            position: absolute;
            right: -30px;
            bottom: 34px;
            width: min(300px, 82%);
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.78);
            border-radius: var(--gd-radius-md);
            background: rgba(255, 255, 255, 0.94);
            box-shadow: var(--gd-shadow-strong);
            backdrop-filter: blur(12px);
        }

        .gd-home-hero__identity span {
            display: block;
            margin-bottom: 4px;
            color: var(--gd-muted);
            font-size: 0.76rem;
            font-weight: 850;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .gd-home-hero__identity strong {
            display: block;
            color: var(--gd-primary-strong);
            font-size: 1.05rem;
            line-height: 1.4;
        }


        /* =========================================================
           4. PRÓXIMO WORKSHOP
           ========================================================= */

        .gd-home-workshop__card {
            display: grid;
            overflow: hidden;
            grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
            border-radius: var(--gd-radius-lg);
            box-shadow: var(--gd-shadow-strong);
        }

        .gd-home-workshop__visual {
            min-height: 440px;
            border-radius: 0;
        }

        .gd-home-workshop__visual::after {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                    90deg,
                    rgba(30, 55, 103, 0.08),
                    transparent 38%
                );
            content: "";
            pointer-events: none;
        }

        .gd-home-workshop__content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            padding: clamp(36px, 6.2vw, 70px);
        }

        .gd-home-workshop__content h2 {
            max-width: 650px;
            margin: 20px 0 18px;
            font-size: clamp(2.1rem, 4.15vw, 3.55rem);
            letter-spacing: -0.04em;
        }

        .gd-home-workshop__content > p:not(.gd-badge) {
            max-width: 650px;
            margin-bottom: 28px;
            color: var(--gd-copy);
            font-size: 1.08rem;
        }

        .gd-home-workshop__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 0 0 28px;
            padding: 0;
            list-style: none;
        }

        .gd-home-workshop__meta li {
            padding: 9px 12px;
            border: 1px solid var(--gd-border);
            border-radius: var(--gd-radius-pill);
            color: var(--gd-copy);
            font-size: 0.84rem;
            font-weight: 750;
        }

        .gd-home-workshop__note {
            display: flex;
            gap: 11px;
            align-items: flex-start;
            margin-top: 24px;
            padding-top: 22px;
            border-top: 1px solid var(--gd-border);
            color: var(--gd-copy);
            font-size: 0.88rem;
        }


        /* =========================================================
           5. QUÉ SON LOS WORKSHOPS
           ========================================================= */

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

        .gd-home-method__item {
            min-height: 100%;
            padding: 34px 30px;
        }

        .gd-home-method__item h3 {
            margin: 25px 0 12px;
            font-size: 1.36rem;
        }

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

        .gd-home-method__topics {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 34px;
        }

        .gd-home-method__topics span {
            padding: 9px 14px;
            border: 1px solid var(--gd-border);
            border-radius: var(--gd-radius-pill);
            background: var(--gd-white);
            color: var(--gd-copy);
            font-size: 0.84rem;
            font-weight: 750;
        }


        /* =========================================================
           6. TALLERES PRESENCIALES Y EN VIVO
           ========================================================= */

        .gd-home-live {
            overflow: hidden;
            color: var(--gd-white);
            background: var(--gd-primary-strong);
        }

        .gd-home-live__orb {
            position: absolute;
            width: 430px;
            height: 430px;
            top: -245px;
            right: -120px;
            border: 1px solid rgba(255, 255, 255, 0.11);
            border-radius: 50%;
        }

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

        .gd-home-live .gd-eyebrow {
            color: var(--gd-accent);
        }

        .gd-home-live h2 {
            margin-bottom: 20px;
            color: var(--gd-white);
            font-size: clamp(2.3rem, 4.8vw, 4.1rem);
            letter-spacing: -0.04em;
        }

        .gd-home-live__lead {
            margin-bottom: 28px;
            color: rgba(255, 255, 255, 0.76);
            font-size: 1.08rem;
        }

        .gd-home-live__benefits {
            display: grid;
            gap: 14px;
            margin: 0 0 32px;
            padding: 0;
            list-style: none;
        }

        .gd-home-live__benefits li {
            position: relative;
            padding-left: 29px;
            color: rgba(255, 255, 255, 0.88);
        }

        .gd-home-live__benefits li::before {
            position: absolute;
            width: 10px;
            height: 10px;
            top: 0.49em;
            left: 0;
            border-radius: 50%;
            background: var(--gd-accent);
            box-shadow: 0 0 0 6px rgba(30, 55, 103, 0.12);
            content: "";
        }

        .gd-home-live__gallery {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 16px;
        }

        .gd-home-live__gallery-main,
        .gd-home-live__gallery-small {
            position: relative;
            display: grid;
            overflow: hidden;
            place-items: end start;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background:
                linear-gradient(
                    145deg,
                    rgba(30, 55, 103, 0.9),
                    rgba(30, 55, 103, 0.14)
                ),
                #1e3767;
        }

        .gd-home-live__gallery-main {
            min-height: 470px;
            padding: 28px;
            border-radius: var(--gd-radius-lg);
        }

        .gd-home-live__gallery-side {
            display: grid;
            min-height: 470px;
            grid-template-rows: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .gd-home-live__gallery-small {
            padding: 20px;
            border-radius: var(--gd-radius-md);
            background:
                linear-gradient(
                    145deg,
                    rgba(255, 255, 255, 0.08),
                    rgba(255, 255, 255, 0.02)
                );
        }

        .gd-home-live__gallery-main img,
        .gd-home-live__gallery-small img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gd-home-live__gallery-main img {
            object-position: center;
        }

        .gd-home-live__gallery-small img {
            object-position: center;
        }

        .gd-home-live__gallery-main::after,
        .gd-home-live__gallery-small::after {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                    180deg,
                    transparent 45%,
                    rgba(30, 55, 103, 0.82)
                );
            content: "";
            pointer-events: none;
        }

        .gd-home-live__gallery-main figcaption,
        .gd-home-live__gallery-small figcaption {
            position: relative;
            z-index: 1;
        }

        .gd-home-live__gallery-main strong {
            max-width: 280px;
            color: var(--gd-white);
            font-size: 1.3rem;
            line-height: 1.3;
        }

        .gd-home-live__gallery-small span {
            color: rgba(255, 255, 255, 0.88);
            font-size: 0.84rem;
            font-weight: 750;
        }

        .gd-home-live__topics {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
            margin-top: 30px;
        }

        .gd-home-live__topic {
            padding: 18px;
            border: 1px solid rgba(255, 255, 255, 0.13);
            border-radius: var(--gd-radius-sm);
            background: rgba(255, 255, 255, 0.05);
        }

        .gd-home-live__topic small {
            display: block;
            margin-bottom: 5px;
            color: var(--gd-accent);
            font-size: 0.69rem;
            font-weight: 900;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .gd-home-live__topic strong {
            color: var(--gd-white);
            line-height: 1.35;
        }


        /* =========================================================
           7. HERRAMIENTAS DESTACADAS
           ========================================================= */

        .gd-home-tools__header,
        .gd-home-content__header {
            display: flex;
            gap: 30px;
            align-items: end;
            justify-content: space-between;
            margin-bottom: 42px;
        }

        .gd-home-tools__header .gd-section-heading,
        .gd-home-content__header .gd-section-heading {
            margin-bottom: 0;
        }

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

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

        .gd-home-tool-card__preview {
            position: relative;
            display: grid;
            overflow: hidden;
            min-height: 235px;
            aspect-ratio: 16 / 10;
            place-items: center;
            padding: 0;
            border-bottom: 1px solid var(--gd-border);
            background:
                linear-gradient(
                    145deg,
                    var(--gd-primary-soft),
                    var(--gd-white)
                );
        }

        .gd-home-tool-card__preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 420ms ease;
        }

        .gd-home-tool-card:hover .gd-home-tool-card__preview img {
            transform: scale(1.025);
        }

        .gd-home-tool-card__mockup {
            width: 100%;
            max-width: 300px;
            padding: 18px;
            border: 1px solid var(--gd-border);
            border-radius: 17px;
            background: var(--gd-white);
            box-shadow: 0 18px 40px rgba(30, 55, 103, 0.13);
        }

        .gd-home-tool-card__line {
            height: 8px;
            margin-bottom: 10px;
            border-radius: var(--gd-radius-pill);
            background: var(--gd-primary-soft);
        }

        .gd-home-tool-card__line:nth-child(2) {
            width: 72%;
        }

        .gd-home-tool-card__line:nth-child(3) {
            width: 54%;
            background: var(--gd-accent-soft);
        }

        .gd-home-tool-card__content {
            display: flex;
            flex: 1;
            flex-direction: column;
            align-items: flex-start;
            padding: 29px;
        }

        .gd-home-tool-card__content h3 {
            margin: 18px 0 12px;
            font-size: 1.42rem;
        }

        .gd-home-tool-card__content p {
            margin-bottom: 24px;
            color: var(--gd-copy);
        }

        .gd-home-tool-card__content .gd-link {
            margin-top: auto;
        }


        /* =========================================================
           8. PARA QUIÉN ESTÁ HECHO
           ========================================================= */

        .gd-home-audience__grid {
            display: grid;
            grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
            gap: 66px;
            align-items: center;
        }

        .gd-home-audience__visual {
            min-height: 510px;
        }

        .gd-home-audience__copy > p:last-of-type {
            color: var(--gd-copy);
        }

        .gd-home-audience__list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
            margin: 29px 0 0;
            padding: 0;
            list-style: none;
        }

        .gd-home-audience__list li {
            display: flex;
            min-height: 90px;
            gap: 14px;
            align-items: center;
            padding: 18px;
            border: 1px solid var(--gd-border);
            border-radius: var(--gd-radius-sm);
            background: var(--gd-white);
            color: var(--gd-primary-strong);
            font-weight: 780;
        }

        .gd-home-audience__list li::before {
            width: 12px;
            height: 12px;
            flex: 0 0 auto;
            border-radius: 4px;
            background: var(--gd-accent);
            content: "";
            transform: rotate(45deg);
        }


        /* =========================================================
           9. CONTENIDO RECIENTE
           ========================================================= */

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

        .gd-home-post-card__image {
            display: grid;
            min-height: 214px;
            place-items: center;
            padding: 24px;
            background:
                radial-gradient(
                    circle at 78% 24%,
                    rgba(30, 55, 103, 0.44),
                    transparent 24%
                ),
                linear-gradient(
                    135deg,
                    var(--gd-primary-strong),
                    var(--gd-primary)
                );
            color: rgba(255, 255, 255, 0.76);
            text-align: center;
        }

        .gd-home-post-card__image img {
            width: calc(100% + 48px);
            height: calc(100% + 48px);
            min-height: 214px;
            margin: -24px;
            object-fit: cover;
        }

        .gd-home-post-card__body {
            display: flex;
            flex: 1;
            flex-direction: column;
            align-items: flex-start;
            padding: 29px;
        }

        .gd-home-post-card__category {
            margin-bottom: 12px;
            color: var(--gd-primary);
            font-size: 0.73rem;
            font-weight: 900;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .gd-home-post-card__date {
            margin: -4px 0 12px;
            color: var(--gd-muted);
            font-size: 0.78rem;
            font-weight: 750;
        }

        .gd-home-post-card h3 {
            margin-bottom: 12px;
            font-size: 1.37rem;
        }

        .gd-home-post-card p {
            margin-bottom: 24px;
            color: var(--gd-copy);
        }

        .gd-home-post-card .gd-link {
            margin-top: auto;
        }


        /* =========================================================
           10. QUIÉN ES GASTÓN
           ========================================================= */

        .gd-home-about {
            padding: 104px 0;
            background: var(--gd-white);
        }

        .gd-home-about__card {
            display: grid;
            overflow: hidden;
            grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
            border-radius: var(--gd-radius-lg);
            background: var(--gd-primary-soft);
        }

        .gd-home-about__visual {
            min-height: 550px;
            border-radius: 0;
        }

        .gd-home-about__content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            padding: clamp(38px, 7vw, 80px);
        }

        .gd-home-about__content h2 {
            margin-bottom: 20px;
            font-size: clamp(2.15rem, 4.2vw, 3.6rem);
            letter-spacing: -0.04em;
        }

        .gd-home-about__content p {
            color: var(--gd-copy);
        }

        .gd-home-about__content p:last-of-type {
            margin-bottom: 29px;
        }


        /* =========================================================
           11. CTA FINAL
           ========================================================= */

        .gd-home-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-home-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-home-final__grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 54px;
            align-items: center;
        }

        .gd-home-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-home-final p {
            max-width: 760px;
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.75);
            font-size: 1.06rem;
        }

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


        /* =========================================================
           12. RESPONSIVE
           ========================================================= */

        @media (max-width: 1040px) {
            .gd-home-hero__grid,
            .gd-home-live__grid,
            .gd-home-audience__grid {
                grid-template-columns: 1fr;
            }

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

            .gd-home-hero__visual {
                width: min(100%, 780px);
            }

            .gd-home-hero__identity {
                right: 24px;
            }

            .gd-home-workshop__card,
            .gd-home-about__card {
                grid-template-columns: 1fr;
            }

            .gd-home-workshop__visual,
            .gd-home-about__visual {
                min-height: 430px;
            }

            .gd-home-live__gallery {
                width: min(100%, 840px);
            }

            .gd-home-audience__visual {
                min-height: 430px;
            }

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

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

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

            .gd-home-hero {
                padding: 66px 0 76px;
            }

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

            .gd-home-hero__signals,
            .gd-home-method__grid,
            .gd-home-tools__grid,
            .gd-home-content__grid {
                grid-template-columns: 1fr;
            }

            .gd-home-tools__header,
            .gd-home-content__header {
                align-items: flex-start;
                flex-direction: column;
            }

            .gd-home-live__gallery {
                grid-template-columns: 1fr;
            }

            .gd-home-live__gallery-side {
                min-height: 250px;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                grid-template-rows: none;
            }

            .gd-home-live__topics,
            .gd-home-audience__list {
                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-home-hero h1 {
                font-size: clamp(2.5rem, 13vw, 3.8rem);
            }

            .gd-home-hero__media {
                min-height: 450px;
            }

            .gd-home-hero__identity {
                position: relative;
                right: auto;
                bottom: auto;
                width: calc(100% - 28px);
                margin: -48px auto 0;
            }

            .gd-home-workshop__content,
            .gd-home-about__content {
                padding: 33px 24px;
            }

            .gd-home-workshop__visual,
            .gd-home-about__visual,
            .gd-home-audience__visual {
                min-height: 350px;
            }

            .gd-home-live__grid {
                gap: 42px;
            }

            .gd-home-live__gallery-main {
                min-height: 350px;
            }

            .gd-home-live__gallery-side {
                min-height: 320px;
                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;
            }
        }
