/* =========================================================
   NOSOTROS.CSS
   SECCIÓN 1 · PORTADA CON DOS FONDOS
========================================================= */

.about-page {
    background: #071522;
}

.about-main {
    width: 100%;
}

/* =========================================================
   PORTADA
========================================================= */

.about-hero {
    position: relative;

    width: 100%;
    min-height: 100svh;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #ffffff;
    background: #071522;

    isolation: isolate;
}

.about-hero__backgrounds,
.about-hero__background,
.about-hero__overlay {
    position: absolute;
    inset: 0;
}

.about-hero__backgrounds {
    z-index: -3;
}

.about-hero__background {
    opacity: 0;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    transform: scale(1.055);

    transition:
        opacity 1.05s ease,
        transform 7.5s ease;
}

.about-hero__background.is-active {
    opacity: 1;
    transform: scale(1);
}

.about-hero__overlay {
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(3, 18, 30, 0.96) 0%,
            rgba(4, 27, 44, 0.87) 35%,
            rgba(5, 30, 47, 0.48) 63%,
            rgba(5, 25, 39, 0.20) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 17, 28, 0.35) 0%,
            transparent 35%,
            rgba(3, 18, 29, 0.38) 100%
        );
}

.about-hero__container {
    position: relative;
    z-index: 2;

    width:
        min(
            1440px,
            calc(100% - 120px)
        );

    min-height: 100svh;

    margin-inline: auto;

    justify-content: space-between;
    gap: 70px;

    padding:
        clamp(135px, 15vh, 170px)
        0
        92px;
}

.about-hero__eyebrow {
    margin: 0 0 20px;

    color: #68d6ff;

    font-size: 0.76rem;
    font-weight: 950;

    text-transform: uppercase;
}

.about-hero h1 {
    max-width: 760px;

    margin: 0;

    font-size:
        clamp(
            3.4rem,
            6.5vw,
            6.7rem
        );

    font-weight: 950;
    line-height: 0.92;
    letter-spacing: -0.065em;

    text-wrap: balance;
}

.about-hero h1 span {
    display: block;

    color: #7edfff;
}

.about-hero__description {
    max-width: 690px;

    margin: 28px 0 0;

    color:
        rgba(
            235,
            245,
            251,
            0.80
        );

    font-size:
        clamp(
            1rem,
            1.4vw,
            1.18rem
        );

    line-height: 1.65;
}

.about-hero__actions {
    margin-top: 34px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

}

