/* Propuesta v3 más limpia y equilibrada */
.gn-df3 {
    --df3-white: #ffffff;
    --df3-lilac: #f1e8f5;
    --df3-purple: #7b3498;
    --df3-purple-dark: #4e1f65;
    --df3-purple-deep: #351045;
    --df3-pink: #ee7ea9;
    --df3-pink-soft: #f7d9e6;
    --df3-text: #665c69;
    --df3-border: rgba(123, 52, 152, .12);
    --df3-shadow: 0 26px 70px rgba(69, 27, 88, .12);
    --df3-radius-xl: 34px;
    --df3-radius-lg: 26px;
    --df3-container: 1240px;

    background: linear-gradient(180deg, #fbf6fc 0%, #ffffff 28%, #ffffff 100%);
    color: var(--df3-text);
    font-family: Arial, Helvetica, sans-serif;
}

.gn-df3 *, .gn-df3 *::before, .gn-df3 *::after { box-sizing: border-box; }
.gn-df3 img { display: block; max-width: 100%; }

.gn-df3 p, .gn-df3 li {
    font-size: 1.06rem;
    line-height: 1.72;
}

.gn-df3__container {
    width: min(calc(100% - 48px), var(--df3-container));
    margin-inline: auto;
}

.gn-df3__section { padding: 88px 0; }

.gn-df3__eyebrow {
    margin: 0 0 14px;
    color: var(--df3-pink);
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.gn-df3__section-title {
    margin: 0;
    color: var(--df3-purple);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.35rem, 4.4vw, 4.7rem);
    font-weight: 400;
    line-height: .98;
    text-wrap: balance;
}

.gn-df3__section-title--light { color: #fff; }

.gn-df3__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.gn-df3__button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    border: 2px solid transparent;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.gn-df3__button:hover { transform: translateY(-2px); }

.gn-df3__button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--df3-pink), #dd6292);
    box-shadow: 0 14px 30px rgba(221, 98, 146, .22);
}

.gn-df3__button--ghost {
    color: #fff;
    border-color: rgba(255,255,255,.78);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}

/* Hero */
.gn-df3__hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 70px;
    background:
        radial-gradient(circle at 10% 10%, rgba(255,255,255,.26), transparent 22%),
        radial-gradient(circle at 88% 12%, rgba(243, 194, 220, .30), transparent 16%),
        linear-gradient(120deg, #d9c0e9 0%, #be8ad7 40%, #8c4dac 100%);
}

.gn-df3__hero::before {
    content: '';
    position: absolute;
    left: 36%;
    top: -8%;
    width: 11%;
    height: 128%;
    background: rgba(255,255,255,.08);
    transform: rotate(11deg);
}

.gn-df3__hero::after {
    content: '';
    position: absolute;
    right: -14%;
    bottom: -26%;
    width: 44%;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
}

.gn-df3__hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 56px;
    align-items: center;
}

.gn-df3__hero-title {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.25rem, 6.7vw, 6.3rem);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.05em;
    text-wrap: balance;
}

.gn-df3__hero-title span {
    display: block;
    margin-top: 10px;
    color: var(--df3-purple-deep);
    font-style: italic;
}

.gn-df3__identity {
    margin: 28px 0 20px;
    padding-left: 20px;
    border-left: 3px solid var(--df3-pink);
}

.gn-df3__name {
    margin: 0 0 8px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    line-height: 1;
}

.gn-df3__role {
    margin: 0;
    color: rgba(255,255,255,.86);
    font-weight: 700;
}

.gn-df3__lead,
.gn-df3__hero-copy > p:not(.gn-df3__eyebrow):not(.gn-df3__name):not(.gn-df3__role) {
    color: rgba(255,255,255,.93);
    max-width: 720px;
}

.gn-df3__hero-visual {
    display: flex;
    justify-content: center;
}

.gn-df3__photo-card {
    margin: 0;
    overflow: hidden;
    border-radius: var(--df3-radius-xl);
    background: rgba(255,255,255,.65);
    box-shadow: var(--df3-shadow);
}

.gn-df3__photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gn-df3__photo-card--hero {
    width: min(480px, 100%);
    aspect-ratio: 10 / 11;
    border-radius: 0 120px 26px 120px;
    border: 1px solid rgba(255,255,255,.34);
}

.gn-df3__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.gn-df3__highlights span {
    padding: 11px 16px;
    border-radius: 999px;
    color: var(--df3-purple-dark);
    background: rgba(255,255,255,.88);
    font-size: .94rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(66, 20, 83, .08);
}

/* Story section */
.gn-df3__story { background: #fff; }

.gn-df3__story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .88fr);
    gap: 42px;
    align-items: start;
}

.gn-df3__story-copy {
    padding: 38px;
    border-radius: var(--df3-radius-xl);
    background: linear-gradient(180deg, rgba(241,232,245,.74), #ffffff 45%);
    box-shadow: var(--df3-shadow);
}

.gn-df3__venues {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.gn-df3__venues li {
    position: relative;
    padding-left: 24px;
}

.gn-df3__venues li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .72em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--df3-pink), var(--df3-purple));
}

