/* Home responsivo de Danzarella */
.gn-home {
    --gh-purple: #71308e;
    --gh-purple-dark: #4b1d61;
    --gh-purple-deep: #32103f;
    --gh-pink: #ed78a5;
    --gh-pink-deep: #d85888;
    --gh-pink-soft: #f7d9e6;
    --gh-lilac: #eee1f4;
    --gh-lilac-light: #faf5fb;
    --gh-text: #675e6a;
    --gh-white: #ffffff;
    --gh-border: rgba(113, 48, 142, .13);
    --gh-shadow: 0 26px 70px rgba(64, 22, 82, .13);
    --gh-radius-xl: 38px;
    --gh-radius-lg: 26px;
    --gh-container: 1240px;

    color: var(--gh-text);
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.gn-home *,
.gn-home *::before,
.gn-home *::after {
    box-sizing: border-box;
}

.gn-home img {
    max-width: 100%;
    display: block;
}

.gn-home a,
.gn-home button {
    font: inherit;
}

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

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

.gn-home__section {
    padding: 92px 0;
}

.gn-home__eyebrow {
    margin: 0 0 14px;
    color: var(--gh-pink);
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.gn-home__eyebrow--light {
    color: #ffd0e1;
}

.gn-home__section-title {
    margin: 0;
    color: var(--gh-purple);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.45rem, 4.7vw, 4.9rem);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.gn-home__section-title span {
    display: block;
}

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

.gn-home__section-heading {
    max-width: 960px;
    margin-bottom: 40px;
}

.gn-home__section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.gn-home__section-heading > p:not(.gn-home__eyebrow) {
    max-width: 900px;
    margin: 22px auto 0;
}

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

.gn-home__button,
.gn-home__text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.gn-home__button {
    min-height: 56px;
    padding: 12px 25px;
    border: 2px solid transparent;
    border-radius: 999px;
}

.gn-home__button:hover,
.gn-home__text-button:hover {
    transform: translateY(-2px);
}

.gn-home__button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--gh-pink), var(--gh-pink-deep));
    box-shadow: 0 16px 32px rgba(216, 88, 136, .24);
}

.gn-home__button--secondary {
    color: #fff;
    border-color: rgba(255,255,255,.84);
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
}

.gn-home__text-button {
    min-height: 52px;
    padding: 12px 24px;
    border-radius: 999px;
    color: #fff;
    background: var(--gh-pink);
    box-shadow: 0 14px 28px rgba(216, 88, 136, .20);
}

/* Hero */
.gn-home__hero {
    position: relative;
    min-height: min(800px, 88vh);
    display: flex;
    align-items: center;
    isolation: isolate;
    background-color: #b98bd1;
    background-image:
        linear-gradient(90deg, rgba(109, 42, 136, .08) 0%, rgba(109, 42, 136, .02) 52%, transparent 70%),
        url('https://danzarella.com.mx/wp-content/uploads/2026/08/Home.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.gn-home__hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(153, 94, 180, .14), transparent 62%);
    pointer-events: none;
}

.gn-home__hero-content {
    display: grid;
    align-content: space-between;
    min-height: min(800px, 88vh);
    padding-block: 38px 72px;
}

.gn-home__hero-logo {
    width: 150px;
    height: auto;
}

.gn-home__hero-copy {
    max-width: 630px;
}

.gn-home__hero-title {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 7vw, 7.2rem);
    font-weight: 400;
    line-height: .86;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.gn-home__hero-title em {
    display: block;
    margin-top: 14px;
    color: var(--gh-purple-dark);
    font-weight: 400;
}

.gn-home__hero-lead {
    max-width: 620px;
    margin: 28px 0 0;
    color: #fff;
    font-size: 1.17rem !important;
}

/* About */
.gn-home__about {
    background:
        radial-gradient(circle at 5% 10%, rgba(237,120,165,.10), transparent 22%),
        linear-gradient(180deg, #fff 0%, #f5def0 100%);
}

.gn-home__about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 54px;
    align-items: center;
}

.gn-home__about-copy {
    padding-block: 24px;
}

.gn-home__about-copy > p {
    max-width: 730px;
}

.gn-home__about-quote {
    position: relative;
    margin: 30px 0 0;
    padding: 0 0 8px 48px;
    color: var(--gh-purple);
    font-size: clamp(1.45rem, 2.5vw, 2.4rem);
    font-style: italic;
    font-weight: 800;
    line-height: 1.22;
}

.gn-home__about-quote::before {
    content: '♡';
    position: absolute;
    left: 0;
    top: -9px;
    color: var(--gh-pink);
    font-size: 2.4rem;
    font-style: normal;
}

.gn-home__about-image {
    margin: 0;
    overflow: hidden;
    border-radius: 120px 24px 120px 24px;
    box-shadow: var(--gh-shadow);
}

.gn-home__about-image img {
    width: 100%;
    height: auto;
}

/* Disciplines */
.gn-home__disciplines {
    background: #fff;
}

.gn-home__discipline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gn-home__discipline-card {
    min-height: 320px;
    padding: 32px;
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius-lg);
    background: var(--gh-lilac-light);
    box-shadow: 0 18px 45px rgba(65, 22, 83, .08);
}