.about-hero__button {
    min-width: 205px;
    min-height: 50px;

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

    padding:
        12px
        20px;

    border:
        1px solid
        transparent;
    border-radius: 11px;

    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;

    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.about-hero__button:hover,
.about-hero__button:focus-visible {
    transform: translateY(-4px);
}

/* =========================================================
   BENEFICIOS
========================================================= */

.about-hero__benefits {
    margin-top: 38px;

    display: grid;
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 14px;
}

.about-hero__benefit {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 10px;
}

.about-hero__benefit > span {
    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(
            111,
            218,
            255,
            0.28
        );
    border-radius: 50%;

    color: #77dfff;

    background:
        rgba(
            32,
            152,
            202,
            0.13
        );

    font-size: 0.75rem;
    font-weight: 950;
}

.about-hero__benefit p {
    margin: 0;

    color:
        rgba(
            229,
            242,
            249,
            0.65
        );

    font-size: 0.66rem;
    line-height: 1.35;
}

.about-hero__benefit strong {
    display: block;

    margin-bottom: 2px;

    font-size: 0.71rem;
    font-weight: 900;
}

/* =========================================================
   INDICADOR DEL FONDO
========================================================= */

.about-hero__visual-status {
    align-self: flex-end;

    margin-bottom: 30px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.about-hero__status-card {
    min-width: 220px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding:
        12px
        14px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.20
        );
    border-radius: 14px;

    background:
        rgba(
            4,
            25,
            39,
            0.62
        );

    box-shadow:
        0 18px 36px
        rgba(0, 0, 0, 0.20);

    backdrop-filter:
        blur(18px)
        saturate(130%);

    -webkit-backdrop-filter:
        blur(18px)
        saturate(130%);
}

.about-hero__status-dot {
    width: 11px;
    height: 11px;

    flex: 0 0 11px;

    border-radius: 50%;

    background: #59e0a7;

    box-shadow:
        0 0 0 6px
        rgba(
            89,
            224,
            167,
            0.12
        );
}

.about-hero__status-card small {
    display: block;

    margin-bottom: 2px;

    color:
        rgba(
            223,
            238,
            246,
            0.62
        );

    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-hero__status-card strong {
    display: block;

    color: #ffffff;

    font-size: 0.78rem;
    font-weight: 900;
}

.about-hero__dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.about-hero__dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;
    border-radius: 999px;

    background:
        rgba(
            255,
            255,
            255,
            0.36
        );

    cursor: pointer;

    transition:
        width 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.about-hero__dot:hover,
.about-hero__dot:focus-visible {
    transform: scale(1.15);
}

.about-hero__dot.is-active {
    width: 28px;

    background: #6edbff;
}

/* =========================================================
   INDICADOR DE SCROLL
========================================================= */

@keyframes about-scroll-indicator {
    0% {
        opacity: 0;
        transform:
            translate(-50%, 0);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform:
            translate(-50%, 9px);
    }
}

/* Marcador temporal para la futura sección 2 */

/* =========================================================
   ENTRADA INICIAL
========================================================= */

.about-hero__eyebrow,
.about-hero h1,
.about-hero__description,
.about-hero__actions,
.about-hero__benefits,
.about-hero__visual-status {
    opacity: 0;

    transform: translateY(22px);
}

.about-page.is-about-ready
.about-hero__eyebrow {
    animation:
        about-content-in
        0.55s
        0.05s
        both;
}

.about-page.is-about-ready
.about-hero h1 {
    animation:
        about-title-in
        0.85s
        0.12s
        cubic-bezier(0.18, 0.88, 0.24, 1)
        both;
}

.about-page.is-about-ready
.about-hero__description {
    animation:
        about-content-in
        0.62s
        0.30s
        both;
}

.about-page.is-about-ready
.about-hero__actions {
    animation:
        about-content-in
        0.62s
        0.40s
        both;
}

.about-page.is-about-ready
.about-hero__benefits {
    animation:
        about-content-in
        0.62s
        0.50s
        both;
}

.about-page.is-about-ready
.about-hero__visual-status {
    animation:
        about-status-in
        0.68s
        0.56s
        both;
}

@keyframes about-title-in {
    0% {
        opacity: 0;

        transform:
            translateY(26px)
            scale(1.08);

        filter: blur(5px);
    }

    100% {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);

        filter: blur(0);
    }
}

@keyframes about-content-in {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes about-status-in {
    from {
        opacity: 0;

        transform:
            translateX(28px)
            translateY(12px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0)
            translateY(0);
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .about-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 18, 30, 0.94) 0%,
                rgba(4, 27, 44, 0.76) 55%,
                rgba(5, 27, 42, 0.38) 100%
            ),
            linear-gradient(
                180deg,
                rgba(3, 18, 29, 0.26) 0%,
                rgba(3, 18, 29, 0.22) 48%,
                rgba(3, 18, 29, 0.72) 100%
            );
    }

    .about-hero__visual-status {
        position: absolute;

        right: 0;
        bottom: 62px;

        margin: 0;
    }

}

/* =========================================================
   TELÉFONO
========================================================= */

@media (max-width: 680px) {

    .about-hero {

        align-items: flex-start;
    }

    .about-hero h1 {
        max-width: 100%;

        font-size:
            clamp(
                2.75rem,
                13vw,
                4.2rem
            );

        line-height: 0.94;
    }

    .about-hero__benefit p {
        font-size: 0.68rem;
    }

    .about-hero__visual-status {
        display: none;
    }

}

/* =========================================================
   TELÉFONOS MUY ESTRECHOS
========================================================= */

@media (max-width: 390px) {

    .about-hero__container {
        width:
            calc(
                100% - 18px
            );

        padding-top: 126px;
    }

    .about-hero h1 {
        font-size:
            clamp(
                2.45rem,
                12.8vw,
                3.45rem
            );
    }

    .about-hero__description {
        font-size: 0.82rem;
    }

}

/* =========================================================
   PANTALLAS BAJAS
========================================================= */

