/* =========================================================
   TICODESIGN
   NOSOTROS.CSS
   HERO + HISTORIA + TIMELINE

   IDENTIDAD
========================================================= */

:root {
    --td-orange: #ff6500;
    --td-orange-dark: #e95700;

    --td-green: #159447;
    --td-green-dark: #0d7135;

    --td-black: #111317;
    --td-black-soft: #272b2f;

    --td-gray: #5f6468;
    --td-gray-dark: #3f4448;

    --td-bg: #f4f3ef;
    --td-white: #ffffff;

    /*
     * Compatibilidad con style.css
     */
    --accent: var(--td-orange);
    --green: var(--td-green);
}


/* =========================================================
   NOSOTROS — HERO
========================================================= */

.about-hero {
    position: relative;

    min-height: 100svh;

    overflow: hidden;

    display: flex;
    align-items: stretch;

    background: #080a0d;

    color: #ffffff;
}


/* =========================================================
   2003 GIGANTE HERO
========================================================= */

.about-hero__year {
    position: absolute;

    z-index: 0;

    left: 50%;
    top: 50%;

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

    font-size:
        clamp(
            220px,
            34vw,
            650px
        );

    font-weight: 700;

    line-height: .7;

    letter-spacing: -.085em;

    white-space: nowrap;

    color:
        rgba(255,255,255,.055);

    pointer-events: none;

    user-select: none;

    animation:
        aboutYearIn
        1.8s
        cubic-bezier(.22,1,.36,1)
        both;
}


/* =========================================================
   ATMÓSFERA HERO
========================================================= */

.about-hero__atmosphere {
    position: absolute;

    inset: 0;

    z-index: 0;

    pointer-events: none;
}


.about-hero__glow {
    position: absolute;

    width: 800px;
    height: 800px;

    right: -300px;
    top: 50%;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,101,0,.16),
            rgba(255,101,0,.035) 40%,
            transparent 70%
        );
}


.about-hero__grid {
    position: absolute;

    inset: 0;

    opacity: .25;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size:
        90px
        90px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 30%,
            #000 75%,
            transparent
        );
}


/* =========================================================
   CONTENEDOR HERO
========================================================= */

.about-hero__inner {
    position: relative;

    z-index: 2;

    width:
        min(
            calc(100% - 64px),
            var(--container)
        );

    min-height: 100svh;

    margin: auto;

    padding:
        clamp(130px, 14vh, 175px)
        0
        55px;

    display: flex;

    flex-direction: column;
}


/* =========================================================
   CABECERA INTERNA HERO
========================================================= */

.about-hero__top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.about-hero__eyebrow {
    display: flex;

    align-items: center;

    gap: 14px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .15em;

    text-transform: uppercase;

    color:
        rgba(255,255,255,.78);
}


.about-hero__eyebrow-line {
    width: 35px;
    height: 2px;

    background:
        var(--td-orange);
}


.about-hero__chapter {
    font-size: 10px;

    font-weight: 500;

    letter-spacing: .13em;

    text-transform: uppercase;

    color:
        rgba(255,255,255,.65);
}


/* =========================================================
   CONTENIDO PRINCIPAL HERO
========================================================= */

.about-hero__content {
    flex: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(270px, .55fr);

    gap:
        clamp(
            50px,
            8vw,
            140px
        );

    align-items: center;
}


/* =========================================================
   TÍTULO HERO
========================================================= */

.about-hero__title {
    position: relative;

    margin: 0;

    max-width: 1100px;

    font-size:
        clamp(
            54px,
            6.4vw,
            108px
        );

    font-weight: 700;

    line-height: .88;

    letter-spacing: -.062em;

    color: #ffffff;
}


.about-hero__title-line {
    display: block;

    color: #ffffff;

    animation:
        aboutTitleIn
        1.1s
        cubic-bezier(.22,1,.36,1)
        both;
}


.about-hero__title-line:nth-child(1) {
    animation-delay: .15s;
}


.about-hero__title-line:nth-child(2) {
    animation-delay: .25s;
}


.about-hero__title-accent {
    display: block;

    margin-top: 15px;

    font-weight: inherit;

    color: var(--td-green);

    animation:
        aboutTitleIn
        1.1s
        cubic-bezier(.22,1,.36,1)
        .38s
        both;
}


.about-hero__title-accent::after {
    content: "";

    display: inline-block;

    width: .13em;
    height: .13em;

    margin-left: .12em;

    border-radius: 50%;

    background:
        var(--td-orange);

    box-shadow:
        0 0 20px
        rgba(255,101,0,.5);

    vertical-align: .15em;
}


