/* =====================================================
   ULTRA WASH POWER WASH
   ESTILOS EXCLUSIVOS DE LA PÁGINA DE INICIO

   Incluye:
   - Servicios residencial y comercial.
   - Preparación para ScrollTrigger.
   - Animación cinematográfica del hero.
   - Resultados antes y después.
   - Sección Por qué elegir Ultra Wash.
===================================================== */

/* ========================================
   SEGUNDA SECCIÓN: RESIDENCIAL / COMERCIAL
======================================== */

.property-services {
    position: relative;
    overflow: hidden;
    padding: 44px 6% 20px;
    background: #f7f9fc;
}

.property-services__container {
    width: min(1400px, 100%);
    margin: 0 auto;
}

.property-services__heading {
    max-width: 640px;
    margin: 0 auto 36px;
    text-align: center;
}

.property-services__eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #1169b2;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.property-services__heading h2 {
    margin: 0;
    color: #0b2742;
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -0.6px;
}

.property-services__heading p {
    margin: 14px auto 0;
    color: #607084;
    font-size: 16px;
    line-height: 1.6;
    max-width: 820px;
}

.property-services__grid {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.property-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(11, 39, 66, 0.11);
    background: transparent;
}

.property-card__image {
    aspect-ratio: 793 / 496;
    height: auto;
    overflow: hidden;
    position: relative;
}

.property-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.2,.9,.2,1), filter 0.45s ease;
}

.property-card:first-child .property-card__image img {
    object-position: center;
}

.property-card:last-child .property-card__image img {
    object-position: center;
}

/* Overlay content centered on image */
.property-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 28px 30px;
    color: #ffffff;
    text-align: center;
    background:
        linear-gradient(
            180deg,
            rgba(2, 13, 22, 0.12) 0%,
            rgba(2, 13, 22, 0.24) 48%,
            rgba(2, 13, 22, 0.50) 100%
        );
    backdrop-filter: none;
    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.property-card__icon {
    color: #ffffff;
    opacity: 1;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.55));
}

.property-card__overlay h3 {
    margin: 0;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.05;
    font-weight: 800;
    text-shadow:
        0 4px 12px rgba(0, 0, 0, 0.75),
        0 1px 3px rgba(0, 0, 0, 0.8);
}

.property-card__overlay p {
    margin: 0;
    max-width: 470px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
    text-shadow:
        0 3px 10px rgba(0, 0, 0, 0.78),
        0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Hover / interaction */
.property-card:hover .property-card__image img {
    filter: brightness(0.90) saturate(1.04);
}

.property-card:hover .property-card__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(2, 13, 22, 0.18) 0%,
            rgba(2, 13, 22, 0.34) 48%,
            rgba(2, 13, 22, 0.60) 100%
        );
    transform: translateY(-3px);
    backdrop-filter: none;
}


/* =====================================================
   TARJETAS DE SERVICIO · INTERACCIÓN Y RESPONSIVE
===================================================== */