@media
(max-width: 680px)
and
(max-height: 760px) {

    .about-hero__container {
        padding:
            118px
            0
            34px;
    }

    .about-hero__eyebrow {
        margin-bottom: 9px;
    }

    .about-hero h1 {
        font-size:
            clamp(
                2.35rem,
                11vw,
                3.35rem
            );
    }

    .about-hero__description {
        margin-top: 14px;
        line-height: 1.45;
    }

    .about-hero__actions {
        margin-top: 18px;
    }

    .about-hero__benefits {
        margin-top: 18px;
        gap: 7px;
    }

}

/* =========================================================
   MOVIMIENTO REDUCIDO
========================================================= */

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

    .about-hero__background,
    .about-hero__button,
    .about-hero__dot {
        transition: none !important;
    }

    .about-hero__eyebrow,
    .about-hero h1,
    .about-hero__description,
    .about-hero__actions,
    .about-hero__benefits,
    .about-hero__visual-status {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        filter: none !important;
    }

}
/* =========================================================
   AJUSTE FINAL · PRIMERA SECCIÓN NOSOTROS
   Estilo similar a Inicio y Servicios
========================================================= */

.about-hero {
    height: 100svh;
    min-height: 650px;
}

.about-hero__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(4, 10, 15, 0.94) 0%,
            rgba(5, 11, 16, 0.82) 35%,
            rgba(6, 12, 17, 0.48) 62%,
            rgba(5, 10, 15, 0.12) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.16) 0%,
            rgba(0, 0, 0, 0.08) 50%,
            rgba(0, 0, 0, 0.42) 100%
        );
}