/* =========================================================
   INTRO HERO
========================================================= */

.about-hero__intro {
    align-self: end;

    margin-bottom:
        clamp(
            75px,
            10vh,
            130px
        );
}


.about-hero__intro-number {
    display: block;

    margin-bottom: 20px;

    font-size:
        clamp(
            50px,
            5vw,
            76px
        );

    font-weight: 700;

    line-height: .9;

    letter-spacing: -.06em;

    color:
        var(--td-orange);
}


.about-hero__intro p {
    max-width: 350px;

    margin: 0;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.85;

    color:
        rgba(255,255,255,.82);
}


.about-hero__intro p strong {
    color: #ffffff;

    font-weight: 600;
}


/* =========================================================
   ORIGEN TIMELINE EN HERO
========================================================= */

.about-hero__origin {
    position: absolute;

    right:
        clamp(
            40px,
            7vw,
            110px
        );

    bottom: 0;

    display: flex;

    align-items: flex-start;

    gap: 22px;
}


.about-hero__origin-text {
    padding-top: 2px;

    text-align: right;
}


.about-hero__origin-text span {
    display: block;

    margin-bottom: 5px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .13em;

    text-transform: uppercase;

    color:
        rgba(255,255,255,.70);
}


.about-hero__origin-text strong {
    font-size: 12px;

    font-weight: 600;

    letter-spacing: .06em;

    color: #ffffff;
}


/* =========================================================
   MARCADOR HERO
========================================================= */

.about-hero__origin-marker {
    position: relative;

    width: 20px;
    height: 110px;

    display: flex;

    justify-content: center;
}


.about-hero__origin-dot {
    position: absolute;

    z-index: 2;

    top: 4px;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--td-orange);

    box-shadow:
        0 0 0 5px
        rgba(255,101,0,.10),
        0 0 25px
        rgba(255,101,0,.55);
}


.about-hero__origin-ring {
    position: absolute;

    z-index: 1;

    top: -2px;

    width: 20px;
    height: 20px;

    border:
        1px solid
        rgba(255,101,0,.55);

    border-radius: 50%;

    animation:
        aboutOriginPulse
        2.8s
        ease-out
        infinite;
}


.about-hero__origin-line {
    position: absolute;

    top: 14px;
    bottom: 0;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            var(--td-orange),
            rgba(255,101,0,.35)
        );
}


/* =========================================================
   SCROLL HERO
========================================================= */

.about-hero__scroll {
    position: absolute;

    left: 0;
    bottom: 45px;

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .13em;

    text-transform: uppercase;

    color:
        rgba(255,255,255,.65);
}


.about-hero__scroll-arrow {
    color:
        var(--td-orange);

    animation:
        aboutScrollArrow
        2s
        ease-in-out
        infinite;
}


/* =========================================================
   ANIMACIONES HERO
========================================================= */