.property-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 20px;
    color: #0b2742;
    background: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(11, 39, 66, 0.14);
    border-radius: 9px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.property-card__button:hover {
    color: #ffffff;
    background: #0b2742;
    box-shadow: 0 10px 24px rgba(11, 39, 66, 0.22);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .property-services {
        padding: 76px 5%;
    }

    .property-services__grid {
        grid-template-columns: 1fr;
    }

    .property-card__image {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .property-card__overlay {
        padding: 20px;
        gap: 10px;
    }

    .property-card__overlay h3 {
        font-size: 30px;
    }
}

@media (max-width: 600px) {

    .property-card {
        border-radius: 16px;
    }

    .property-card__image {
        height: auto;
        min-height: 0;
        aspect-ratio: 6 / 5;
    }

    .property-card__overlay {
        padding: 18px 20px;
        gap: 8px;
        overflow: hidden;
    }

    .property-card__overlay h3 {
        width: 100%;
        max-width: 100%;
        font-size: 24px;
    }

    .property-card__overlay p {
        width: 100%;
        max-width: 100%;
        font-size: 14px;
        line-height: 1.45;
        overflow-wrap: break-word;
    }

    .property-card__button {
        width: min(100%, 300px);
        max-width: 100%;
        min-height: 44px;
        padding: 10px 12px;
        line-height: 1.25;
        white-space: normal;
    }
}
/* =====================================================
   PREPARACIÓN DE LA SECCIÓN PARA SCROLLTRIGGER
===================================================== */

.property-services__heading h2,
.property-services__heading p,
.property-services__eyebrow,
.property-services__grid,
.property-card {
    will-change: transform, opacity;
}

/*
   En tablet y celular dejamos que la sección crezca
   normalmente porque no usamos pin.
*/
@media (max-width: 1000px) {

    .property-services__heading {

        display: flex;
        flex-direction: column;

        align-items: center;
    }

    .property-services__grid {
        transform-origin: center top;
    }
}

/*
   En personas que desactivan animaciones,
   todo se muestra normalmente.
*/
@media (prefers-reduced-motion: reduce) {
    .property-services__heading h2,
    .property-services__heading p,
    .property-services__eyebrow,
    .property-services__grid,
    .property-card {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =====================================================
   ANIMACIÓN CINEMÁTICA DEL HERO
===================================================== */

.hero-content {
    perspective: 1000px;
}

.hero-content-text {
    transform-origin: left center;
    will-change: transform, opacity;
}

.hero-title-line {
    display: block;
    will-change: transform, opacity, filter;
}

.hero-description,
.hero-buttons a {
    will-change: transform, opacity;
}

.hero-buttons a {
    transform-origin: center center;
}

/* =====================================================
   SECCIÓN 3 — RESULTADOS REALES
===================================================== */

.results-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 40px 4% 46px;
    color: #0b2742;

    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(87, 151, 221, 0.16),
            transparent 26%
        ),
        radial-gradient(
            circle at 5% 92%,
            rgba(135, 177, 221, 0.13),
            transparent 24%
        ),
        linear-gradient(
            145deg,
            #eef3f8 0%,
            #f7f9fc 48%,
            #e8f0f7 100%
        );
}

.results-section::before {
    content: "";
    position: absolute;
    top: 35px;
    right: 4%;

    width: 170px;
    height: 170px;

    z-index: -1;
    opacity: 0.18;

    background-image:
        radial-gradient(
            circle,
            #4b83bc 1.4px,
            transparent 1.4px
        );

    background-size: 14px 14px;
}

.results-section__decoration {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.results-section__decoration--one {
    top: -150px;
    right: -110px;

    width: 340px;
    height: 340px;

    border: 1px solid rgba(43, 109, 177, 0.12);

    box-shadow:
        0 0 0 42px rgba(43, 109, 177, 0.025),
        0 0 0 84px rgba(43, 109, 177, 0.018);
}

.results-section__decoration--two {
    bottom: -190px;
    left: -160px;

    width: 360px;
    height: 360px;

    border: 1px solid rgba(43, 109, 177, 0.08);

    box-shadow:
        0 0 0 46px rgba(43, 109, 177, 0.022),
        0 0 0 92px rgba(43, 109, 177, 0.014);
}

.results-section__container {
    width: min(1460px, 100%);
    margin: 0 auto;
}

.results-section__heading {
    width: min(980px, 100%);
    margin: 0 auto 24px;
    text-align: center;
}

.results-section__title {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: baseline;
    gap: 0 0.18em;

    margin: 0;

    color: #0a2540;

    font-size: clamp(32px, 3.5vw, 50px);
    line-height: 1;
    font-weight: 760;
    letter-spacing: -0.04em;
}

.results-title-mask {
    display: inline-block;
    overflow: hidden;
    padding: 0.06em 0.02em;
}

.results-title-word {
    display: inline-block;
    will-change: transform, opacity;
}

.results-title-word--accent {
    color: transparent;

    background:
        linear-gradient(
            90deg,
            #1a5c9e 0%,
            #3987d5 52%,
            #6aa8e8 100%
        );

    background-clip: text;
    -webkit-background-clip: text;
}

.results-section__description {
    width: min(680px, 100%);
    margin: 12px auto 0;

    color: #64768a;

    font-size: 15px;
    line-height: 1.55;
}

/* =====================================================
   COMPARADOR
===================================================== */

.results-compare-grid {
    width: min(1380px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.results-compare {
    position: relative;
    width: 100%;
    margin: 0;
}

.results-compare__media {
    position: relative;

    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;

    overflow: hidden;

    border: 1px solid rgba(12, 50, 82, 0.13);
    border-radius: 22px;

    background-color: #dce5ed;

    box-shadow:
        0 24px 58px rgba(23, 55, 83, 0.17),
        0 2px 0 rgba(255, 255, 255, 0.8) inset;

    transform-origin: center center;
    will-change: transform, opacity, clip-path;
}

.results-compare--square .results-compare__media {
    aspect-ratio: 16 / 10;
}

.results-compare--wide .results-compare__media {
    aspect-ratio: 16 / 10;
}

@media (max-width: 900px) {
    .results-compare-grid {
        width: min(720px, 100%);
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.results-compare__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    pointer-events: none;
    user-select: none;

    will-change: transform;
}

/*
   La imagen limpia aparece a la derecha.
   De esta forma ANTES queda a la izquierda
   y DESPUÉS queda a la derecha.
*/
.results-compare__after {
    position: absolute;
    inset: 0;
    z-index: 2;

    clip-path:
        inset(
            0 0 0 var(--position)
        );
}

.results-compare__label {
    position: absolute;
    bottom: 20px;
    z-index: 5;

    min-width: 96px;
    padding: 10px 17px;

    border-radius: 999px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-align: center;
    text-transform: uppercase;

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.2);
}

.results-compare__label--before {
    left: 20px;
    background: rgba(6, 20, 32, 0.82);
}

.results-compare__label--after {
    right: 20px;
    background: rgba(22, 103, 210, 0.9);
}

.results-compare__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--position);
    z-index: 6;

    width: 4px;

    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.98) 18%,
        rgba(255, 255, 255, 0.98) 82%,
        rgba(255, 255, 255, 0.15) 100%
    );

    transform: translateX(-50%);

    box-shadow:
        0 0 18px rgba(255, 255, 255, 0.28),
        0 0 14px rgba(0, 0, 0, 0.12);
}

.results-compare__handle {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    color: #0b2742;
    background: #ffffff;

    border: 4px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.22),
        0 0 0 6px rgba(255, 255, 255, 0.12);

    pointer-events: none;

    transform: translate(-50%, -50%);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.results-compare:hover .results-compare__handle {
    transform:
        translate(-50%, -50%)
        scale(1.08);
}



.results-compare__range {
    position: absolute;
    inset: 0;
    z-index: 10;

    width: 100%;
    height: 100%;

    margin: 0;

    opacity: 0;
    cursor: ew-resize;
}

/* =====================================================
   BOTÓN FINAL
===================================================== */

.results-section__action {
    margin-top: 34px;
    text-align: center;
}

.results-gallery-button {
    position: relative;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    min-height: 54px;
    padding: 12px 22px 12px 26px;

    color: #ffffff;
    background: #0b2742;

    border: 1px solid #0b2742;
    border-radius: 10px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;

    box-shadow:
        0 14px 30px rgba(11, 39, 66, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.results-gallery-button::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            #176bd0,
            #3a91ec
        );

    transform: scaleX(0);
    transform-origin: left center;

    transition:
        transform 0.4s
        cubic-bezier(0.22, 1, 0.36, 1);
}