.about-hero__container {
    width: min(1440px, calc(100% - 120px));
    min-height: 100%;
    height: 100%;

    padding: 112px 0 46px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-hero__content {
    width: min(900px, 67%);
}

.about-hero__eyebrow {
    margin-bottom: 17px;

    color: #ffffff;

    font-size: 0.73rem;
    letter-spacing: 0.2em;
}

.about-hero h1 {
    width: max-content;
    max-width: 100%;

    font-size: clamp(3.6rem, 5.4vw, 5.8rem);
    line-height: 0.94;
    letter-spacing: -0.058em;

    color: #ffffff;
}

.about-hero h1 .about-hero__title-line {
    display: block;

    color: #ffffff;

    white-space: nowrap;
}

.about-hero__description {
    max-width: 730px;

    margin-top: 23px;

    color: rgba(255, 255, 255, 0.82);

    font-size: clamp(0.96rem, 1.18vw, 1.08rem);
    line-height: 1.55;
}

.about-hero__actions {
    margin-top: 27px;
    gap: 13px;
}

.about-hero__button {
    width: 220px;
    min-width: 220px;
    height: 49px;
    min-height: 49px;

    padding: 0 18px;

    border-radius: 10px;

    font-size: 0.78rem;
}

/* Primer botón negro, igual al estilo usado anteriormente */

.about-hero__button--primary {
    color: #ffffff;

    background: #0c0c0c;

    border-color: #0c0c0c;

    box-shadow:
        0 15px 30px
        rgba(0, 0, 0, 0.25);
}

.about-hero__button--primary:hover,
.about-hero__button--primary:focus-visible {
    color: #ffffff;
    background: #191919;

    box-shadow:
        0 21px 38px
        rgba(0, 0, 0, 0.32);
}

/* Segundo botón transparente con borde blanco */

.about-hero__button--secondary {
    color: #ffffff;

    border-color: rgba(255, 255, 255, 0.65);

    background: rgba(8, 12, 16, 0.18);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about-hero__button--secondary:hover,
.about-hero__button--secondary:focus-visible {
    color: #ffffff;

    border-color: #ffffff;

    background: rgba(255, 255, 255, 0.12);
}

.about-hero__benefits {
    max-width: 780px;

    margin-top: 29px;
    gap: 24px;
}

.about-hero__benefit > span {
    border-color: rgba(255, 255, 255, 0.28);

    color: #ffffff;

    background: rgba(255, 255, 255, 0.10);
}

.about-hero__benefit p {
    color: rgba(255, 255, 255, 0.66);
}

.about-hero__benefit strong {
    color: #ffffff;
}

/* Ya no se mostrarán estos elementos */

.about-hero__visual-status,
.about-hero__scroll {
    display: none !important;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .about-hero {
        min-height: 100svh;
        height: 100svh;
    }

    .about-hero__container {
        width: calc(100% - 52px);

        min-height: 100%;
        height: 100%;

        padding: 118px 0 42px;

        align-items: center;
    }

    .about-hero__content {
        width: min(760px, 88%);
    }

    .about-hero h1 {
        font-size: clamp(3.15rem, 7.2vw, 4.8rem);
    }

    .about-hero__description {
        max-width: 650px;
    }

}

/* =========================================================
   TELÉFONO
========================================================= */

@media (max-width: 680px) {

    .about-hero {
        height: auto;
        min-height: 100svh;
    }

    .about-hero__container {
        width: calc(100% - 24px);

        min-height: 100svh;
        height: auto;

        padding: 116px 0 28px;

        align-items: flex-end;
    }

    .about-hero__content {
        width: 100%;
    }

    .about-hero__eyebrow {
        margin-bottom: 11px;

        font-size: 0.6rem;
    }

    .about-hero h1 {
        width: 100%;

        font-size: clamp(2.25rem, 9.4vw, 3.1rem);
        line-height: 0.96;
    }

    .about-hero__description {
        margin-top: 17px;

        font-size: 0.84rem;
        line-height: 1.48;
    }

    .about-hero__actions {
        width: 100%;

        margin-top: 20px;

        flex-direction: column;
        gap: 8px;
    }

    .about-hero__button {
        width: 100%;
        min-width: 0;
        height: 47px;
        min-height: 47px;
    }

    .about-hero__benefits {
        margin-top: 20px;

        grid-template-columns: 1fr;
        gap: 7px;
    }

}

/* En teléfonos muy pequeños permitimos que el texto se acomode */

@media (max-width: 430px) {

    .about-hero h1 .about-hero__title-line {
        white-space: normal;
    }

}
/* =========================================================
   HOVER FINAL · BOTONES PORTADA NOSOTROS
========================================================= */

.about-hero__button {
    transition:
        transform 0.22s ease,
        background-color 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

/* Los dos botones al colocar el mouse encima */

.about-hero__button--primary:hover,
.about-hero__button--primary:focus-visible,
.about-hero__button--secondary:hover,
.about-hero__button--secondary:focus-visible {
    color: #111111 !important;
    background: #ffffff !important;
    border-color: #ffffff !important;

    transform: translateY(-5px);

    box-shadow:
        0 18px 34px
        rgba(0, 0, 0, 0.32);
}

/* La flecha también se vuelve negra */

.about-hero__button:hover span,
.about-hero__button:focus-visible span {
    color: #111111 !important;
}

/* Al presionar vuelve momentáneamente a su posición */

.about-hero__button:active {
    transform:
        translateY(-1px)
        scale(0.98);
}
/* =========================================================
   SECCIÓN 2 · QUIÉNES SOMOS
========================================================= */

.about-story-section {
    position: relative;
    width: 100%;
    min-height: calc(100svh - 88px);

    display: flex;
    align-items: center;

    overflow: hidden;

    scroll-margin-top: 88px;
}

.about-story-section--about,
.about-story-section--history {
    background:
        radial-gradient(
            circle at 5% 12%,
            rgba(23, 147, 220, 0.08),
            transparent 28%
        ),
        #f5f9fc;
}

.about-story-section--mission {
    background: #ffffff;
}

.about-story-section__container {
    position: relative;
    z-index: 1;

    width: min(1380px, calc(100% - 120px));
    margin-inline: auto;

    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(480px, 1.05fr);

    align-items: center;
    gap: clamp(58px, 7vw, 108px);

    padding:
        clamp(56px, 7vh, 82px)
        0;
}

/* =========================================================
   TEXTO
========================================================= */

.about-story-section__copy {
    max-width: 610px;
}

.about-story-section__title {
    margin: 0 0 24px;

    color: #071d2d;

    font-size:
        clamp(
            3rem,
            4.5vw,
            4.85rem
        );

    font-weight: 950;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.about-story-section__text {
    margin: 20px 0 0;

    color: #587082;

    font-size:
        clamp(
            0.96rem,
            1.1vw,
            1.07rem
        );

    line-height: 1.7;
}

/* =========================================================
   IMÁGENES
========================================================= */

.about-story-section__media {
    position: relative;

    width: 100%;
    margin: 0;

    overflow: hidden;

    aspect-ratio: 16 / 10;

    border-radius: 26px;

    background: #dce7ed;

    box-shadow:
        0 28px 68px
        rgba(7, 36, 55, 0.16);
}

.about-story-section__media::after {
    content: "";

    position: absolute;
    inset: 0;

    border:
        1px solid
        rgba(255, 255, 255, 0.38);
    border-radius: inherit;

    pointer-events: none;
}

.about-story-section__image {
    width: 100%;
    height: 100%;

    display: block;

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

    transition:
        transform 850ms
        cubic-bezier(0.2, 0.75, 0.25, 1);
}

.about-story-section__media:hover
.about-story-section__image {
    transform: scale(1.035);
}

.about-story-section__image--history {
    object-position: 58% center;
}

/* =========================================================
   ENTRADA Y SALIDA CON EL SCROLL
========================================================= */

.about-page.has-about-story-motion
.about-story-section
[data-about-scroll-item] {
    opacity: 0.08;

    filter: blur(7px);

    transition:
        opacity 780ms ease,
        transform 880ms
        cubic-bezier(0.18, 0.88, 0.24, 1),
        filter 780ms ease;
}

.about-page.has-about-story-motion
.about-story-section
[data-about-scroll-item="left"] {
    transform:
        translateX(-72px)
        scale(0.975);
}

.about-page.has-about-story-motion
.about-story-section
[data-about-scroll-item="right"] {
    transform:
        translateX(72px)
        scale(0.975);
}

.about-page.has-about-story-motion
.about-story-section.is-in-view
[data-about-scroll-item] {
    opacity: 1;

    transform:
        translateX(0)
        scale(1);

    filter: blur(0);
}

.about-page.has-about-story-motion
.about-story-section.is-in-view
.about-story-section__media {
    transition-delay: 90ms;
}

.about-page.has-about-story-motion
.about-story-section.is-in-view
.about-story-section__copy {
    transition-delay: 20ms;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .about-story-section {
        min-height: calc(100svh - 82px);
        scroll-margin-top: 82px;
    }

    .about-story-section__container {
        width: calc(100% - 52px);

        grid-template-columns:
            minmax(0, 0.92fr)
            minmax(370px, 1.08fr);

        gap: 42px;

        padding:
            48px
            0;
    }

    .about-story-section__title {
        margin-bottom: 18px;

        font-size:
            clamp(
                2.7rem,
                5.2vw,
                3.8rem
            );
    }

    .about-story-section__text {
        margin-top: 14px;

        font-size: 0.88rem;
    }

}

/* =========================================================
   TELÉFONO
========================================================= */

@media (max-width: 760px) {

    .about-story-section {
        min-height: auto;
        scroll-margin-top: 74px;
    }

    .about-story-section__container {
        width: calc(100% - 24px);

        grid-template-columns: 1fr;
        gap: 24px;

        padding:
            42px
            0;
    }

    .about-story-section__copy {
        max-width: none;
    }

    .about-story-section__title {
        margin-bottom: 16px;

        font-size:
            clamp(
                2.45rem,
                11vw,
                3.25rem
            );
    }

    .about-story-section__text {
        margin-top: 13px;

        font-size: 0.82rem;
        line-height: 1.58;
    }

    .about-story-section__media {
        aspect-ratio: 4 / 3;

        border-radius: 19px;
    }

    .about-story-section--mission
    .about-story-section__copy {
        order: 1;
    }

    .about-story-section--mission
    .about-story-section__media {
        order: 2;
    }

    .about-page.has-about-story-motion
    .about-story-section
    [data-about-scroll-item="left"],
    .about-page.has-about-story-motion
    .about-story-section
    [data-about-scroll-item="right"] {
        transform:
            translateY(42px)
            scale(0.98);
    }

    .about-page.has-about-story-motion
    .about-story-section.is-in-view
    [data-about-scroll-item] {
        transform:
            translateY(0)
            scale(1);
    }

}

/* =========================================================
   MOVIMIENTO REDUCIDO
========================================================= */

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

    .about-page.has-about-story-motion
    .about-story-section
    [data-about-scroll-item] {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }

    .about-story-section__image {
        transition: none !important;
    }

}
/* Primer párrafo de las secciones de historia */
.about-story-section__text--first {
    margin-top: 0;
}
/* =========================================================
   SECCIÓN 5 · LO QUE PUEDES ESPERAR DE ULTRA WASH
========================================================= */

.about-expect {
    --expect-blue: #138dde;
    --expect-dark: #061f31;
    --expect-card: #0d2c43;
    --expect-gap: 16px;

    position: relative;
    width: 100%;
    padding: 58px 0 0;
    overflow: hidden;
    background: #f4f9fc;
    scroll-margin-top: 88px;
}

.about-expect__panel {
    width: min(1460px, calc(100% - 96px));
    margin-inline: auto;
    padding: 34px 0 32px;
    overflow: hidden;
    border-radius: 26px 26px 0 0;
    background:
        radial-gradient(
            circle at 84% 8%,
            rgba(25, 155, 226, 0.18),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #061f31 0%,
            #082941 58%,
            #0a344e 100%
        );
    box-shadow:
        0 24px 58px
        rgba(7, 31, 48, 0.16);
}

.about-expect__heading {
    padding: 0 38px 26px;
    text-align: center;
}

.about-expect__eyebrow {
    margin: 0 0 7px;
    color: #69d5ff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.19em;
}

.about-expect__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.65rem, 2.3vw, 2.5rem);
    font-weight: 950;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

/* =========================================================
   CARRUSEL INFINITO
========================================================= */

.about-expect__marquee {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 18px;
    mask-image:
        linear-gradient(
            to right,
            transparent,
            #000 5%,
            #000 95%,
            transparent
        );
    -webkit-mask-image:
        linear-gradient(
            to right,
            transparent,
            #000 5%,
            #000 95%,
            transparent
        );
}

.about-expect__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation:
        aboutExpectMarquee
        30s
        linear
        infinite;
}

.about-expect__group {
    display: flex;
    gap: var(--expect-gap);
    padding-right: var(--expect-gap);
}

.about-expect__marquee:hover
.about-expect__track,
.about-expect__marquee:focus-within
.about-expect__track,
.about-expect__marquee.is-paused
.about-expect__track {
    animation-play-state: paused;
}

.about-expect-card {
    position: relative;
    flex: 0 0 clamp(245px, 20vw, 292px);
    min-height: 138px;
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: start;
    gap: 15px;
    padding: 21px 20px;
    border:
        1px solid
        rgba(255, 255, 255, 0.08);
    border-radius: 17px;
    background:
        linear-gradient(
            150deg,
            rgba(20, 63, 91, 0.97),
            rgba(9, 41, 63, 0.97)
        );
    box-shadow:
        0 14px 28px
        rgba(0, 0, 0, 0.16);
    transform: translateY(0);
    transition:
        transform 240ms ease,
        border-color 240ms ease,
        box-shadow 240ms ease,
        background 240ms ease;
}

.about-expect-card:hover,
.about-expect-card:focus-within {
    z-index: 5;
    transform: translateY(-9px);
    border-color: rgba(92, 203, 255, 0.48);
    background:
        linear-gradient(
            150deg,
            rgba(21, 82, 119, 0.99),
            rgba(10, 48, 73, 0.99)
        );
    box-shadow:
        0 22px 42px
        rgba(0, 0, 0, 0.28);
}

.about-expect-card__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #40b8ff;
    border:
        1px solid
        rgba(68, 190, 255, 0.28);
    border-radius: 13px;
    background: rgba(18, 117, 174, 0.18);
}