@keyframes aboutOriginPulse {

    0% {
        transform: scale(.7);
        opacity: .9;
    }

    70% {
        transform: scale(1.7);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}


@keyframes aboutScrollArrow {

    0%,
    100% {
        transform:
            translateY(-3px);
    }

    50% {
        transform:
            translateY(4px);
    }

}


@keyframes aboutTitleIn {

    from {
        opacity: 0;

        transform:
            translateY(35px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes aboutYearIn {

    from {
        opacity: 0;

        transform:
            translate(-50%, -47%)
            scale(.96);
    }

    to {
        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(1);
    }

}


/* =========================================================
   TIMELINE
========================================================= */

.about-timeline {
    position: relative;

    overflow: hidden;

    padding:
        150px
        0
        170px;

    background:
        var(--td-bg);

    color:
        var(--td-black);
}


.about-timeline__inner {
    position: relative;

    width:
        min(
            calc(100% - 64px),
            var(--container)
        );

    margin: auto;
}


/* =========================================================
   LÍNEA CENTRAL
========================================================= */

.about-timeline__rail {
    position: absolute;

    z-index: 1;

    top: -150px;
    bottom: 280px;

    left: 50%;

    width: 2px;

    transform:
        translateX(-50%);
}


.about-timeline__rail-base {
    position: absolute;

    inset: 0;

    background:
        rgba(17,19,23,.18);
}


.about-timeline__rail-progress {
    position: absolute;

    top: 0;
    left: 0;

    width: 2px;
    height: 0;

    background:
        linear-gradient(
            to bottom,
            var(--td-orange),
            var(--td-green)
        );

    box-shadow:
        0 0 14px
        rgba(255,101,0,.20);

    transition:
        height .1s linear;
}


/* =========================================================
   ITEMS TIMELINE
========================================================= */

.timeline-item {
    position: relative;

    z-index: 2;

    min-height: 650px;

    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        90px
        minmax(0,1fr);

    align-items: center;

    gap:
        clamp(
            40px,
            5vw,
            85px
        );

    padding:
        80px
        0;
}


/* =========================================================
   MARCADORES
========================================================= */

.timeline-item__marker {
    position: relative;

    align-self: stretch;

    display: flex;

    justify-content: center;
    align-items: center;
}


.timeline-item__marker::before {
    content: "";

    position: absolute;

    width: 46px;
    height: 1px;

    background:
        rgba(17,19,23,.28);
}


.timeline-item--left
.timeline-item__marker::before {
    right: 50%;
}


.timeline-item--right
.timeline-item__marker::before {
    left: 50%;
}


.timeline-item__marker span {
    position: relative;

    z-index: 4;

    width: 14px;
    height: 14px;

    border-radius: 50%;

    border:
        3px solid
        var(--td-bg);

    background:
        #777c80;

    box-shadow:
        0 0 0 1px
        rgba(17,19,23,.28);

    transition:
        background .5s ease,
        box-shadow .5s ease,
        transform .5s
        cubic-bezier(.22,1,.36,1);
}


.timeline-item.is-active
.timeline-item__marker span {
    background:
        var(--td-orange);

    box-shadow:
        0 0 0 6px
        rgba(255,101,0,.10),
        0 0 23px
        rgba(255,101,0,.30);

    transform:
        scale(1.08);
}


/* =========================================================
   CONTENIDO
   IMPORTANTE:
   NO REDUCIMOS OPACITY DEL CONTENEDOR
========================================================= */

.timeline-item__content {
    max-width: 580px;

    opacity: 1;

    transform:
        translateY(12px);

    transition:
        transform .8s
        cubic-bezier(.22,1,.36,1);
}


.timeline-item.is-active
.timeline-item__content {
    opacity: 1;

    transform:
        translateY(0);
}


.timeline-item--left
.timeline-item__content {
    justify-self: end;
}


.timeline-item--right
.timeline-item__content {
    justify-self: start;
}


/* =========================================================
   CAPÍTULO
========================================================= */

.timeline-item__chapter {
    display: block;

    margin-bottom: 12px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;

    color:
        var(--td-gray-dark);
}


/* =========================================================
   FECHA / CATEGORÍA
========================================================= */

.timeline-item__date {
    display: block;

    margin-bottom: 27px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .11em;

    text-transform: uppercase;

    color:
        var(--td-green-dark);
}


/* =========================================================
   TÍTULOS
========================================================= */

.timeline-item__content h2 {
    margin:
        0
        0
        28px;

    font-size:
        clamp(
            37px,
            4.2vw,
            66px
        );

    font-weight: 700;

    line-height: .98;

    letter-spacing: -.05em;

    color:
        var(--td-black);
}


.timeline-item__content h2 strong {
    display: block;

    font-weight: 700;

    color:
        var(--td-orange);
}


/* Alternancia verde / naranja */

.timeline-item:nth-of-type(2)
.timeline-item__content h2 strong,

.timeline-item:nth-of-type(4)
.timeline-item__content h2 strong,

.timeline-item:nth-of-type(6)
.timeline-item__content h2 strong {
    color:
        var(--td-green);
}


.timeline-item:nth-of-type(1)
.timeline-item__content h2 strong,

.timeline-item:nth-of-type(3)
.timeline-item__content h2 strong,

.timeline-item:nth-of-type(5)
.timeline-item__content h2 strong {
    color:
        var(--td-orange);
}


/* =========================================================
   PÁRRAFOS
========================================================= */

.timeline-item__content p {
    max-width: 500px;

    margin:
        0
        0
        17px;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.8;

    color:
        #353a3e;
}


/* =========================================================
   TAGS
========================================================= */

.timeline-item__tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 28px;
}


.timeline-item__tags span {
    padding:
        8px
        12px;

    border:
        1px solid
        rgba(17,19,23,.22);

    border-radius: 100px;

    font-size: 9px;

    font-weight: 600;

    color:
        #353a3e;

    background:
        rgba(255,255,255,.35);
}


/* =========================================================
   LINKS
========================================================= */

.timeline-item__link {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 15px;

    font-size: 12px;

    font-weight: 700;

    color:
        var(--td-black);
}


.timeline-item__link span {
    color:
        var(--td-orange);

    transition:
        transform .3s ease;
}


.timeline-item__link:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   VISUALES
   TAMPOCO REDUCIMOS OPACITY DEL CONTENEDOR
========================================================= */

.timeline-item__visual {
    position: relative;

    min-height: 370px;

    display: flex;

    align-items: center;
    justify-content: center;

    opacity: 1;

    transform:
        scale(.97);

    transition:
        transform .85s
        cubic-bezier(.22,1,.36,1);
}


.timeline-item.is-active
.timeline-item__visual {
    opacity: 1;

    transform:
        scale(1);
}


/* =========================================================
   2003
========================================================= */

.timeline-item__visual--year span {
    font-size:
        clamp(
            120px,
            14vw,
            230px
        );

    font-weight: 700;

    line-height: .8;

    letter-spacing: -.08em;

    color:
        rgba(17,19,23,.16);
}


/* =========================================================
   CARD WEB
========================================================= */

.timeline-visual-card {
    width:
        min(
            100%,
            470px
        );

    min-height: 310px;

    padding: 40px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border:
        1px solid
        rgba(17,19,23,.15);

    background:
        #ffffff;

    box-shadow:
        0 30px 70px
        rgba(0,0,0,.07);
}


.timeline-visual-card__index {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: .16em;

    color:
        var(--td-green-dark);
}


.timeline-visual-card strong {
    max-width: 330px;

    font-size:
        clamp(
            30px,
            3vw,
            45px
        );

    font-weight: 700;

    line-height: 1;

    letter-spacing: -.045em;

    color:
        var(--td-black);
}


.timeline-visual-card__line {
    width: 60px;
    height: 3px;

    background:
        var(--td-orange);
}


/* =========================================================
   CÓDIGO
========================================================= */

.timeline-code {
    width:
        min(
            100%,
            430px
        );

    min-height: 320px;

    padding: 40px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-radius: 6px;

    background:
        #0c0e11;

    color: #ffffff;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.16);
}


.timeline-code__small {
    margin-bottom: 35px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .15em;

    color:
        rgba(255,255,255,.72);
}


.timeline-code strong {
    font-size:
        clamp(
            55px,
            6vw,
            95px
        );

    font-weight: 700;

    line-height: .9;

    color:
        var(--td-orange);
}


.timeline-code > span:last-child {
    margin-top: 20px;

    font-size: 12px;

    color:
        rgba(255,255,255,.78);
}


/* =========================================================
   SERVIDOR
========================================================= */

.timeline-server {
    width:
        min(
            100%,
            430px
        );

    padding: 35px;

    border-radius: 7px;

    background:
        #111317;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.16);
}


.timeline-server__row {
    height: 60px;

    margin-bottom: 8px;

    padding:
        0
        18px;

    display: flex;

    align-items: center;

    gap: 8px;

    border:
        1px solid
        rgba(255,255,255,.14);

    background:
        rgba(255,255,255,.045);
}


.timeline-server__row span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.55);
}


.timeline-server__row span:first-child {
    background:
        var(--td-green);

    box-shadow:
        0 0 12px
        rgba(21,148,71,.65);
}


.timeline-server small {
    display: block;

    margin-top: 25px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .13em;

    color:
        rgba(255,255,255,.72);
}


/* =========================================================
   TIENDAPYMES
========================================================= */

.timeline-product {
    width:
        min(
            100%,
            450px
        );

    min-height: 320px;

    padding: 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #e9e8e3
        );

    border:
        1px solid
        rgba(17,19,23,.16);

    box-shadow:
        0 30px 70px
        rgba(0,0,0,.06);
}