.results-gallery-button span {
    position: relative;
    z-index: 1;
}

.results-gallery-button__arrow {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    color: #0b2742;
    background: #ffffff;

    border-radius: 50%;

    font-size: 17px;

    transition: transform 0.3s ease;
}

.results-gallery-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 36px rgba(11, 39, 66, 0.24);
}

.results-gallery-button:hover::before {
    transform: scaleX(1);
}

.results-gallery-button:hover
.results-gallery-button__arrow {
    transform: translateX(4px);
}

.results-section__action p {
    margin: 13px 0 0;

    color: #718195;

    font-size: 13px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 700px) {
    .results-section {
        padding: 40px 4% 46px;
    }

    .results-section__heading {
        margin-bottom: 20px;
    }

    .results-section__title {
        flex-direction: column;
        align-items: center;
        font-size: clamp(32px, 3.5vw, 50px);
        line-height: 1.02;
    }

    .results-section__description {
        margin-top: 14px;
        font-size: 14px;
    }

    .results-compare__media {
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
        border-radius: 17px;
    }

    .results-compare__handle {
        width: 50px;
        height: 50px;
    }

    .results-compare__label {
        bottom: 13px;
        min-width: 76px;
        padding: 9px 12px;
        font-size: 9px;
    }

    .results-compare__label--before {
        left: 12px;
    }

    .results-compare__label--after {
        right: 12px;
    }

    .results-section__action {
        margin-top: 28px;
    }

    .results-gallery-button {
        width: 100%;
        max-width: 330px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .results-title-word,
    .results-section__description,
    .results-compare__media,
    .results-compare__divider,
    .results-compare__label,
    .results-section__action {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
    }
}

/* =====================================================
   ¿POR QUÉ ELEGIR ULTRA WASH?
===================================================== */
.why-story {
    position: relative;
    margin-top: -1px;
    border-top: 0;
    width: 100%;
    min-height: 100svh;
    overflow: hidden;
    color: #0a2945;
    background:
        radial-gradient(circle at 88% 12%, rgba(93, 164, 229, 0.18), transparent 28%),
        radial-gradient(circle at 10% 88%, rgba(109, 174, 232, 0.12), transparent 24%),
        linear-gradient(135deg, #f6f9fc 0%, #edf5fc 100%);
}

.why-story__background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.why-story__background::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: radial-gradient(circle, rgba(44, 119, 183, 0.3) 1px, transparent 1px);
    background-size: 18px 18px;
}

.why-story__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.28;
}

.why-story__glow--one {
    top: 4%;
    right: 4%;
    width: 260px;
    height: 260px;
    background: rgba(105, 177, 239, 0.35);
}

.why-story__glow--two {
    bottom: 3%;
    left: 3%;
    width: 220px;
    height: 220px;
    background: rgba(121, 184, 234, 0.25);
}

.why-story__stage {
    position: relative;
    width: min(1440px, 100%);
    height: 100svh;
    min-height: 680px;
    margin: 0 auto;
    overflow: hidden;
    perspective: 1200px;
}

.why-story__scene {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.87fr);
    align-items: center;
    gap: clamp(46px, 6vw, 96px);
    width: 100%;
    height: 100%;
    padding: 104px 6% 54px;
}

.why-story__scene--two {
    grid-template-columns: minmax(360px, 0.87fr) minmax(0, 1.03fr);
}

.why-story__media {
    position: relative;
    width: 100%;
    height: min(62vh, 570px);
    min-height: 430px;
    overflow: hidden;
    border-radius: 24px;
    background: #dfe9f2;
    box-shadow: 0 24px 58px rgba(19, 61, 96, 0.15);
    will-change: transform, opacity, filter;
}

.why-story__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 65%, rgba(7, 28, 45, 0.08));
}

.why-story__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.why-story__media--one img { object-position: 50% 50%; }
.why-story__media--two img { object-position: 50% 50%; }

.why-story__content {
    position: relative;
    width: 100%;
    max-width: 620px;
    will-change: transform, opacity, filter;
}

.why-story__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: #176dbc;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.why-story__eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background: #176dbc;
}

.why-story__content h2 {
    margin: 0;
    color: #092844;
    font-size: clamp(46px, 5vw, 76px);
    line-height: 0.96;
    letter-spacing: -0.045em;
}

.why-story__content p {
    max-width: 590px;
    margin-top: 28px;
    color: #597086;
    font-size: 17px;
    line-height: 1.7;
}

.why-story__button,
.why-story__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 28px;
    font-weight: 750;
}

.why-story__button {
    min-height: 50px;
    padding: 13px 23px;
    border-radius: 10px;
    color: #fff;
    background: #0a2f50;
    box-shadow: 0 14px 30px rgba(10, 47, 80, 0.18);
}