.about-expect-card__icon svg {
    width: 25px;
    height: 25px;
}

.about-expect-card h3 {
    margin: 1px 0 8px;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 850;
    line-height: 1.2;
}

.about-expect-card p {
    margin: 0;
    color: #a9c0cf;
    font-size: 0.76rem;
    line-height: 1.48;
}

@keyframes aboutExpectMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================================================
   CTA COMPACTO
========================================================= */

.about-expect-cta {
    width: min(1460px, calc(100% - 96px));
    margin-inline: auto;
    min-height: 106px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 20px 34px;
    border:
        1px solid
        #d9e8f1;
    border-top: 0;
    border-radius: 0 0 26px 26px;
    background: #ffffff;
    box-shadow:
        0 22px 50px
        rgba(7, 31, 48, 0.11);
}

.about-expect-cta__content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-expect-cta__icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--expect-blue);
    border-radius: 14px;
    background: #eaf6fd;
}

.about-expect-cta__icon svg {
    width: 27px;
    height: 27px;
}

.about-expect-cta h3 {
    margin: 0 0 4px;
    color: #071d2d;
    font-size: clamp(1.08rem, 1.55vw, 1.42rem);
    font-weight: 900;
    line-height: 1.15;
}

.about-expect-cta p {
    margin: 0;
    color: #61798a;
    font-size: 0.82rem;
    line-height: 1.45;
}