.gn-df3__story-side {
    display: grid;
    gap: 18px;
}

.gn-df3__photo-card--story {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 90px 20px 90px 20px;
    background: #f69bb8;
}

.gn-df3__photo-card--story img { object-fit: contain; }

.gn-df3__side-note {
    padding: 26px 26px 24px;
    border-radius: var(--df3-radius-lg);
    background: var(--df3-purple-deep);
    color: rgba(255,255,255,.86);
    box-shadow: 0 22px 50px rgba(48, 11, 63, .16);
}

.gn-df3__side-kicker {
    margin: 0 0 10px;
    color: var(--df3-pink-soft);
    font-size: .84rem !important;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* Formation */
.gn-df3__formation { background: #fbf8fc; }

.gn-df3__formation-head {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: start;
    margin-bottom: 34px;
}

.gn-df3__formation-list { border-top: 1px solid var(--df3-border); }

.gn-df3__formation-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 26px;
    padding: 30px 0;
    border-bottom: 1px solid var(--df3-border);
}

.gn-df3__formation-number {
    color: var(--df3-pink);
    font-size: .84rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.gn-df3__formation-item h3 {
    margin: 0 0 8px;
    color: var(--df3-purple);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 2.5vw, 2.45rem);
    font-weight: 400;
    line-height: 1.08;
}

.gn-df3__formation-item p { margin: 0; }

/* Vision */
.gn-df3__vision {
    background: linear-gradient(180deg, #fff 0%, #f7eff9 100%);
}

.gn-df3__vision-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
    gap: 42px;
    align-items: center;
}

.gn-df3__vision-copy {
    padding: 42px;
    border-radius: var(--df3-radius-xl);
    background: rgba(255,255,255,.88);
    box-shadow: var(--df3-shadow);
}

.gn-df3__quote {
    margin: 30px 0 0;
    padding-top: 26px;
    border-top: 2px solid var(--df3-pink);
}

.gn-df3__quote p {
    margin: 0;
    color: var(--df3-purple-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 2.6vw, 2.5rem);
    font-style: italic;
    line-height: 1.24;
}

.gn-df3__quote footer {
    margin-top: 18px;
    color: var(--df3-pink);
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.gn-df3__vision-visual {
    display: flex;
    justify-content: center;
}

.gn-df3__photo-card--vision {
    width: min(520px, 100%);
    aspect-ratio: 9 / 10;
    border-radius: 22px 110px 22px 110px;
    background: #b8dff4;
}

.gn-df3__photo-card--vision img {
    object-fit: cover;
    object-position: 42% center;
}

/* CTA */
.gn-df3__cta {
    padding-top: 28px;
    padding-bottom: 92px;
}

.gn-df3__cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 34px;
    align-items: center;
    padding: 48px;
    border-radius: 40px;
    background:
        radial-gradient(circle at 92% 12%, rgba(238,126,169,.22), transparent 26%),
        linear-gradient(135deg, #8745a3, #5f2676);
    color: rgba(255,255,255,.88);
    box-shadow: 0 28px 70px rgba(62, 22, 78, .18);
}

.gn-df3__cta-copy > p:not(.gn-df3__eyebrow) {
    max-width: 780px;
}

.gn-df3__cta-logo {
    display: grid;
    place-items: center;
}

.gn-df3__cta-logo img {
    width: min(250px, 100%);
    height: auto;
    filter: drop-shadow(0 10px 22px rgba(26, 8, 35, .16));
}

@media (max-width: 1080px) {
    .gn-df3__hero-grid,
    .gn-df3__story-grid,
    .gn-df3__formation-head,
    .gn-df3__vision-grid,
    .gn-df3__cta-card {
        grid-template-columns: 1fr;
    }

    .gn-df3__hero-visual,
    .gn-df3__vision-visual {
        justify-content: start;
    }

    .gn-df3__photo-card--hero { width: min(540px, 100%); }

    .gn-df3__cta-logo { justify-content: start; }
}

@media (max-width: 720px) {
    .gn-df3__container {
        width: min(calc(100% - 28px), var(--df3-container));
    }

    .gn-df3__section { padding: 58px 0; }
    .gn-df3__hero { padding: 62px 0 50px; }

    .gn-df3__story-copy,
    .gn-df3__vision-copy,
    .gn-df3__cta-card {
        padding: 28px 22px;
    }

    .gn-df3__photo-card--hero { border-radius: 0 80px 18px 80px; }
    .gn-df3__photo-card--story { border-radius: 60px 18px 60px 18px; }
    .gn-df3__photo-card--vision { border-radius: 18px 70px 18px 70px; }

    .gn-df3__formation-item {
        grid-template-columns: 48px 1fr;
        gap: 14px;
        padding: 24px 0;
    }

    .gn-df3__actions { flex-direction: column; }

    .gn-df3__button {
        width: 100%;
        text-align: center;
    }

    .gn-df3__highlights span { width: 100%; }

    .gn-df3 p, .gn-df3 li { font-size: 1rem; }
}


/* =========================================================
   Navegación global de Danzarella
   ========================================================= */
.gn-df3__nav {
    position: relative;
    z-index: 10;
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-top: 20px;
}

.gn-df3__nav-logo {
    width: 145px;
    display: inline-flex;
    flex: 0 0 auto;
}

.gn-df3__nav-logo img {
    width: 100%;
    height: auto;
}

.gn-df3__menu--desktop {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.gn-df3__menu a,
.gn-df3__mobile-menu-panel a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: 1px solid transparent;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--df3-pink), #df6592);
    box-shadow: 0 12px 26px rgba(83, 27, 105, .13);
    font-weight: 900;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.gn-df3__menu a:hover,
.gn-df3__mobile-menu-panel a:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(83, 27, 105, .20);
}

.gn-df3__menu a.is-active,
.gn-df3__mobile-menu-panel a.is-active {
    border-color: rgba(255, 255, 255, .82);
    background: var(--df3-purple-dark);
    box-shadow: 0 12px 28px rgba(55, 15, 71, .22);
}

.gn-df3__mobile-menu {
    display: none;
}

/* El hero absorbe la navegación sin crear un bloque adicional */
.gn-df3__hero {
    padding-top: 0;
}

.gn-df3__hero-grid {
    padding-top: 24px;
}

@media (max-width: 900px) {
    .gn-df3__nav {
        min-height: 94px;
        padding-top: 14px;
    }

    .gn-df3__nav-logo {
        width: 122px;
    }

    .gn-df3__menu--desktop {
        display: none;
    }

    .gn-df3__mobile-menu {
        position: relative;
        z-index: 30;
        display: block;
        flex: 0 0 auto;
    }

    .gn-df3__mobile-menu > summary {
        width: 48px;
        height: 48px;
        display: grid;
        place-items: center;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, .76);
        border-radius: 50%;
        color: #fff;
        background: rgba(75, 29, 97, .24);
        cursor: pointer;
        list-style: none;
        backdrop-filter: blur(10px);
        -webkit-tap-highlight-color: transparent;
    }

    .gn-df3__mobile-menu > summary::-webkit-details-marker {
        display: none;
    }

    .gn-df3__mobile-menu > summary:focus-visible {
        outline: 3px solid rgba(255, 255, 255, .72);
        outline-offset: 3px;
    }

    .gn-df3__mobile-menu-icon {
        width: 22px;
        display: grid;
        gap: 4px;
    }

    .gn-df3__mobile-menu-icon i {
        height: 2px;
        display: block;
        border-radius: 999px;
        background: currentColor;
        transition: transform .2s ease, opacity .2s ease;
    }

    .gn-df3__mobile-menu[open] .gn-df3__mobile-menu-icon i:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .gn-df3__mobile-menu[open] .gn-df3__mobile-menu-icon i:nth-child(2) {
        opacity: 0;
    }

    .gn-df3__mobile-menu[open] .gn-df3__mobile-menu-icon i:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .gn-df3__mobile-menu-panel {
        position: absolute;
        right: 0;
        top: calc(100% + 10px);
        width: min(310px, calc(100vw - 28px));
        display: grid;
        gap: 9px;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, .38);
        border-radius: 22px;
        background: rgba(73, 25, 91, .97);
        box-shadow: 0 24px 54px rgba(31, 8, 39, .30);
        backdrop-filter: blur(18px);
    }

    .gn-df3__mobile-menu-panel a {
        width: 100%;
        border-radius: 14px;
    }
}

@media (max-width: 720px) {
    .gn-df3__hero-grid {
        padding-top: 10px;
    }
}


/* =========================================================
   Corrección v2: conservar tipografía blanca en los CTA
   ========================================================= */
.gn-df3 a.gn-df3__button,
.gn-df3 a.gn-df3__button:link,
.gn-df3 a.gn-df3__button:visited,
.gn-df3 a.gn-df3__button:hover,
.gn-df3 a.gn-df3__button:focus,
.gn-df3 a.gn-df3__button:focus-visible,
.gn-df3 a.gn-df3__button:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

.gn-df3 a.gn-df3__button--primary:hover,
.gn-df3 a.gn-df3__button--primary:focus-visible {
    color: #ffffff !important;
    background: linear-gradient(135deg, #e96f9f, #d95789);
    box-shadow: 0 18px 36px rgba(221, 98, 146, .30);
}

.gn-df3 a.gn-df3__button--ghost:hover,
.gn-df3 a.gn-df3__button--ghost:focus-visible {
    color: #ffffff !important;
    border-color: #ffffff;
    background: rgba(255, 255, 255, .16);
}
