/* =========================================================
   DISEÑO WEB — HERO
========================================================= */

.dw-hero {
    position: relative;

    min-height: 100svh;

    overflow: hidden;

    background: #080a0d;

    color: #fff;
}


.dw-hero__background {
    position: absolute;

    inset: 0;

    pointer-events: none;
}


.dw-hero__grid {
    position: absolute;

    inset: 0;

    opacity: .22;

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

    background-size: 80px 80px;
}


.dw-hero__glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(100px);
}


.dw-hero__glow--orange {
    width: 600px;
    height: 600px;

    right: 12%;
    top: 10%;

    background:
        rgba(255,101,0,.13);
}


.dw-hero__glow--green {
    width: 420px;
    height: 420px;

    right: 33%;
    bottom: -10%;

    background:
        rgba(21,148,71,.10);
}


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

.dw-hero__inner {
    position: relative;

    z-index: 2;

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

    min-height: 100svh;

    margin: auto;

    padding:
        clamp(130px, 14vh, 170px)
        0
        45px;

    display: flex;

    flex-direction: column;
}


/* =========================================================
   CABECERA
========================================================= */

.dw-hero__top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}


.dw-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,.72);
}


.dw-hero__eyebrow-line {
    width: 36px;
    height: 2px;

    background:
        var(--td-orange, #ff6500);
}


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

    font-weight: 500;

    letter-spacing: .13em;

    text-transform: uppercase;

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


/* =========================================================
   CONTENIDO
========================================================= */

.dw-hero__content {
    flex: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(500px, .95fr);

    align-items: center;

    gap:
        clamp(
            50px,
            7vw,
            120px
        );
}


/* =========================================================
   TITULAR
========================================================= */

.dw-hero__copy h1 {
    margin: 0;

    max-width: 900px;

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

    font-weight: 700;

    line-height: .88;

    letter-spacing: -.062em;
}


.dw-hero__copy h1 span,
.dw-hero__copy h1 strong {
    display: block;
}


.dw-hero__copy h1 strong {
    margin-top: 14px;

    font-weight: inherit;

    color:
        var(--td-green, #159447);
}


.dw-hero__copy p {
    max-width: 610px;

    margin:
        38px
        0
        0;

    font-size: 16px;

    line-height: 1.8;

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


/* =========================================================
   BOTONES
========================================================= */

.dw-hero__actions {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 38px;
}


.dw-button {
    min-height: 58px;

    padding:
        0
        25px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 24px;

    border-radius: 100px;

    font-size: 13px;

    font-weight: 600;

    transition:
        background .4s ease,
        border-color .4s ease,
        transform .4s ease;
}


.dw-button--primary {
    background:
        var(--td-orange, #ff6500);

    color: #fff;
}


.dw-button--primary:hover {
    background: #ef5d00;

    transform:
        translateY(-3px);
}


.dw-button--ghost {
    border:
        1px solid
        rgba(255,255,255,.18);

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


.dw-button--ghost:hover {
    border-color:
        var(--td-green, #159447);

    background:
        rgba(21,148,71,.08);

    transform:
        translateY(-3px);
}


/* =========================================================
   VISUAL
========================================================= */

.dw-hero__visual {
    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* ORBITAS */

.dw-hero__orbit {
    position: absolute;

    top: 50%;
    left: 50%;

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

    border-radius: 50%;

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


.dw-hero__orbit--one {
    width: 520px;
    height: 520px;
}


.dw-hero__orbit--two {
    width: 680px;
    height: 680px;

    border-color:
        rgba(21,148,71,.10);
}


/* =========================================================
   BROWSER
========================================================= */

.dw-browser {
    position: relative;

    z-index: 3;

    width:
        min(
            100%,
            620px
        );

    overflow: hidden;

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

    border-radius: 18px;

    background: #111317;

    box-shadow:
        0 45px 100px
        rgba(0,0,0,.40);

    transform:
        perspective(1200px)
        rotateY(-5deg)
        rotateX(2deg);

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


.dw-hero__visual:hover
.dw-browser {
    transform:
        perspective(1200px)
        rotateY(-1deg)
        rotateX(0deg)
        translateY(-5px);
}


.dw-browser__bar {
    height: 50px;

    padding:
        0
        18px;

    display: grid;

    grid-template-columns:
        90px
        1fr
        90px;

    align-items: center;

    background: #16181d;

    border-bottom:
        1px solid
        rgba(255,255,255,.07);
}


.dw-browser__dots {
    display: flex;

    gap: 6px;
}


.dw-browser__dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

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


.dw-browser__dots span:first-child {
    background:
        var(--td-orange, #ff6500);
}


.dw-browser__address {
    justify-self: center;

    font-size: 9px;

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


.dw-browser__screen {
    aspect-ratio: 16 / 9;

    overflow: hidden;
}


.dw-browser__screen img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: top center;

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


.dw-hero__visual:hover
.dw-browser__screen img {
    transform:
        scale(1.015);
}


/* =========================================================
   PHONE
========================================================= */

.dw-phone {
    position: absolute;

    z-index: 5;

    width: 170px;

    right: -5px;
    bottom: 70px;

    padding: 8px;

    border-radius: 28px;

    background: #0d0f12;

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

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

    transform:
        rotate(4deg);

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


.dw-hero__visual:hover
.dw-phone {
    transform:
        rotate(1deg)
        translateY(-6px);
}


.dw-phone__screen {
    aspect-ratio: 9 / 18;

    overflow: hidden;

    border-radius: 21px;
}


.dw-phone__screen img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


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

.dw-floating {
    position: absolute;

    z-index: 8;

    padding:
        13px
        16px;

    display: flex;

    align-items: center;

    gap: 10px;

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

    border-radius: 13px;

    background:
        rgba(13,15,18,.86);

    backdrop-filter:
        blur(14px);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.28);
}


.dw-floating small {
    display: block;

    margin-bottom: 3px;

    font-size: 8px;

    letter-spacing: .08em;

    text-transform: uppercase;

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


.dw-floating strong {
    display: block;

    font-size: 11px;

    font-weight: 600;

    color: #fff;
}


.dw-floating__dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--td-green, #159447);

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


.dw-floating--one {
    left: -25px;
    top: 22%;
}


.dw-floating--two {
    right: 10px;
    top: 12%;
}


.dw-floating--three {
    left: 10%;
    bottom: 10%;
}


/* =========================================================
   FOOTER HERO
========================================================= */

.dw-hero__footer {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.08);
}


.dw-hero__services {
    display: flex;

    flex-wrap: wrap;

    gap: 13px 25px;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: .1em;

    text-transform: uppercase;

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


.dw-hero__services span:not(:last-child)::after {
    content: "•";

    margin-left: 25px;

    color:
        var(--td-orange, #ff6500);
}


.dw-hero__scroll {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .12em;

    text-transform: uppercase;

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


.dw-hero__scroll span {
    color:
        var(--td-green, #159447);
}


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

@media (max-width: 1000px) {

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

        padding:
            70px
            0;
    }


    .dw-hero__visual {
        min-height: 580px;
    }

}


@media (max-width: 700px) {

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

        padding:
            115px
            0
            35px;
    }


    .dw-hero__chapter {
        display: none;
    }


    .dw-hero__copy h1 {
        font-size:
            clamp(
                48px,
                14vw,
                72px
            );
    }


    .dw-hero__copy p {
        font-size: 15px;
    }


    .dw-hero__actions {
        flex-direction: column;
    }


    .dw-button {
        width: 100%;
    }


    .dw-hero__visual {
        min-height: 470px;
    }


    .dw-browser {
        transform: none;
    }


    .dw-phone {
        width: 120px;

        right: -5px;
        bottom: 40px;
    }


    .dw-floating--one {
        left: -5px;
    }


    .dw-floating--two {
        right: -5px;
    }


    .dw-floating--three {
        left: 4%;
    }


    .dw-hero__footer {
        align-items: flex-start;

        flex-direction: column;
    }

}
/* =========================================================
   DISEÑO WEB — LISTADO DE SOLUCIONES
========================================================= */

.dw-services-list {
    border-top:
        1px solid
        rgba(255,255,255,.12);
}


/* =========================================================
   ITEM
========================================================= */

.dw-service {
    position: relative;

    min-height: 165px;

    display: grid;

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

    gap: 40px;

    align-items: center;

    padding:
        30px
        18px
        30px
        0;

    border-bottom:
        1px solid
        rgba(255,255,255,.12);

    transition:
        background .55s ease,
        padding-left .55s
        cubic-bezier(.22,1,.36,1);
}


/* LÍNEA LATERAL */

.dw-service::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background:
        var(--td-orange, #ff6500);

    transform:
        scaleY(0);

    transform-origin: center;

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


.dw-service:hover {
    padding-left: 20px;

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


.dw-service:hover::before {
    transform:
        scaleY(1);
}


/* =========================================================
   NÚMERO
========================================================= */

.dw-service__number {
    font-size: 10px;

    font-weight: 600;

    letter-spacing: .12em;

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


/* =========================================================
   CONTENIDO
========================================================= */

.dw-service__content {
    display: grid;

    grid-template-columns:
        minmax(290px,.72fr)
        minmax(300px,1fr);

    gap:
        clamp(
            35px,
            5vw,
            80px
        );

    align-items: center;
}


/* =========================================================
   TÍTULO + MÁS INFORMACIÓN
========================================================= */

.dw-service__title {
    position: relative;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}


.dw-service__title h3 {
    margin: 0;

    font-size:
        clamp(
            25px,
            2.4vw,
            39px
        );

    font-weight: 600;

    line-height: 1;

    letter-spacing: -.04em;

    color: #fff;

    transition:
        color .4s ease;
}


/* =========================================================
   MÁS INFORMACIÓN
========================================================= */

.dw-service__more {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 10px;

    font-weight: 600;

    line-height: 1.4;

    letter-spacing: .02em;

    color:
        var(--td-orange, #ff6500);

    transition:
        color .35s ease,
        gap .35s ease;
}


.dw-service__more span {
    display: inline-block;

    transition:
        transform .35s ease;
}


.dw-service__more:hover {
    color:
        var(--td-green, #159447);
}


.dw-service__more:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   DESCRIPCIÓN
========================================================= */

.dw-service__content > p {
    max-width: 580px;

    margin: 0;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.75;

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


/* =========================================================
   FLECHA
========================================================= */

.dw-service__arrow {
    justify-self: end;

    width: 46px;
    height: 46px;

    display: flex;

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

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

    border-radius: 50%;

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

    transition:
        color .45s ease,
        background .45s ease,
        border-color .45s ease,
        transform .55s
        cubic-bezier(.22,1,.36,1);
}


.dw-service__arrow:hover {
    color: #fff;

    background:
        var(--td-orange, #ff6500);

    border-color:
        var(--td-orange, #ff6500);

    transform:
        rotate(12deg);
}


/* AL PASAR SOBRE EL BLOQUE */

.dw-service:hover
.dw-service__title h3 {
    color:
        var(--td-green, #159447);
}


/* =========================================================
   E-COMMERCE DESTACADO
========================================================= */

.dw-service--featured {
    background:
        rgba(21,148,71,.035);
}


.dw-service--featured::before {
    background:
        var(--td-green, #159447);
}


.dw-service__badge {
    display: inline-flex;

    padding:
        5px
        9px;

    margin-bottom: 1px;

    border-radius: 100px;

    background:
        rgba(21,148,71,.10);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

    color:
        var(--td-green, #159447);
}


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

@media (max-width: 950px) {

    .dw-service__content {
        grid-template-columns: 1fr;

        gap: 18px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .dw-service {
        min-height: auto;

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

        gap: 14px;

        padding:
            30px
            0;
    }


    .dw-service__content {
        gap: 16px;
    }


    .dw-service__title h3 {
        font-size:
            clamp(
                23px,
                7vw,
                31px
            );
    }


    .dw-service__more {
        font-size: 9px;
    }


    .dw-service__content > p {
        font-size: 12px;

        line-height: 1.7;
    }


    .dw-service__arrow {
        width: 38px;
        height: 38px;
    }


    .dw-service:hover {
        padding-left: 0;
    }

}
.dw-solutions {
    position: relative;

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

    margin:
        clamp(70px, 7vw, 120px)
        auto;

    padding:
        clamp(90px, 8vw, 140px)
        clamp(35px, 5vw, 80px);

    background: #090a0c;

    color: #fff;

    overflow: hidden;
}
/* =========================================================
   DISEÑO WEB — SOLUCIONES / CONTENEDOR 1400
========================================================= */

.dw-solutions {
    position: relative;

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

    margin:
        clamp(80px, 7vw, 120px)
        auto;

    padding:
        clamp(80px, 7vw, 120px)
        clamp(35px, 5vw, 75px);

    background: #090a0c;

    color: #fff;

    overflow: hidden;
}


.dw-solutions__inner {
    width: 100%;
    margin: 0 auto;
}


/* =========================================================
   ENCABEZADO
========================================================= */

.dw-solutions__header {
    margin-bottom:
        clamp(60px, 6vw, 90px);
}


.dw-solutions__eyebrow {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 30px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .14em;

    text-transform: uppercase;

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


.dw-solutions__eyebrow-line {
    width: 36px;
    height: 2px;

    background:
        var(--td-orange, #ff6500);
}


/* =========================================================
   TITULAR
========================================================= */

.dw-solutions__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(300px, .8fr);

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

    align-items: end;
}


.dw-solutions__heading h2 {
    margin: 0;

    font-size:
        clamp(
            46px,
            5vw,
            78px
        );

    font-weight: 700;

    line-height: .95;

    letter-spacing: -.055em;

    color: #fff;
}


.dw-solutions__heading h2 strong {
    display: block;

    font-weight: inherit;

    color:
        var(--td-green, #159447);
}


.dw-solutions__heading p {
    max-width: 470px;

    margin: 0;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.8;

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


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

@media (max-width: 950px) {

    .dw-solutions__heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .dw-solutions {
        width:
            calc(100% - 28px);

        margin:
            45px
            auto;

        padding:
            65px
            20px;
    }


    .dw-solutions__header {
        margin-bottom: 50px;
    }


    .dw-solutions__heading h2 {
        font-size:
            clamp(
                42px,
                12vw,
                58px
            );
    }


    .dw-solutions__heading p {
        font-size: 13px;
    }

}