.about-expect-cta__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-expect-cta__button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 21px;
    border: 1px solid #0b2030;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 220ms ease,
        background 220ms ease,
        border-color 220ms ease,
        transform 220ms ease;
}

.about-expect-cta__button:hover {
    transform: translateY(-2px);
}

.about-expect-cta__button--primary {
    color: #ffffff;
    background: #0b2030;
}

.about-expect-cta__button--primary:hover {
    color: #071d2d;
    background: #ffffff;
}

.about-expect-cta__button--secondary {
    color: #071d2d;
    background: #ffffff;
}

.about-expect-cta__button--secondary:hover {
    color: #ffffff;
    background: #0b2030;
}

/* =========================================================
   ENTRADA ÚNICA CON SCROLL
========================================================= */

html.about-expect-motion-ready
.about-expect__heading,
html.about-expect-motion-ready
.about-expect__marquee,
html.about-expect-motion-ready
.about-expect-cta {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity 720ms ease,
        transform 820ms
        cubic-bezier(0.18, 0.88, 0.24, 1);
}

html.about-expect-motion-ready
.about-expect.is-visible
.about-expect__heading,
html.about-expect-motion-ready
.about-expect.is-visible
.about-expect__marquee,
html.about-expect-motion-ready
.about-expect.is-visible
.about-expect-cta {
    opacity: 1;
    transform: translateY(0);
}