.gn-home__discipline-number {
    color: var(--gh-pink);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.gn-home__discipline-card h3 {
    margin: 44px 0 14px;
    color: var(--gh-purple);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3.1rem);
    font-weight: 400;
    line-height: 1;
}

.gn-home__discipline-card p {
    margin-bottom: 0;
}

.gn-home__discipline-card--cta {
    color: rgba(255,255,255,.88);
    background:
        radial-gradient(circle at 90% 10%, rgba(237,120,165,.25), transparent 25%),
        linear-gradient(145deg, #84429e, #5b246f);
}

.gn-home__discipline-card--cta h3 {
    margin-top: 20px;
    color: #fff;
    font-size: 2rem;
}

.gn-home__discipline-kicker {
    margin: 0;
    color: #ffd2e2;
    font-size: .78rem !important;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.gn-home__discipline-card--cta a {
    display: inline-flex;
    margin-top: 22px;
    color: #fff;
    font-weight: 900;
    text-underline-offset: 5px;
}

/* Model */
.gn-home__model {
    background: #faf6fb;
}

.gn-home__model-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.gn-home__model-area {
    min-width: 0;
    text-align: center;
}

.gn-home__model-area img {
    width: min(180px, 100%);
    aspect-ratio: 1;
    margin-inline: auto;
    object-fit: contain;
}

.gn-home__model-area h3 {
    display: inline-block;
    margin: 22px 0 8px;
    padding-bottom: 5px;
    border-bottom: 3px solid var(--gh-pink);
    color: var(--gh-purple);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1;
}

.gn-home__model-area p {
    margin: 0;
    font-size: .95rem;
    line-height: 1.45;
}

.gn-home__center-action {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

/* Experience carousel */
.gn-home__experience {
    background: #fff;
}

.gn-home__carousel {
    margin-top: 44px;
}

.gn-home__carousel-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.gn-home__carousel-toolbar p {
    margin: 0;
    color: var(--gh-purple-dark);
    font-size: .88rem;
    font-weight: 800;
}

.gn-home__carousel-buttons {
    display: flex;
    gap: 10px;
}

.gn-home__carousel-buttons button {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gh-border);
    border-radius: 50%;
    color: var(--gh-purple);
    background: #fff;
    cursor: pointer;
    transition: .2s ease;
}

.gn-home__carousel-buttons button:hover:not(:disabled) {
    color: #fff;
    border-color: var(--gh-purple);
    background: var(--gh-purple);
}

.gn-home__carousel-buttons button:disabled {
    opacity: .35;
    cursor: default;
}

.gn-home__carousel-viewport {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    border-radius: 24px;
}

.gn-home__carousel-viewport::-webkit-scrollbar {
    display: none;
}

.gn-home__carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 4);
    gap: 16px;
}

.gn-home__carousel-slide {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
    border-radius: 20px;
    background: var(--gh-lilac);
}

.gn-home__carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gn-home__carousel-progress {
    height: 5px;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--gh-lilac);
}

.gn-home__carousel-progress span {
    width: 0;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gh-pink), var(--gh-purple));
    transition: width .2s ease;
}

/* Stage */
.gn-home__stage {
    padding: 88px 0;
    color: rgba(255,255,255,.86);
    background:
        radial-gradient(circle at 95% 8%, rgba(237,120,165,.18), transparent 26%),
        linear-gradient(135deg, #3a1149, #68267c);
}

.gn-home__stage-grid {
    display: grid;
    grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: center;
}

.gn-home__stage-image {
    margin: 0;
    overflow: hidden;
    border-radius: 100px 24px 100px 24px;
    box-shadow: 0 28px 70px rgba(0,0,0,.24);
}

.gn-home__stage-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.gn-home__stage-copy p {
    max-width: 760px;
}

.gn-home__stage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.gn-home__stage-tags span {
    padding: 10px 15px;
    border: 1px solid rgba(255,255,255,.23);
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.07);
}

.gn-home__stage-link {
    display: inline-flex;
    margin-top: 28px;
    color: #ffd1e1;
    font-weight: 900;
    text-underline-offset: 5px;
}