.timeline-product small {
    margin-bottom: 30px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .14em;

    color:
        var(--td-green-dark);
}


.timeline-product strong {
    font-size:
        clamp(
            40px,
            5vw,
            70px
        );

    font-weight: 700;

    line-height: 1;

    letter-spacing: -.06em;

    color:
        var(--td-black);
}


.timeline-product span {
    margin-top: 15px;

    font-size: 12px;

    font-weight: 500;

    color:
        var(--td-gray-dark);
}


/* =========================================================
   PRODUCCIÓN
========================================================= */

.timeline-physical {
    width:
        min(
            100%,
            460px
        );

    min-height: 330px;

    display: grid;

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

    align-items: center;

    justify-items: center;

    overflow: hidden;

    background:
        #111317;
}


.timeline-physical span {
    display: flex;

    width: 100%;
    height: 100%;

    align-items: center;

    justify-content: center;

    border-right:
        1px solid
        rgba(255,255,255,.14);

    color:
        rgba(255,255,255,.80);

    font-size:
        clamp(
            18px,
            2vw,
            28px
        );

    font-weight: 700;

    letter-spacing: -.04em;

    transition:
        color .4s ease,
        background .4s ease;
}


.timeline-physical span:last-child {
    border-right: 0;
}


.timeline-physical span:hover {
    color: #ffffff;

    background:
        var(--td-green);
}