html.about-expect-motion-ready
.about-expect.is-visible
.about-expect__marquee {
    transition-delay: 110ms;
}

html.about-expect-motion-ready
.about-expect.is-visible
.about-expect-cta {
    transition-delay: 220ms;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 920px) {

    .about-expect {
        padding-top: 42px;
        scroll-margin-top: 82px;
    }

    .about-expect__panel,
    .about-expect-cta {
        width: calc(100% - 40px);
    }

    .about-expect__panel {
        padding-top: 29px;
    }

    .about-expect__heading {
        padding:
            0
            24px
            21px;
    }

    .about-expect-card {
        flex-basis: 260px;
        min-height: 134px;
    }

    .about-expect-cta {
        gap: 20px;
        padding:
            18px
            22px;
    }

    .about-expect-cta__actions {
        flex-shrink: 0;
    }

}

/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 680px) {

    .about-expect {
        --expect-gap: 12px;
        padding-top: 34px;
        scroll-margin-top: 74px;
    }

    .about-expect__panel,
    .about-expect-cta {
        width: calc(100% - 22px);
    }

    .about-expect__panel {
        padding:
            25px
            0
            24px;
        border-radius:
            20px
            20px
            0
            0;
    }

    .about-expect__heading {
        padding:
            0
            17px
            17px;
    }

    .about-expect__eyebrow {
        font-size: 0.62rem;
    }

    .about-expect__title {
        font-size: clamp(1.48rem, 7.2vw, 2rem);
    }

    .about-expect__marquee {
        padding:
            8px
            0
            15px;
        mask-image:
            linear-gradient(
                to right,
                transparent,
                #000 3%,
                #000 97%,
                transparent
            );
        -webkit-mask-image:
            linear-gradient(
                to right,
                transparent,
                #000 3%,
                #000 97%,
                transparent
            );
    }

    .about-expect__track {
        animation-duration: 27s;
    }

    .about-expect-card {
        flex-basis: min(82vw, 272px);
        min-height: 130px;
        grid-template-columns: 42px 1fr;
        gap: 12px;
        padding:
            18px
            17px;
        border-radius: 15px;
    }

    .about-expect-card__icon {
        width: 42px;
        height: 42px;
    }

    .about-expect-card h3 {
        font-size: 0.91rem;
    }

    .about-expect-card p {
        font-size: 0.72rem;
    }

    .about-expect-cta {
        min-height: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding:
            20px
            17px;
        border-radius:
            0
            0
            20px
            20px;
    }

    .about-expect-cta__content {
        align-items: flex-start;
        gap: 13px;
    }

    .about-expect-cta__icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .about-expect-cta__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .about-expect-cta__button {
        min-height: 46px;
        padding:
            0
            11px;
        font-size: 0.72rem;
    }

}