.why-story__link { color: #176dbc; }

.why-story__progress {
    position: absolute;
    top: 50%;
    right: 28px;
    z-index: 8;
    width: 3px;
    height: 150px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(19, 80, 133, 0.14);
    transform: translateY(-50%);
}

.why-story__progress-line {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(to bottom, #176dbc, #6cace7);
    transform: scaleY(0);
    transform-origin: top center;
}

.why-story__scene,
.why-story__media,
.why-story__content {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@media (max-width: 900px) {
    .why-story { min-height: calc(100svh - 72px); }

    .why-story__stage {
        height: calc(100svh - 72px);
        min-height: 620px;
    }

    .why-story__scene,
    .why-story__scene--two {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(240px, 43%) 1fr;
        grid-template-areas: "media" "content";
        align-content: center;
        gap: 18px;
        padding: clamp(32px, 5vh, 46px) clamp(18px, 5vw, 34px) 22px;
    }

    .why-story__media,
    .why-story__media--one,
    .why-story__media--two {
        grid-area: media;
        height: 100%;
        min-height: 240px;
        border-radius: 18px;
    }

    .why-story__content,
    .why-story__content--one,
    .why-story__content--two {
        grid-area: content;
        align-self: start;
        max-width: 100%;
        padding: 0 2px;
    }

    .why-story__eyebrow {
        margin-bottom: 10px;
        font-size: 11px;
        letter-spacing: 0.14em;
    }

    .why-story__eyebrow::before { width: 34px; }

    .why-story__content h2 {
        font-size: clamp(28px, 7.2vw, 42px);
        line-height: 1;
    }

    .why-story__content p {
        margin-top: 13px;
        font-size: clamp(14px, 3.7vw, 17px);
        line-height: 1.5;
    }

    .why-story__button,
    .why-story__link { margin-top: 15px; }

    .why-story__progress {
        right: 7px;
        width: 2px;
        height: 145px;
    }
}

@media (max-width: 520px) {
    .why-story__stage { min-height: 590px; }

    .why-story__scene,
    .why-story__scene--two {
        grid-template-rows: minmax(220px, 40%) 1fr;
        gap: 14px;
        padding: 30px 18px 16px;
    }

    .why-story__media,
    .why-story__media--one,
    .why-story__media--two {
        min-height: 220px;
        border-radius: 16px;
    }

    .why-story__content h2 {
        font-size: clamp(27px, 8.1vw, 36px);
    }

    .why-story__content p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.44;
    }

    .why-story__button {
        width: 100%;
        min-height: 46px;
        padding: 10px 14px;
        font-size: 12px;
    }
}

@media (max-width: 520px) and (max-height: 720px) {
    .why-story__stage { min-height: 545px; }
    .why-story__scene,
    .why-story__scene--two {
        grid-template-rows: 205px 1fr;
        gap: 10px;
        padding-top: 28px;
        padding-bottom: 10px;
    }
    .why-story__media,
    .why-story__media--one,
    .why-story__media--two { min-height: 205px; }
    .why-story__eyebrow { margin-bottom: 6px; font-size: 10px; }
    .why-story__content h2 { font-size: clamp(24px, 7.5vw, 32px); }
    .why-story__content p { margin-top: 8px; font-size: 13px; }
    .why-story__button,
    .why-story__link { margin-top: 9px; }
}

@media (prefers-reduced-motion: reduce) {
    .why-story__scene--two { display: none !important; }
    .why-story__scene--one,
    .why-story__media--one,
    .why-story__content--one {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        filter: none !important;
    }
}

/* ===== AJUSTES FINOS SECCIÓN 3 ===== */
@media (min-width: 901px) {
    /* Las dos escenas deben ocupar mejor el alto disponible */
    .why-story__scene,
    .why-story__scene--two {
        min-height: clamp(720px, 84vh, 860px);
        gap: clamp(38px, 4vw, 64px);
        padding: 72px 3.8% 72px;
        align-items: center;
    }

    .why-story__content,
    .why-story__content--one,
    .why-story__content--two {
        width: 100%;
        max-width: 640px;
    }

    .why-story__content h2 {
        font-size: clamp(56px, 4.8vw, 80px);
        line-height: 0.95;
        margin-bottom: 24px;
    }

    .why-story__content p {
        max-width: 610px;
        margin-top: 0;
        margin-bottom: 24px;
        font-size: 17px;
        line-height: 1.7;
    }

    /* La imagen debe crecer en alto para llenar mejor la escena */
    .why-story__media,
    .why-story__media--one,
    .why-story__media--two {
        width: 100%;
        height: min(64vh, 620px);
        min-height: 520px;
    }

    .why-story__media img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    /* Botones de ambas escenas con el mismo estilo */
    .why-story__button,
    .why-story__link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: fit-content;
        max-width: 100%;
        min-height: 54px;
        padding: 14px 26px;
        margin-top: 22px;
        border-radius: 14px;
        background: #0d3d6b;
        color: #ffffff;
        text-decoration: none;
        font-weight: 700;
        line-height: 1.2;
        white-space: nowrap;
        box-shadow: 0 12px 24px rgba(13, 61, 107, 0.18);
        transition:
            background 0.25s ease,
            transform 0.25s ease,
            box-shadow 0.25s ease,
            color 0.25s ease;
    }

    .why-story__button:hover,
    .why-story__link:hover {
        background: #14518b;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 16px 28px rgba(13, 61, 107, 0.24);
    }

    .why-story__button span,
    .why-story__link span {
        transition: transform 0.25s ease;
    }

    .why-story__button:hover span:last-child,
    .why-story__link:hover span:last-child {
        transform: translateX(3px);
    }

    /* Barra lateral */
    .why-story__progress {
        right: 14px;
        z-index: 30;
        width: 4px;
        height: 180px;
        background: rgba(19, 80, 133, 0.24);
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.38);
        pointer-events: none;
    }

    .why-story__progress-line {
        box-shadow: 0 0 10px rgba(23, 109, 188, 0.42);
    }
}
 /* ===== FIN AJUSTES FINOS SECCIÓN 3 ===== */

 /* =====================================================
   AJUSTE RESPONSIVE INICIO · SERVICIOS
   Corrige espacio vertical excesivo
===================================================== */

@media (max-width: 1000px) {

    .property-services {
        padding-top: 42px;
        padding-bottom: 54px;
    }

    .property-services__heading {
        min-height: 0;
        height: auto;

        margin-bottom: 30px;
        padding: 0;

        justify-content: flex-start;
    }

    .property-services__grid {
        padding-top: 0;
    }
}