/* Founder */
.gn-home__founder {
    background: #fff;
}

.gn-home__founder-card {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 62px;
    align-items: start;
    padding: 54px;
    border-radius: var(--gh-radius-xl);
    background:
        radial-gradient(circle at 6% 8%, rgba(237,120,165,.13), transparent 22%),
        linear-gradient(145deg, #f7eaf2, #eee2f4);
    box-shadow: var(--gh-shadow);
}

.gn-home__founder-card > div:last-child > p:first-child {
    margin-top: 0;
}

/* First step */
.gn-home__first-step {
    padding: 90px 0;
    color: rgba(255,255,255,.88);
    background:
        radial-gradient(circle at 8% 8%, rgba(237,120,165,.17), transparent 22%),
        linear-gradient(145deg, #4a1c60, #2e0d3a);
}

.gn-home__first-step-grid {
    display: grid;
    grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
    gap: 54px;
    align-items: center;
}

.gn-home__first-step-image {
    margin: 0;
    overflow: hidden;
    border-radius: 24px 100px 24px 100px;
    box-shadow: 0 28px 70px rgba(0,0,0,.24);
}

.gn-home__first-step-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.gn-home__contact-data {
    margin: 28px 0 0;
}

.gn-home__contact-data > div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.gn-home__contact-data dt {
    color: #ffd0e0;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.gn-home__contact-data dd {
    margin: 0;
}

.gn-home__contact-data a {
    color: #fff;
    font-weight: 800;
}

.gn-home__map {
    margin-top: 48px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 74px rgba(0,0,0,.24);
}

.gn-home__map iframe {
    width: 100%;
    min-height: 470px;
    display: block;
    border: 0;
}

@media (max-width: 1080px) {
    .gn-home__about-grid,
    .gn-home__stage-grid,
    .gn-home__founder-card,
    .gn-home__first-step-grid {
        grid-template-columns: 1fr;
    }

    .gn-home__discipline-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gn-home__discipline-card--cta {
        grid-column: 1 / -1;
        min-height: auto;
    }

    .gn-home__model-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 38px;
    }

    .gn-home__carousel-track {
        grid-auto-columns: calc((100% - 16px) / 2);
    }

    .gn-home__about-image,
    .gn-home__stage-image,
    .gn-home__first-step-image {
        width: min(620px, 100%);
    }
}

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

    .gn-home__section,
    .gn-home__stage,
    .gn-home__first-step {
        padding: 60px 0;
    }

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

    .gn-home__hero {
        min-height: auto;
        align-items: flex-start;
        background-size: auto 49%;
        background-position: 68% bottom;
        background-color: #bd91d3;
    }

    .gn-home__hero::after {
        background:
            linear-gradient(180deg, rgba(187,145,210,.15) 0%, rgba(187,145,210,.08) 56%, rgba(187,145,210,.10) 100%);
    }

    .gn-home__hero-content {
        min-height: 790px;
        padding-block: 28px 350px;
    }

    .gn-home__hero-logo {
        width: 116px;
    }

    .gn-home__hero-copy {
        margin-top: 50px;
        padding: 24px;
        border: 1px solid rgba(255,255,255,.30);
        border-radius: 26px;
        background: rgba(122,56,147,.14);
        backdrop-filter: blur(8px);
    }

    .gn-home__hero-title {
        font-size: clamp(3.45rem, 16vw, 5rem);
    }

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

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

    .gn-home__about-grid,
    .gn-home__founder-card,
    .gn-home__first-step-grid {
        gap: 34px;
    }

    .gn-home__about-image {
        border-radius: 70px 18px 70px 18px;
    }

    .gn-home__about-quote {
        padding-left: 38px;
    }

    .gn-home__discipline-grid,
    .gn-home__model-grid {
        grid-template-columns: 1fr;
    }

    .gn-home__discipline-card--cta {
        grid-column: auto;
    }

    .gn-home__model-area {
        display: grid;
        grid-template-columns: 120px 1fr;
        grid-template-areas:
            "icon title"
            "icon description";
        gap: 4px 20px;
        align-items: center;
        text-align: left;
    }

    .gn-home__model-area img {
        grid-area: icon;
        width: 120px;
    }

    .gn-home__model-area h3 {
        grid-area: title;
        justify-self: start;
        margin: 0;
    }

    .gn-home__model-area p {
        grid-area: description;
    }

    .gn-home__carousel-track {
        grid-auto-columns: 88%;
    }

    .gn-home__stage-image,
    .gn-home__first-step-image {
        border-radius: 18px 70px 18px 70px;
    }

    .gn-home__founder-card {
        padding: 32px 24px;
    }

    .gn-home__contact-data > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .gn-home__map iframe {
        min-height: 380px;
    }
}