/* =========================================================
   HOY
========================================================= */

.timeline-item--today {
    min-height: 780px;

    grid-template-columns: 1fr;

    text-align: center;

    padding-top: 150px;
}


.timeline-item__marker--today {
    position: absolute;

    top: 65px;
    left: 50%;

    width: 80px;
    height: 80px;

    transform:
        translateX(-50%);
}


.timeline-item__marker--today::before {
    display: none;
}


.timeline-item__marker--today span {
    width: 18px;
    height: 18px;

    background:
        var(--td-orange);

    box-shadow:
        0 0 0 8px
        rgba(255,101,0,.10),
        0 0 30px
        rgba(255,101,0,.30);
}


.timeline-today {
    max-width: 1000px;

    margin: auto;
}


.timeline-today__label {
    display: block;

    margin-bottom: 25px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;

    color:
        var(--td-orange-dark);
}


.timeline-today h2 {
    margin: 0;

    font-size:
        clamp(
            54px,
            6.4vw,
            108px
        );

    font-weight: 700;

    line-height: .88;

    letter-spacing: -.062em;

    color:
        var(--td-black);
}


.timeline-today h2 strong {
    display: block;

    color:
        var(--td-green);

    font-weight: inherit;
}


.timeline-today p {
    max-width: 570px;

    margin:
        40px
        auto
        0;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.8;

    color:
        #353a3e;
}


.timeline-today__end {
    display: block;

    margin-top: 65px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .15em;

    text-transform: uppercase;

    color:
        var(--td-gray-dark);
}


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

@media (max-width: 900px) {

    .about-hero__content {
        grid-template-columns: 1fr;

        align-content: center;

        gap: 45px;
    }


    .about-hero__intro {
        align-self: auto;

        margin-bottom: 100px;
    }


    .about-timeline__rail {
        left: 25px;
    }


    .timeline-item {
        min-height: auto;

        grid-template-columns:
            50px
            1fr;

        gap: 25px;

        padding:
            80px
            0;
    }


    .timeline-item__marker {
        grid-column: 1;

        grid-row: 1 / 3;

        order: 0;
    }


    .timeline-item__marker::before {
        display: none;
    }


    .timeline-item__content,
    .timeline-item__visual {
        grid-column: 2;

        justify-self: stretch !important;
    }


    .timeline-item__content {
        order: 1;
    }


    .timeline-item__visual {
        order: 2;

        min-height: 260px;

        margin-top: 40px;
    }


    .timeline-item--right
    .timeline-item__visual {
        order: 2;
    }


    .timeline-item--right
    .timeline-item__content {
        order: 1;
    }


    .timeline-item--today {
        display: block;

        padding:
            150px
            0
            60px;
    }


    .timeline-item__marker--today {
        left: 25px;
    }

}


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

@media (max-width: 700px) {

    .about-hero__inner {
        width:
            min(
                calc(100% - 36px),
                var(--container)
            );

        padding:
            115px
            0
            40px;
    }


    .about-hero__chapter {
        display: none;
    }


    .about-hero__title {
        font-size:
            clamp(
                48px,
                14vw,
                72px
            );
    }


    .about-hero__year {
        font-size: 55vw;

        top: 45%;
    }


    .about-hero__intro {
        margin-bottom: 120px;
    }


    .about-hero__origin {
        right: 10px;
    }


    .about-hero__scroll {
        bottom: 35px;
    }


    /* TIMELINE */

    .about-timeline {
        padding:
            90px
            0
            100px;
    }


    .about-timeline__inner {
        width:
            min(
                calc(100% - 36px),
                var(--container)
            );
    }


    .about-timeline__rail {
        left: 14px;

        top: -90px;
    }


    .timeline-item {
        grid-template-columns:
            29px
            1fr;

        gap: 18px;

        padding:
            65px
            0;
    }


    .timeline-item__content h2 {
        font-size:
            clamp(
                36px,
                10vw,
                52px
            );
    }


    .timeline-item__content p {
        font-size: 14px;

        line-height: 1.75;
    }


    .timeline-item__visual {
        min-height: 230px;
    }


    .timeline-item__marker--today {
        left: 14px;
    }

}


/* =========================================================
   ACCESIBILIDAD
========================================================= */

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

    .about-hero__year,
    .about-hero__title-line,
    .about-hero__title-accent,
    .about-hero__origin-ring,
    .about-hero__scroll-arrow {
        animation: none;
    }


    .timeline-item__content,
    .timeline-item__visual {
        transform: none;
    }

}