@media (max-width: 410px) {

    .about-expect-cta__actions {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   MOVIMIENTO REDUCIDO
========================================================= */

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

    .about-expect__track {
        animation: none;
    }

    .about-expect__marquee {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
        scrollbar-width: thin;
    }

    .about-expect__group[aria-hidden="true"] {
        display: none;
    }

    html.about-expect-motion-ready
    .about-expect__heading,
    html.about-expect-motion-ready
    .about-expect__marquee,
    html.about-expect-motion-ready
    .about-expect-cta {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-expect-card,
    .about-expect-cta__button {
        transition: none;
    }

}
/* =========================================================
   AJUSTE FINAL RESPONSIVE · TABLETA
   Sobre nosotros · Nuestra misión · Nuestra historia
========================================================= */

/* =========================================================
   TABLETAS GRANDES · 901px A 1050px
   Conserva las dos columnas, pero equilibra las imágenes
========================================================= */

@media (min-width: 901px) and (max-width: 1050px) {

    .about-story-section__media {
        aspect-ratio: 4 / 3;
        max-height: 390px;
    }

    .about-story-section__image {
        object-fit: cover;
        object-position: center;
    }

    .about-story-section__image--history {
        object-position: 58% center;
    }

}

/* =========================================================
   TABLETAS MEDIANAS · 681px A 900px
   Texto completo arriba e imagen controlada debajo
========================================================= */

@media (min-width: 681px) and (max-width: 900px) {

    .about-story-section {
        min-height: auto;
        scroll-margin-top: 82px;
    }

    .about-story-section__container {
        width: calc(100% - 56px);

        grid-template-columns: 1fr;
        gap: 26px;

        padding:
            46px
            0
            52px;
    }

    .about-story-section__copy {
        width: 100%;
        max-width: none;
    }

    .about-story-section__title {
        margin-bottom: 14px;

        font-size:
            clamp(
                2.6rem,
                6.2vw,
                3.3rem
            );

        line-height: 1;
    }

    .about-story-section__text {
        margin-top: 12px;

        font-size: 0.9rem;
        line-height: 1.62;
    }

    .about-story-section__media {
        width: min(100%, 540px);

        justify-self: center;

        aspect-ratio: 16 / 9;

        border-radius: 21px;
    }

    .about-story-section__image {
        width: 100%;
        height: 100%;

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

    .about-story-section__image--history {
        object-position: 58% center;
    }

    /* En misión también dejamos primero el texto */

    .about-story-section--mission
    .about-story-section__copy {
        order: 1;
    }

    .about-story-section--mission
    .about-story-section__media {
        order: 2;
    }

}

/* PATCH 05 - MOBILE CONTENT CENTERING - ABOUT */
@media (max-width: 680px) {
    .about-hero__container {
        align-items: center !important;
        justify-content: center;
    }

    .about-hero__content {
        margin-inline: auto;
        text-align: center;
    }

    .about-hero__description {
        margin-inline: auto;
    }

    .about-hero__actions {
        align-items: center !important;
        justify-content: center;
    }

    .about-hero__benefit {
        justify-content: center;
    }

    .about-story-section__copy {
        margin-inline: auto;
        text-align: center;
    }

    .about-story-section__lead,
    .about-story-section__text {
        margin-inline: auto;
    }

    .about-story-section__media {
        width: min(100%, 620px);
        margin-inline: auto;
    }

    .about-expect__heading {
        text-align: center;
    }

    .about-expect-cta {
        align-items: center !important;
        text-align: center;
    }

    .about-expect-cta__content {
        flex-direction: column;
        align-items: center !important;
        justify-content: center;
        text-align: center;
    }

    .about-expect-cta__actions {
        justify-content: center;
    }
}

/* =========================================================
   PATCH 06 - ABOUT MOBILE FULL BACKGROUND VISIBILITY
   Keeps the About hero as one section and prevents the
   mobile overlay from hiding the lower half of the photo.
========================================================= */
@media (max-width: 680px) {
    .about-hero__backgrounds,
    .about-hero__background,
    .about-hero__overlay {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .about-hero__background {
        background-size: cover;
        background-position: 52% center;
        background-repeat: no-repeat;
    }

    .about-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3, 8, 12, 0.32) 0%,
                rgba(4, 9, 14, 0.46) 28%,
                rgba(4, 10, 15, 0.62) 62%,
                rgba(4, 10, 15, 0.78) 100%
            );
    }
}
/* END PATCH 06 - ABOUT MOBILE FULL BACKGROUND VISIBILITY */