@media (max-width: 420px) {
    .gn-home__hero-content {
        min-height: 760px;
        padding-bottom: 310px;
    }

    .gn-home__hero-copy {
        margin-top: 34px;
        padding: 20px;
    }

    .gn-home__model-area {
        grid-template-columns: 96px 1fr;
    }

    .gn-home__model-area img {
        width: 96px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gn-home *,
    .gn-home *::before,
    .gn-home *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}


/* =========================================================
   Home v2: navegación, quote oficial, autoplay y cierre
   ========================================================= */

.gn-home__hero {
    display: block;
}

.gn-home__nav {
    position: relative;
    z-index: 5;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-top: 22px;
}

.gn-home__nav-logo {
    display: inline-flex;
    width: 150px;
    flex: 0 0 auto;
}

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

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

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

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

.gn-home__menu-toggle {
    display: none;
}

.gn-home__hero-content {
    min-height: calc(min(800px, 88vh) - 120px);
    align-content: end;
    padding-top: 36px;
}

.gn-home__about-message {
    width: min(720px, 100%);
    margin: 30px 0 0;
}

.gn-home__about-message img {
    width: 100%;
    height: auto;
}

/* Carrusel automático con 35 fotografías */
.gn-home__carousel {
    --carousel-gap: 16px;
}

.gn-home__carousel-status {
    opacity: .82;
}

.gn-home__carousel-track {
    grid-auto-columns: calc((100% - (var(--carousel-gap) * 3)) / 4);
    gap: var(--carousel-gap);
}

.gn-home__carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    max-width: 780px;
    margin: 18px auto 0;
    overflow: hidden;
}

.gn-home__carousel-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d7d4d8;
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.gn-home__carousel-dot.is-active {
    width: 18px;
    border-radius: 999px;
    background: var(--gh-purple);
}

/* Cierre más cercano al Home original */
.gn-home__first-step {
    position: relative;
    isolation: isolate;
    padding: 76px 0 56px;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(24,8,29,.88), rgba(24,8,29,.68)),
        url('https://danzarella.com.mx/wp-content/uploads/2026/08/Artboard-4.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 35%;
}

.gn-home__first-step-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 85% 20%, rgba(237,120,165,.15), transparent 26%),
        linear-gradient(180deg, rgba(40,14,48,.12), rgba(25,6,31,.50));
}

.gn-home__first-step-content {
    text-align: left;
}

.gn-home__first-step-kicker {
    margin: 0;
    color: #c388df;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 5rem) !important;
    font-style: italic;
    line-height: .95 !important;
}

.gn-home__first-step-title {
    max-width: 1020px;
    margin: 8px 0 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.9rem, 5.6vw, 5.8rem);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.gn-home__first-step-title span {
    display: block;
}

.gn-home__first-step-lead {
    max-width: 1120px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.86);
}

.gn-home__first-step-data {
    display: grid;
    gap: 8px;
    margin: 30px 0 24px;
}

.gn-home__first-step-data p {
    margin: 0;
    color: rgba(255,255,255,.90);
}

.gn-home__first-step-data strong {
    color: #d6a2eb;
}

.gn-home__first-step-data a {
    color: #fff;
    font-weight: 900;
}

.gn-home__first-step .gn-home__map {
    margin-top: 24px;
    border-radius: 0;
}

.gn-home__first-step .gn-home__map iframe {
    min-height: 430px;
}

.gn-home__first-step-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 26px;
}

.gn-home__social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    color: #fff;
}

.gn-home__social a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 12px;
    color: #fff;
    background: rgba(255,255,255,.12);
    font-weight: 800;
    text-decoration: none;
}

/* Ya no existen estas secciones en la página */
.gn-home__disciplines,
.gn-home__stage,
.gn-home__founder {
    display: none !important;
}

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

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

    .gn-home__menu-toggle {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 9px 16px;
        border: 1px solid rgba(255,255,255,.64);
        border-radius: 999px;
        color: #fff;
        background: rgba(91,33,111,.20);
        cursor: pointer;
        font-weight: 900;
        backdrop-filter: blur(9px);
    }

    .gn-home__menu-toggle-icon {
        width: 22px;
        display: grid;
        gap: 4px;
    }

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

    .gn-home__menu-toggle[aria-expanded="true"] .gn-home__menu-toggle-icon i:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .gn-home__menu-toggle[aria-expanded="true"] .gn-home__menu-toggle-icon i:nth-child(2) {
        opacity: 0;
    }

    .gn-home__menu-toggle[aria-expanded="true"] .gn-home__menu-toggle-icon i:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .gn-home__menu {
        position: absolute;
        right: 0;
        top: calc(100% + 8px);
        width: min(320px, 92vw);
        display: grid;
        gap: 9px;
        padding: 14px;
        border: 1px solid rgba(255,255,255,.38);
        border-radius: 22px;
        background: rgba(73,25,91,.93);
        box-shadow: 0 22px 48px rgba(31,8,39,.24);
        backdrop-filter: blur(16px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }

    .gn-home__menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .gn-home__menu a {
        width: 100%;
        border-radius: 14px;
    }

    .gn-home__hero-content {
        min-height: calc(760px - 96px);
    }

    .gn-home__carousel-track {
        grid-auto-columns: calc((100% - var(--carousel-gap)) / 2);
    }
}