@media (max-width: 600px) {

    .property-services {
        padding:
            58px
            20px
            46px;
    }

    .property-services__heading {
        margin-bottom: 28px;
    }

    .property-services__eyebrow {
        margin-bottom: 10px;
    }

    .property-services__heading h2 {
        font-size: 28px;
        line-height: 1.08;
    }

    .property-services__heading p {
        margin-top: 12px;
        font-size: 16px;
        line-height: 1.55;
    }

    .property-services__grid {
        padding-top: 0;
        gap: 16px;
    }
}

/* === ULTRA WASH HOME SECTION CENTERING <= 520PX === */
@media (max-width: 520px) {
    body.home-page .property-services__heading,
    body.home-page .property-card__overlay,
    body.home-page .why-story__content,
    body.home-page .results-section__heading,
    body.home-page .results-section__action {
        text-align: center;
    }

    body.home-page .property-services__heading p,
    body.home-page .why-story__content p,
    body.home-page .results-section__description {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    body.home-page .why-story__content,
    body.home-page .why-story__content--one,
    body.home-page .why-story__content--two {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }

    body.home-page .why-story__eyebrow {
        width: 100%;
        justify-content: center;
    }

    body.home-page .why-story__button {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    body.home-page .why-story__link {
        display: flex;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    body.home-page .results-gallery-button {
        margin-left: auto;
        margin-right: auto;
    }
}
/* === /ULTRA WASH HOME SECTION CENTERING <= 520PX === */

/* === ULTRA WASH SMALL MOBILE CONTENT CENTERING - HARDENED === */
@media (max-width: 520px) {
    body.home-page .property-services__container,
    body.home-page .property-services__heading,
    body.home-page .property-services__grid,
    body.home-page .property-card,
    body.home-page .why-story__scene,
    body.home-page .why-story__content,
    body.home-page .results-section__container,
    body.home-page .results-section__heading,
    body.home-page .results-section__action {
        margin-left: auto;
        margin-right: auto;
    }


    body.home-page .why-story__content {
        justify-self: center;
        width: 100%;
    }

    body.home-page .why-story__eyebrow,
    body.home-page .results-section__heading {
        justify-content: center;
    }
}
/* === /ULTRA WASH SMALL MOBILE CONTENT CENTERING - HARDENED === */

/* =====================================================
   HOME · SECTION 2 · ALTURA NATURAL EN ESCRITORIO
===================================================== */
@media (min-width: 1001px) {
    body.home-page .property-services {
        min-height: calc(100svh - 72px);
        display: flex;
        align-items: center;
    }
}

/* =========================================================
   HOME · SHARED EXPERIENCES
   Replica visual de la franja de reseñas de Gallery.
========================================================= */

.home-gallery-reviews {
    --gallery-blue: #128fe8;
    --gallery-navy: #061f31;
}

.gallery-customer-reviews {
    position: relative;
    padding: clamp(44px, 4.8vw, 66px) 0 clamp(48px, 5vw, 70px);
    overflow: hidden;
    border-top: 1px solid rgba(8, 66, 102, 0.13);
    border-bottom: 1px solid rgba(8, 66, 102, 0.10);
    background: linear-gradient(135deg, #d7ebf5 0%, #e4f2f9 48%, #d5eaf5 100%);
}

.gallery-customer-reviews__container {
    width: min(1420px, calc(100% - 64px));
    margin: 0 auto;
}

.gallery-customer-reviews__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 25px;
}

.gallery-customer-reviews__eyebrow {
    margin: 0 0 7px;
    color: var(--gallery-blue);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.gallery-customer-reviews__heading h2 {
    margin: 0;
    color: var(--gallery-navy);
    font-size: clamp(1.75rem, 2.5vw, 2.7rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.gallery-customer-reviews__share {
    min-height: 44px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border: 1px solid var(--gallery-navy);
    border-radius: 8px;
    color: #fff;
    background: var(--gallery-navy);
    font-size: 0.78rem;
    font-weight: 850;
    text-decoration: none;
    transition: transform 220ms ease, background-color 220ms ease;
}

.gallery-customer-reviews__share:hover,
.gallery-customer-reviews__share:focus-visible {
    transform: translateY(-2px);
    background: #0d6396;
}

.gallery-customer-reviews__marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 22px 18px 24px;
    border: 1px solid rgba(8, 66, 102, 0.11);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.gallery-customer-reviews__track {
    --reviews-duration: 42s;
    display: flex;
    width: max-content;
    animation: galleryReviewsMarquee var(--reviews-duration) linear infinite;
    will-change: transform;
}

.gallery-customer-reviews__marquee:hover .gallery-customer-reviews__track,
.gallery-customer-reviews__marquee:focus-within .gallery-customer-reviews__track {
    animation-play-state: paused;
}

.gallery-customer-reviews__group {
    display: flex;
    align-items: stretch;
    gap: 16px;
    padding-right: 16px;
}

@keyframes galleryReviewsMarquee {
    from { transform: translate3d(-50%, 0, 0); }
    to { transform: translate3d(0, 0, 0); }
}

.gallery-customer-review {
    position: relative;
    width: 335px;
    min-height: 176px;
    flex: 0 0 335px;
    display: grid;
    grid-template-columns: 1fr 92px;
    grid-template-rows: auto 1fr;
    gap: 12px 14px;
    overflow: hidden;
    padding: 17px;
    border: 1px solid rgba(6, 60, 94, 0.18);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(16, 60, 87, 0.16);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.gallery-customer-review::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #128fe8, #5fc2f4);
}

.gallery-customer-review:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 143, 232, 0.30);
    box-shadow: 0 23px 48px rgba(16, 60, 87, 0.22);
}

.gallery-customer-review__profile {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-customer-review__avatar {
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(18, 143, 232, 0.16);
    border-radius: 50%;
    color: #0879bd;
    background: #eef9ff;
    font-size: 0.72rem;
    font-weight: 900;
}

.gallery-customer-review__identity { min-width: 0; }

.gallery-customer-review__name {
    display: block;
    overflow: hidden;
    color: var(--gallery-navy);
    font-size: 0.82rem;
    font-weight: 850;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.gallery-customer-review__source {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    margin-top: 4px;
    padding: 3px 7px;
    border: 1px solid rgba(8, 66, 102, 0.10);
    border-radius: 999px;
    color: #617b8b;
    background: #edf4f7;
    font-size: 0.57rem;
    font-weight: 800;
}

.gallery-customer-review__source--real {
    color: #08734f;
    border-color: rgba(14, 132, 91, 0.18);
    background: #e5f6ef;
}

.gallery-customer-review__stars {
    display: flex;
    gap: 2px;
    margin-top: 7px;
    color: #ffb400;
    font-size: 0.82rem;
}

.gallery-customer-review__stars .is-empty { color: #d6dee4; }

.gallery-customer-review__quote {
    grid-column: 1;
    margin: 0;
    color: #536b7b;
    font-size: 0.76rem;
    line-height: 1.48;
    align-self: start;
}

.gallery-customer-review__media {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: stretch;
    min-height: 128px;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: 11px;
    background: #dbe8ee;
}

.gallery-customer-review__media--compare {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-customer-review__photo {
    position: relative;
    min-width: 0;
    display: block;
    overflow: hidden;
    border: 0;
    background: #dbe8ee;
}

.gallery-customer-review__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gallery-customer-review__photo-label {
    position: absolute;
    left: 5px;
    bottom: 5px;
    padding: 3px 5px;
    border-radius: 999px;
    color: #fff;
    background: rgba(6, 31, 47, 0.78);
    font-size: 0.48rem;
    font-weight: 900;
}

.gallery-customer-review__photo-label--after {
    left: auto;
    right: 5px;
    background: rgba(18, 143, 232, 0.90);
}

.gallery-customer-reviews__note {
    margin: 15px 0 0;
    color: #82929d;
    font-size: 0.66rem;
    text-align: right;
}

@media (max-width: 700px) {
    .gallery-customer-reviews__container { width: calc(100% - 28px); }

    .gallery-customer-reviews__heading {
        align-items: center;
        flex-direction: column;
        gap: 17px;
        margin-bottom: 18px;
        text-align: center;
    }

    .gallery-customer-reviews__heading > div { width: 100%; }

    .gallery-customer-reviews__share {
        width: min(100%, 360px);
        margin-inline: auto;
    }

    .gallery-customer-review__media { min-height: 112px; }

    .gallery-customer-reviews__note {
        margin-inline: auto;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-customer-reviews__track { animation: none; }
    .gallery-customer-reviews__group:nth-child(2) { display: none; }
    .gallery-customer-reviews__share,
    .gallery-customer-review { transition: none; }
}

/* =========================================================
   ULTRA WASH · WHY STORY FINAL
   Dos secciones normales + entrada visual.
========================================================= */

body.home-page
.why-story.why-story--normal {
    position:
        relative !important;

    width:
        100%;

    height:
        auto !important;

    min-height:
        0 !important;

    overflow:
        hidden !important;
}


body.home-page
.why-story--normal
.why-story__stage {
    position:
        relative !important;

    inset:
        auto !important;

    top:
        auto !important;

    width:
        min(1440px, 100%);

    height:
        auto !important;

    min-height:
        0 !important;

    margin:
        0 auto;

    overflow:
        visible !important;

    perspective:
        none !important;

    transform:
        none !important;
}


/*
 * Ninguna escena puede quedar absolute, hidden
 * ni fuera del flujo.
 */
body.home-page
.why-story--normal
.why-story__scene,
body.home-page
.why-story--normal
.why-story__scene--one,
body.home-page
.why-story--normal
.why-story__scene--two {
    position:
        relative !important;

    inset:
        auto !important;

    display:
        grid !important;

    width:
        100%;

    height:
        auto !important;

    opacity:
        1 !important;

    visibility:
        visible !important;

    pointer-events:
        auto !important;

    transform:
        none !important;

    filter:
        none !important;
}


body.home-page
.why-story--normal
.why-story__media,
body.home-page
.why-story--normal
.why-story__content {
    opacity:
        1 !important;

    visibility:
        visible !important;

    filter:
        none !important;

    pointer-events:
        auto !important;
}


/* Viejo indicador de storytelling */
body.home-page
.why-story--normal
.why-story__progress,
body.home-page
.why-story--normal
.why-story__progress-line {
    display:
        none !important;
}


/* =========================================================
   COMPUTADORA
========================================================= */

@media (min-width: 901px) {

    body.home-page
    .why-story--normal
    .why-story__scene {
        min-height:
            clamp(
                680px,
                calc(100svh - 72px),
                820px
            ) !important;

        align-items:
            center;

        column-gap:
            clamp(
                44px,
                5vw,
                80px
            );

        padding:
            clamp(
                66px,
                7vh,
                92px
            )
            clamp(
                48px,
                6vw,
                92px
            );
    }


    /*
     * Primera:
     * imagen izquierda / texto derecha
     */
    body.home-page
    .why-story--normal
    .why-story__scene--one {
        grid-template-columns:
            minmax(0, 1.03fr)
            minmax(360px, 0.87fr);
    }


    body.home-page
    .why-story--normal
    .why-story__scene--one
    .why-story__media {
        grid-column:
            1;
    }

    body.home-page
    .why-story--normal
    .why-story__scene--one
    .why-story__content {
        grid-column:
            2;
    }


    /*
     * Segunda:
     * texto izquierda / imagen derecha
     */
    body.home-page
    .why-story--normal
    .why-story__scene--two {
        grid-template-columns:
            minmax(360px, 0.87fr)
            minmax(0, 1.03fr);

        border-top:
            1px solid
            rgba(
                23,
                109,
                188,
                0.11
            );
    }


    body.home-page
    .why-story--normal
    .why-story__scene--two
    .why-story__content {
        grid-column:
            1;
    }

    body.home-page
    .why-story--normal
    .why-story__scene--two
    .why-story__media {
        grid-column:
            2;
    }


    body.home-page
    .why-story--normal
    .why-story__media {
        width:
            100%;

        height:
            min(61vh, 590px);

        min-height:
            450px;
    }
}


/* =========================================================
   TABLET + TELEFONO
========================================================= */

@media (max-width: 900px) {

    body.home-page
    .why-story--normal
    .why-story__scene,
    body.home-page
    .why-story--normal
    .why-story__scene--one,
    body.home-page
    .why-story--normal
    .why-story__scene--two {
        grid-template-columns:
            1fr !important;

        grid-template-rows:
            auto
            auto !important;

        grid-template-areas:
            "media"
            "content" !important;

        min-height:
            0 !important;

        align-content:
            start;

        gap:
            22px;

        padding:
            54px
            clamp(
                18px,
                5vw,
                34px
            );
    }


    body.home-page
    .why-story--normal
    .why-story__scene--two {
        border-top:
            1px solid
            rgba(
                23,
                109,
                188,
                0.11
            );
    }


    body.home-page
    .why-story--normal
    .why-story__media,
    body.home-page
    .why-story--normal
    .why-story__media--one,
    body.home-page
    .why-story--normal
    .why-story__media--two {
        grid-area:
            media !important;

        width:
            100%;

        height:
            auto !important;

        min-height:
            0 !important;

        aspect-ratio:
            4 / 3;
    }


    body.home-page
    .why-story--normal
    .why-story__content,
    body.home-page
    .why-story--normal
    .why-story__content--one,
    body.home-page
    .why-story--normal
    .why-story__content--two {
        grid-area:
            content !important;

        width:
            100%;

        max-width:
            100%;
    }
}


@media (max-width: 520px) {

    body.home-page
    .why-story--normal
    .why-story__scene {
        gap:
            18px;

        padding:
            42px
            18px;
    }
}

/* === ULTRA WASH WHY STORY NO ANIMATION START ===
   Las dos secciones Why Story quedan totalmente estaticas.
========================================================= */

body.home-page
.why-story--no-animation
.why-story__scene,
body.home-page
.why-story--no-animation
.why-story__media,
body.home-page
.why-story--no-animation
.why-story__content,
body.home-page
.why-story--no-animation
.why-story__title,
body.home-page
.why-story--no-animation
.why-story__text,
body.home-page
.why-story--no-animation
.why-story__eyebrow,
body.home-page
.why-story--no-animation
.why-story__button {
    animation:
        none !important;

    transition:
        none !important;

    opacity:
        1 !important;

    visibility:
        visible !important;

    transform:
        none !important;

    filter:
        none !important;
}


body.home-page
.why-story--no-animation
.why-story__scene--one,
body.home-page
.why-story--no-animation
.why-story__scene--two {
    display:
        grid !important;

    opacity:
        1 !important;

    visibility:
        visible !important;

    transform:
        none !important;
}


body.home-page
.why-story--no-animation
.why-story__progress,
body.home-page
.why-story--no-animation
.why-story__progress-line {
    display:
        none !important;
}

/* === ULTRA WASH WHY STORY NO ANIMATION END === */

/* === ULTRA WASH SCENE ONE NO ENTRY START ===
   SOLO primera escena de Why Story.
   La imagen y el texto aparecen directamente.
   No se toca la segunda escena ni la estructura.
========================================================= */

body.home-page
.why-story__scene--one
.why-story__media--one {
    opacity:
        1 !important;

    visibility:
        visible !important;

    transform:
        none !important;

    filter:
        none !important;

    animation:
        none !important;

    transition:
        none !important;
}

body.home-page
.why-story__scene--one
.why-story__content--one {
    opacity:
        1 !important;

    visibility:
        visible !important;

    transform:
        none !important;

    filter:
        none !important;

    animation:
        none !important;

    transition:
        none !important;
}

/* === ULTRA WASH SCENE ONE NO ENTRY END === */

/* === ULTRA WASH WHY INDEPENDENT START ===
   Dos secciones reales e independientes.
   El CSS viejo de .why-story queda intacto pero ya no controla
   la estructura porque ese contenedor dejo de existir en el HTML.
=============================================================== */

body.home-page
.why-section {
    position:
        relative;

    width:
        100%;

    min-height:
        clamp(
            700px,
            86svh,
            900px
        );

    overflow:
        hidden;

    color:
        #0a2945;

    isolation:
        isolate;

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(93, 164, 229, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 88%,
            rgba(109, 174, 232, 0.10),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #f6f9fc 0%,
            #edf5fc 100%
        );
}

body.home-page
.why-section--two {
    border-top:
        1px solid
        rgba(
            18,
            82,
            137,
            0.08
        );

    background:
        radial-gradient(
            circle at 12% 16%,
            rgba(93, 164, 229, 0.13),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 84%,
            rgba(109, 174, 232, 0.09),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #f2f7fb 0%,
            #f8fbfd 100%
        );
}

body.home-page
.why-section__background {
    position:
        absolute;

    inset:
        0;

    z-index:
        -1;

    pointer-events:
        none;

    opacity:
        0.17;

    background-image:
        radial-gradient(
            circle,
            rgba(44, 119, 183, 0.30) 1px,
            transparent 1px
        );

    background-size:
        18px 18px;
}


/*
 * IMPORTANTE:
 * las antiguas escenas dejan de ser absolutas.
 * Ahora cada article vive dentro de su propio section.
 */
body.home-page
.why-section
.why-story__scene,
body.home-page
.why-section
.why-story__scene--one,
body.home-page
.why-section
.why-story__scene--two {
    position:
        relative !important;

    inset:
        auto !important;

    display:
        grid !important;

    width:
        min(
            1440px,
            100%
        ) !important;

    height:
        auto !important;

    min-height:
        clamp(
            700px,
            84svh,
            860px
        ) !important;

    margin:
        0 auto !important;

    padding:
        72px 3.8% !important;

    align-items:
        center !important;

    gap:
        clamp(
            38px,
            4vw,
            64px
        ) !important;

    opacity:
        1 !important;

    visibility:
        visible !important;

    transform:
        none !important;

    filter:
        none !important;

    pointer-events:
        auto !important;
}

body.home-page
.why-section
.why-story__scene--one {
    grid-template-columns:
        minmax(0, 1.03fr)
        minmax(360px, 0.87fr) !important;
}

body.home-page
.why-section
.why-story__scene--two {
    grid-template-columns:
        minmax(360px, 0.87fr)
        minmax(0, 1.03fr) !important;
}


/*
 * Nada del texto se anima o se desplaza.
 */
body.home-page
.why-section
.why-story__content,
body.home-page
.why-section
.why-story__content--one,
body.home-page
.why-section
.why-story__content--two {
    opacity:
        1 !important;

    visibility:
        visible !important;

    transform:
        none !important;

    filter:
        none !important;
}


/*
 * La imagen conserva el diseno actual.
 * GSAP solo controla clip-path.
 */
body.home-page
.why-section
.why-story__media,
body.home-page
.why-section
.why-story__media--one,
body.home-page
.why-section
.why-story__media--two {
    opacity:
        1;

    visibility:
        visible;

    transform:
        none;

    filter:
        none;

    will-change:
        clip-path;
}


/*
 * Linea azul del eyebrow:
 * cada seccion la dibuja de manera independiente.
 */
body.home-page
.why-section
.why-story__eyebrow::before {
    transform:
        scaleX(
            var(
                --why-line-scale,
                1
            )
        );

    transform-origin:
        left center;

    will-change:
        transform;
}


/*
 * No existe barra de progreso entre ambas secciones.
 */
body.home-page
.why-section
.why-story__progress {
    display:
        none !important;
}


@media (max-width: 900px) {

    body.home-page
    .why-section {
        min-height:
            auto;
    }

    body.home-page
    .why-section
    .why-story__scene,
    body.home-page
    .why-section
    .why-story__scene--one,
    body.home-page
    .why-section
    .why-story__scene--two {
        grid-template-columns:
            1fr !important;

        grid-template-rows:
            auto
            auto !important;

        grid-template-areas:
            "media"
            "content" !important;

        min-height:
            auto !important;

        gap:
            18px !important;

        padding:
            50px
            clamp(
                18px,
                5vw,
                34px
            )
            54px !important;
    }

    body.home-page
    .why-section
    .why-story__media,
    body.home-page
    .why-section
    .why-story__media--one,
    body.home-page
    .why-section
    .why-story__media--two {
        grid-area:
            media;

        width:
            100%;

        height:
            clamp(
                260px,
                47svh,
                430px
            );

        min-height:
            260px;
    }

    body.home-page
    .why-section
    .why-story__content,
    body.home-page
    .why-section
    .why-story__content--one,
    body.home-page
    .why-section
    .why-story__content--two {
        grid-area:
            content;

        max-width:
            100%;
    }
}


@media (max-width: 520px) {

    body.home-page
    .why-section
    .why-story__scene,
    body.home-page
    .why-section
    .why-story__scene--one,
    body.home-page
    .why-section
    .why-story__scene--two {
        gap:
            14px !important;

        padding:
            38px
            18px
            42px !important;
    }

    body.home-page
    .why-section
    .why-story__media,
    body.home-page
    .why-section
    .why-story__media--one,
    body.home-page
    .why-section
    .why-story__media--two {
        height:
            clamp(
                230px,
                40svh,
                330px
            );

        min-height:
            230px;
    }
}


@media (prefers-reduced-motion: reduce) {

    body.home-page
    .why-section
    .why-story__media--one,
    body.home-page
    .why-section
    .why-story__media--two {
        clip-path:
            none !important;
    }

    body.home-page
    .why-section
    .why-story__eyebrow::before {
        transform:
            scaleX(1) !important;
    }
}

/* === ULTRA WASH WHY INDEPENDENT END === */

/* === ULTRA WASH ONLY WHY TWO START ===
   La antigua seccion 2 es ahora la unica seccion Why.
   Mantiene su layout y elimina dependencias visuales de la 1.
============================================================= */

body.home-page
.why-section--two {
    border-top:
        0 !important;
}

body.home-page
.why-section--two
.why-story__scene--two {
    opacity:
        1 !important;

    visibility:
        visible !important;

    pointer-events:
        auto !important;
}

body.home-page
.why-section--two
.why-story__media--two,
body.home-page
.why-section--two
.why-story__content--two {
    visibility:
        visible !important;

    filter:
        none !important;
}

@media (prefers-reduced-motion: reduce) {

    body.home-page
    .why-section--two
    .why-story__media--two {
        clip-path:
            none !important;
    }

    body.home-page
    .why-section--two
    .why-story__content--two,
    body.home-page
    .why-section--two
    .why-story__content--two * {
        opacity:
            1 !important;

        visibility:
            visible !important;

        transform:
            none !important;
    }
}

/* === ULTRA WASH ONLY WHY TWO END === */