@media (max-width: 720px) {
    .gn-home__hero {
        background-size: auto 54%;
        background-position: 66% bottom;
    }

    .gn-home__hero-content {
        min-height: 690px;
        padding-top: 12px;
        padding-bottom: 330px;
    }

    .gn-home__hero-copy {
        margin-top: 18px;
    }

    .gn-home__about-message {
        margin-top: 24px;
    }

    .gn-home__carousel-toolbar {
        justify-content: flex-end;
    }

    .gn-home__carousel-status {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .gn-home__carousel-track {
        grid-auto-columns: 86%;
    }

    .gn-home__carousel-dots {
        justify-content: flex-start;
        max-width: 100%;
        padding-inline: 8px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .gn-home__carousel-dots::-webkit-scrollbar {
        display: none;
    }

    .gn-home__first-step {
        padding-top: 58px;
        background-position: 42% center;
    }

    .gn-home__first-step-title {
        font-size: clamp(2.7rem, 13vw, 4.5rem);
    }

    .gn-home__first-step .gn-home__map iframe {
        min-height: 360px;
    }

    .gn-home__first-step-actions {
        flex-direction: column;
    }

    .gn-home__first-step-actions .gn-home__button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .gn-home__menu-toggle-label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .gn-home__menu-toggle {
        width: 48px;
        justify-content: center;
        padding-inline: 12px;
    }

    .gn-home__hero-content {
        min-height: 670px;
        padding-bottom: 300px;
    }
}


/* =========================================================
   Home v3: carrusel sin contador y cierre rediseñado
   ========================================================= */

/* El toolbar conserva únicamente las flechas */
.gn-home__carousel-toolbar {
    justify-content: flex-end;
}

.gn-home__carousel-status {
    display: none !important;
}

/* Cierre renovado */
.gn-home__first-step {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 88px 0 72px;
    background-image:
        linear-gradient(90deg, rgba(35, 12, 43, .88), rgba(35, 12, 43, .60)),
        url('https://danzarella.com.mx/wp-content/uploads/2026/08/Captura-de-pantalla-2026-08-03-a-las-1.10.38-p.m.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.gn-home__first-step-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 86% 16%, rgba(237, 120, 165, .20), transparent 24%),
        linear-gradient(180deg, rgba(70, 25, 84, .08), rgba(27, 8, 34, .46));
}

.gn-home__first-step-shell {
    display: grid;
    gap: 42px;
}

.gn-home__first-step-intro {
    max-width: 980px;
}

.gn-home__first-step-title {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 6vw, 6.2rem);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.gn-home__first-step-title em {
    display: block;
    margin-top: 8px;
    color: #d5a0e9;
    font-weight: 400;
}

.gn-home__first-step-lead {
    max-width: 900px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 1.14rem !important;
}

.gn-home__first-step-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.gn-home__first-step-badges span {
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .09);
    font-size: .9rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.gn-home__location-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 34px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 30px 78px rgba(18, 5, 23, .30);
    backdrop-filter: blur(16px);
}

.gn-home__location-head {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    gap: 40px;
    align-items: center;
    padding: 32px 36px;
}

.gn-home__location-kicker {
    margin: 0 0 8px;
    color: var(--gh-pink);
    font-size: .78rem !important;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.gn-home__location-head h3 {
    margin: 0;
    color: var(--gh-purple);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.2vw, 3.45rem);
    font-weight: 400;
    line-height: 1;
}

.gn-home__location-head p {
    margin-bottom: 0;
}

.gn-home__location-data {
    margin: 0;
}

.gn-home__location-data > div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gh-border);
}

.gn-home__location-data > div:last-child {
    border-bottom: 0;
}

.gn-home__location-data dt {
    color: var(--gh-pink-deep);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.gn-home__location-data dd {
    margin: 0;
}

.gn-home__location-data a {
    color: var(--gh-purple-dark);
    font-weight: 900;
}

.gn-home__location-card .gn-home__map {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.gn-home__location-card .gn-home__map iframe {
    min-height: 440px;
}

.gn-home__location-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 24px 28px 28px;
}

.gn-home__button--location {
    color: var(--gh-purple);
    border-color: var(--gh-purple);
    background: #fff;
}

.gn-home__button--location:hover {
    color: #fff;
    background: var(--gh-purple);
}

@media (max-width: 900px) {
    .gn-home__location-head {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 720px) {
    .gn-home__first-step {
        padding: 62px 0 48px;
        background-position: 42% center;
    }

    .gn-home__first-step-title {
        font-size: clamp(3rem, 14vw, 4.8rem);
    }

    .gn-home__first-step-badges {
        display: grid;
    }

    .gn-home__first-step-badges span {
        text-align: center;
    }

    .gn-home__location-card {
        border-radius: 26px;
    }

    .gn-home__location-head {
        padding: 26px 22px;
    }

    .gn-home__location-data > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .gn-home__location-card .gn-home__map iframe {
        min-height: 360px;
    }

    .gn-home__location-actions {
        flex-direction: column;
        padding: 20px;
    }

    .gn-home__location-actions .gn-home__button {
        width: 100%;
        text-align: center;
    }
}


/* =========================================================
   Home v4: siluetas visibles y redes sociales en el cierre
   ========================================================= */

.gn-home__first-step {
    background-image:
        linear-gradient(
            90deg,
            rgba(35, 12, 43, .94) 0%,
            rgba(35, 12, 43, .78) 43%,
            rgba(35, 12, 43, .38) 72%,
            rgba(35, 12, 43, .16) 100%
        ),
        url('https://danzarella.com.mx/wp-content/uploads/2026/08/Captura-de-pantalla-2026-08-03-a-las-1.10.38-p.m.png');
    background-size: cover;
    background-position: center 74%;
}

.gn-home__first-step-overlay {
    background:
        radial-gradient(circle at 88% 27%, rgba(237, 120, 165, .10), transparent 26%),
        linear-gradient(180deg, rgba(63, 22, 75, .04), rgba(27, 8, 34, .22));
}

.gn-home__first-step-intro {
    min-height: 660px;
    padding-bottom: 120px;
}

/* El texto estaba heredando el color blanco del cierre */
.gn-home__location-head > div:first-child > p:not(.gn-home__location-kicker) {
    color: var(--gh-text);
}

.gn-home__location-contact {
    display: grid;
    gap: 22px;
    align-content: center;
}

.gn-home__location-social {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    align-items: center;
    padding-top: 4px;
}

.gn-home__location-social > p {
    margin: 0;
    color: var(--gh-pink-deep);
    font-size: .75rem !important;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.gn-home__social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gn-home__social-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 12px 24px rgba(64, 22, 82, .14);
    transition: transform .2s ease, box-shadow .2s ease;
}

.gn-home__social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(64, 22, 82, .20);
}

.gn-home__social-icon:focus-visible {
    outline: 3px solid rgba(237, 120, 165, .34);
    outline-offset: 3px;
}

.gn-home__social-icon svg {
    width: 25px;
    height: 25px;
    display: block;
}

.gn-home__social-icon--instagram {
    background: linear-gradient(145deg, #8b45a8, #d85b8f);
}

.gn-home__social-icon--instagram svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.gn-home__social-icon--facebook {
    background: #4567ad;
}

.gn-home__social-icon--facebook svg {
    fill: currentColor;
}

@media (max-width: 1100px) {
    .gn-home__first-step {
        background-position: 58% 72%;
    }

    .gn-home__first-step-intro {
        min-height: 600px;
        padding-bottom: 90px;
    }
}

@media (max-width: 720px) {
    .gn-home__first-step {
        background-position: 58% 63%;
    }

    .gn-home__first-step-intro {
        min-height: auto;
        padding-bottom: 250px;
    }

    .gn-home__location-social {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gn-home__social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 440px) {
    .gn-home__first-step {
        background-position: 60% 60%;
    }

    .gn-home__first-step-intro {
        padding-bottom: 220px;
    }
}


/* =========================================================
   Home v5: corrección definitiva del menú responsivo
   ========================================================= */

/* Escritorio y tablet horizontal: jamás mostrar el botón móvil */
.gn-home__menu-toggle {
    display: none !important;
}

.gn-home__menu {
    position: static !important;
    width: auto !important;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Solo celular: convertirlo en menú desplegable */
@media (max-width: 767px) {
    .gn-home__nav {
        min-height: 88px;
    }

    .gn-home__menu-toggle {
        width: 48px;
        height: 48px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        padding: 0;
        border: 1px solid rgba(255,255,255,.72);
        border-radius: 50%;
        color: #fff;
        background: rgba(75,29,97,.20);
        cursor: pointer;
        backdrop-filter: blur(9px);
    }

    .gn-home__menu-toggle-label {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
        border: 0 !important;
    }

    .gn-home__menu-toggle-icon {
        width: 22px;
        display: grid;
        gap: 4px;
    }

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

    .gn-home__menu-toggle[aria-expanded="true"] .gn-home__menu-toggle-icon i:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .gn-home__menu-toggle[aria-expanded="true"] .gn-home__menu-toggle-icon i:nth-child(2) {
        opacity: 0;
    }

    .gn-home__menu-toggle[aria-expanded="true"] .gn-home__menu-toggle-icon i:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .gn-home__menu {
        position: absolute !important;
        right: 0 !important;
        top: calc(100% + 8px) !important;
        width: min(320px, 92vw) !important;
        display: grid !important;
        gap: 9px !important;
        padding: 14px !important;
        border: 1px solid rgba(255,255,255,.38) !important;
        border-radius: 22px !important;
        background: rgba(73,25,91,.95) !important;
        box-shadow: 0 22px 48px rgba(31,8,39,.24) !important;
        backdrop-filter: blur(16px) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-10px) !important;
        transition:
            opacity .2s ease,
            transform .2s ease,
            visibility .2s ease !important;
    }

    .gn-home__menu.is-open {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .gn-home__menu a {
        width: 100%;
        min-height: 50px;
        border-radius: 14px;
    }
}


/* =========================================================
   Home v6: menú móvil nativo, sin dependencia de JavaScript
   ========================================================= */

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

.gn-home__menu--desktop {
    position: static !important;
    width: auto !important;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

@media (max-width: 767px) {
    .gn-home__menu--desktop {
        display: none !important;
    }

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

    .gn-home__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-home__mobile-menu > summary::-webkit-details-marker {
        display: none;
    }

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

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

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

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

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

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

    .gn-home__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-home__mobile-menu-panel a {
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 18px;
        border-radius: 14px;
        color: #fff;
        background: linear-gradient(135deg, var(--gh-pink), #df6592);
        font-weight: 900;
        text-decoration: none;
    }

    .gn-home__mobile-menu-panel a:focus-visible {
        outline: 3px solid rgba(255, 255, 255, .70);
        outline-offset: 2px;
    }
}

/* =========================================================
   Inicio: estados hover consistentes y protegidos del tema
   ========================================================= */

/* Botones rellenos: el tema de WordPress no puede oscurecer el texto. */
.gn-home__menu--desktop a,
.gn-home__menu--desktop a:visited,
.gn-home__menu--desktop a:hover,
.gn-home__menu--desktop a:focus,
.gn-home__menu--desktop a:active,
.gn-home__mobile-menu-panel a,
.gn-home__mobile-menu-panel a:visited,
.gn-home__mobile-menu-panel a:hover,
.gn-home__mobile-menu-panel a:focus,
.gn-home__mobile-menu-panel a:active,
.gn-home__button--primary,
.gn-home__button--primary:visited,
.gn-home__button--primary:hover,
.gn-home__button--primary:focus,
.gn-home__button--primary:active,
.gn-home__button--secondary,
.gn-home__button--secondary:visited,
.gn-home__button--secondary:hover,
.gn-home__button--secondary:focus,
.gn-home__button--secondary:active,
.gn-home__text-button,
.gn-home__text-button:visited,
.gn-home__text-button:hover,
.gn-home__text-button:focus,
.gn-home__text-button:active,
.gn-home__social-icon,
.gn-home__social-icon:visited,
.gn-home__social-icon:hover,
.gn-home__social-icon:focus,
.gn-home__social-icon:active {
    color: #fff !important;
    text-decoration: none !important;
}

/* Movimiento y sombra uniformes en todos los botones interactivos. */
.gn-home__menu--desktop a,
.gn-home__mobile-menu-panel a,
.gn-home__button,
.gn-home__text-button,
.gn-home__social-icon,
.gn-home__carousel-buttons button {
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        filter .2s ease !important;
}

.gn-home__menu--desktop a:hover,
.gn-home__menu--desktop a:focus-visible,
.gn-home__mobile-menu-panel a:hover,
.gn-home__mobile-menu-panel a:focus-visible,
.gn-home__button--primary:hover,
.gn-home__button--primary:focus-visible,
.gn-home__button--secondary:hover,
.gn-home__button--secondary:focus-visible,
.gn-home__text-button:hover,
.gn-home__text-button:focus-visible,
.gn-home__social-icon:hover,
.gn-home__social-icon:focus-visible {
    transform: translateY(-3px);
    filter: brightness(1.04);
}

/* Menú principal y móvil. */
.gn-home__menu--desktop a:hover,
.gn-home__menu--desktop a:focus-visible,
.gn-home__mobile-menu-panel a:hover,
.gn-home__mobile-menu-panel a:focus-visible {
    color: #fff !important;
    background: linear-gradient(135deg, var(--gh-pink-deep), #cf4f80) !important;
    box-shadow: 0 18px 34px rgba(83, 27, 105, .25) !important;
}

/* CTA rosa principal. */
.gn-home__button--primary:hover,
.gn-home__button--primary:focus-visible,
.gn-home__text-button:hover,
.gn-home__text-button:focus-visible {
    color: #fff !important;
    background: linear-gradient(135deg, var(--gh-pink-deep), #ca477a) !important;
    box-shadow: 0 20px 38px rgba(216, 88, 136, .32) !important;
}

/* CTA transparente sobre fondos oscuros. */
.gn-home__button--secondary:hover,
.gn-home__button--secondary:focus-visible {
    color: #fff !important;
    border-color: #fff !important;
    background: rgba(255, 255, 255, .20) !important;
    box-shadow: 0 16px 30px rgba(35, 12, 43, .20) !important;
}

/* Botón blanco de Google Maps: morado normal y blanco al interactuar. */
.gn-home__button--location,
.gn-home__button--location:visited {
    color: var(--gh-purple) !important;
    border-color: var(--gh-purple) !important;
    background: #fff !important;
    box-shadow: 0 10px 22px rgba(74, 28, 96, .10);
    text-decoration: none !important;
}

.gn-home__button--location:hover,
.gn-home__button--location:focus-visible,
.gn-home__button--location:active {
    color: #fff !important;
    border-color: var(--gh-purple-dark) !important;
    background: var(--gh-purple-dark) !important;
    box-shadow: 0 18px 34px rgba(74, 28, 96, .28) !important;
    transform: translateY(-3px);
}

/* Flechas del carrusel. */
.gn-home__carousel-buttons button,
.gn-home__carousel-buttons button:visited {
    color: var(--gh-purple) !important;
}

.gn-home__carousel-buttons button:hover:not(:disabled),
.gn-home__carousel-buttons button:focus-visible:not(:disabled) {
    color: #fff !important;
    border-color: var(--gh-purple) !important;
    background: var(--gh-purple) !important;
    box-shadow: 0 12px 24px rgba(74, 28, 96, .20);
    transform: translateY(-2px);
}

/* Foco visible para teclado. */
.gn-home__menu--desktop a:focus-visible,
.gn-home__mobile-menu-panel a:focus-visible,
.gn-home__button:focus-visible,
.gn-home__text-button:focus-visible,
.gn-home__social-icon:focus-visible,
.gn-home__carousel-buttons button:focus-visible {
    outline: 3px solid rgba(237, 120, 165, .42) !important;
    outline-offset: 4px;
}

/* =========================================================
   Ajuste móvil final: título del cierre sin desbordamiento
   ========================================================= */
@media (max-width: 720px) {
    .gn-home__first-step-title {
        max-width: 100%;
        font-size: clamp(2.45rem, 11.5vw, 3.55rem) !important;
        line-height: .94 !important;
        letter-spacing: -.052em !important;
        overflow-wrap: normal;
        word-break: normal;
    }

    .gn-home__first-step-title em {
        margin-top: 10px;
        font-size: .94em;
        line-height: .96;
    }
}

@media (max-width: 390px) {
    .gn-home__first-step-title {
        font-size: clamp(2.2rem, 10.7vw, 2.85rem) !important;
        letter-spacing: -.058em !important;
    }
}


/* =========================================================
   Ajuste final v2: acercar Home.jpg para recuperar el encuadre deseado
   ========================================================= */

/* Escritorio grande: se amplía más para que se vea como la referencia */
.gn-home__hero {
    background-size: 124% auto !important;
    background-position: 60% bottom !important;
}

/* Laptop / escritorio mediano */
@media (max-width: 1440px) {
    .gn-home__hero {
        background-size: 121% auto !important;
        background-position: 61% bottom !important;
    }
}

/* Pantallas intermedias */
@media (max-width: 1100px) {
    .gn-home__hero {
        background-size: auto 114% !important;
        background-position: 63% bottom !important;
    }
}

/* Móvil mantiene su propio recorte para que la bailarina siga entrando bien */
@media (max-width: 767px) {
    .gn-home__hero {
        background-size: auto 56% !important;
        background-position: 65% bottom !important;
    }
}

@media (max-width: 420px) {
    .gn-home__hero {
        background-size: auto 53% !important;
        background-position: 66% bottom !important;
    }
}
