/* =========================================================
   TICODESIGN
   BASE
========================================================= */

:root {

    --bg: #090a0c;
    --bg-soft: #111318;

    --text: #ffffff;
    --text-soft: rgba(255,255,255,.66);

    --line: rgba(255,255,255,.12);

    --accent: #ff6a00;
    --accent-light: #ff9a4a;

    --header-height: 92px;

    --container: 1480px;

 
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

     font-family:
        'Poppins',
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: var(--bg);

    overflow-x: hidden;

}


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


a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   TD-00 HEADER
========================================================= */

.site-header {

    position: fixed;

    z-index: 1000;

    top: 0;
    left: 0;

    width: 100%;
background: #090a0c;

    border-bottom: 1px solid rgba(255,255,255,.08);
    transition:
        background .4s ease,
        backdrop-filter .4s ease,
        border-color .4s ease;

    border-bottom: 1px solid transparent;

}


.site-header.is-scrolled {
    background: #090a0c;

    border-bottom-color: rgba(255,255,255,.12);

    box-shadow:
        0 12px 35px rgba(0,0,0,.28);
}


.site-header__inner {

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

    min-height: var(--header-height);

    margin: auto;

    display: grid;

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

    align-items: center;

    gap: 30px;

}


/* LOGO */

.site-logo {
    display: inline-flex;
    align-items: center;
}


.site-logo img {
    width: 170px;
    height: auto;
}


/* MENÚ */

.site-nav {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: clamp(22px, 2.3vw, 42px);

}


.site-nav a {
    position: relative;

    font-size: 14px;
    font-weight: 400;

    letter-spacing: 0;

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

    transition: color .25s ease;
}


.site-nav a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--accent);

    transition: width .3s ease;

}


.site-nav a:hover {
    color: #fff;
}


.site-nav a:hover::after {
    width: 100%;
}


/* HEADER CTA */

.site-header__actions {

    display: flex;

    justify-content: flex-end;

    align-items: center;

    gap: 18px;

}


.header-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    min-height: 48px;

    padding: 0 21px;

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

    border-radius: 100px;

    font-size: 13px;

    font-weight: 700;

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

}


.header-cta:hover {

    background: #fff;

    color: #111;

    border-color: #fff;

    transform: translateY(-2px);

}


.header-cta__arrow {
    font-size: 16px;
}


/* BOTÓN MOBILE */

.menu-toggle {

    display: none;

    position: relative;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 1px solid var(--line);

    border-radius: 50%;

    background: transparent;

    cursor: pointer;

}


.menu-toggle span {

    position: absolute;

    left: 13px;

    width: 18px;
    height: 1px;

    background: #fff;

    transition:
        transform .25s ease,
        top .25s ease;

}


.menu-toggle span:first-child {
    top: 18px;
}


.menu-toggle span:last-child {
    top: 26px;
}


.menu-toggle.is-active span:first-child {

    top: 22px;

    transform: rotate(45deg);

}


.menu-toggle.is-active span:last-child {

    top: 22px;

    transform: rotate(-45deg);

}


/* =========================================================
   TD-01 HERO
========================================================= */

.hero {

    position: relative;

    min-height: 100svh;

    padding-top: var(--header-height);

    isolation: isolate;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 71% 43%,
            rgba(255,106,0,.10),
            transparent 26%
        ),

        linear-gradient(
            135deg,
            #08090b 0%,
            #0d0f13 55%,
            #08090b 100%
        );

}


.hero__background {

    position: absolute;

    inset: 0;

    z-index: -2;

    pointer-events: none;

}


.hero__grid {

    position: absolute;

    inset: 0;

    opacity: .18;

    background-image:

        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.8),
            transparent 85%
        );

}


.hero__glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

}


.hero__glow--one {

    width: 480px;
    height: 480px;

    right: 9%;
    top: 18%;

    background: rgba(255,106,0,.14);

}


.hero__glow--two {

    width: 260px;
    height: 260px;

    right: 36%;
    bottom: 4%;

    background: rgba(60,90,255,.08);

}


/* CONTENEDOR */

.hero__inner {

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

    min-height:
        calc(
            100svh -
            var(--header-height)
        );

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.07fr)
        minmax(420px, .93fr);

    align-items: center;

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

    padding:
        80px
        0
        110px;

}


/* CONTENIDO */

.hero__content {

    position: relative;

    z-index: 5;

    max-width: 840px;

}


.hero__eyebrow {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 30px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .16em;

    text-transform: uppercase;

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

}


.hero__eyebrow-line {

    width: 34px;
    height: 1px;

    background: var(--accent);

}


.hero__title {
    margin: 0;

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

    font-weight: 700;

    line-height: .88;

    letter-spacing: -.062em;
}


.hero__title span {
    display: block;
}


.hero__title strong {

    position: relative;

    color: var(--accent);

    font-weight: inherit;

}


.hero__description {

    width: min(100%, 610px);

    margin:
        40px
        0
        0;

    font-size:
        clamp(
            17px,
            1.25vw,
            21px
        );

    line-height: 1.65;

    color: var(--text-soft);

}


/* BOTONES HERO */

.hero__actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 38px;

}


.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 26px;

    min-height: 58px;

    padding: 0 26px;

    border-radius: 100px;

    font-size: 13px;

    font-weight: 700;

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

}


.button--primary {

    background: var(--accent);

    color: #fff;

}


.button--primary:hover {

    background: var(--accent-light);

    transform: translateY(-3px);

}


.button--ghost {

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

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

}


.button--ghost:hover {

    border-color: rgba(255,255,255,.5);

    background: rgba(255,255,255,.04);

}


.button__icon {

    font-size: 17px;

    transition: transform .25s ease;

}


.button:hover .button__icon {
    transform: translateX(4px);
}


.button--ghost:hover .button__icon {
    transform: translateY(3px);
}


/* SERVICIOS ABAJO */

.hero__services {

    display: flex;

    flex-wrap: wrap;

    gap: 10px 26px;

    margin-top: 48px;

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

    font-size: 12px;

    letter-spacing: .06em;

    text-transform: uppercase;

}


.hero__services span:not(:last-child)::after {

    content: "•";

    margin-left: 26px;

    color: var(--accent);

}


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

.hero__visual {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero__image-wrap {

    position: relative;

    z-index: 3;

    width: min(100%, 590px);

}


.hero__image {

    position: relative;

    z-index: 2;

    width: 100%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 40px 65px rgba(0,0,0,.45)
        );

    animation:
        heroFloat
        7s
        ease-in-out
        infinite;

}


.hero__image-glow {

    position: absolute;

    z-index: 0;

    width: 68%;
    aspect-ratio: 1;

    top: 50%;
    left: 50%;

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

    border-radius: 50%;

    background:
        rgba(255,106,0,.18);

    filter: blur(70px);

}


/* ORBITAS */

.hero__visual-orbit {

    position: absolute;

    top: 50%;
    left: 50%;

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

    border-radius: 50%;

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

}


.hero__visual-orbit--one {

    width: 560px;
    height: 560px;

}


.hero__visual-orbit--two {

    width: 720px;
    height: 720px;

    border-color:
        rgba(255,106,0,.08);

}


/* TARJETAS */

.hero-card {

    position: absolute;

    z-index: 6;

    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        16px
        20px;

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

    background:
        rgba(16,18,22,.62);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    border-radius: 16px;

    box-shadow:
        0 16px 50px
        rgba(0,0,0,.18);

}


.hero-card--top {

    top: 21%;
    right: 0;

}


.hero-card--bottom {

    bottom: 19%;
    left: 0;

}


.hero-card__number {

    font-size: 30px;

    font-weight: 800;

    color: var(--accent);

}


.hero-card__text,
.hero-card--bottom {

    font-size: 12px;

    line-height: 1.5;

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

}


.hero-card__dot {

    flex: 0 0 auto;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #58e69a;

    box-shadow:
        0 0 16px
        rgba(88,230,154,.7);

}


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

.hero__footer {

    position: absolute;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);

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

    display: flex;

    align-items: center;

    justify-content: space-between;

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

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .15em;

    text-transform: uppercase;

}


.hero__scroll {

    display: flex;

    align-items: center;

    gap: 14px;

}


.hero__scroll-line {

    width: 38px;
    height: 1px;

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

}


/* =========================================================
   ANIMACIÓN
========================================================= */

@keyframes heroFloat {

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

    50% {
        transform:
            translateY(-13px);
    }

}


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

@media (max-width: 1150px) {

    .site-header__inner {

        grid-template-columns:
            190px 1fr auto;

    }


    .site-nav {
        gap: 20px;
    }


    .site-nav a {
        font-size: 12px;
    }


    .hero__inner {

        grid-template-columns:
            1fr 460px;

        gap: 30px;

    }


    .hero__visual {
        min-height: 550px;
    }


    .hero__visual-orbit--one {

        width: 450px;
        height: 450px;

    }


    .hero__visual-orbit--two {

        width: 560px;
        height: 560px;

    }

}


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

@media (max-width: 900px) {

    :root {
        --header-height: 78px;
    }


    .site-header__inner {

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

        grid-template-columns:
            1fr auto;

    }


    .site-logo img {
        width: 145px;
    }


    .site-nav {

        position: fixed;

        top: var(--header-height);
        left: 0;

        width: 100%;

        height:
            calc(
                100svh -
                var(--header-height)
            );

        padding:
            45px
            24px;

        flex-direction: column;

        justify-content:
            flex-start;

        align-items:
            flex-start;

        gap: 0;

        background:
            rgba(8,9,11,.98);

        transform:
            translateX(100%);

        transition:
            transform .35s ease;

    }


    .site-nav.is-open {

        transform:
            translateX(0);

    }


    .site-nav a {

        width: 100%;

        padding:
            19px
            0;

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

        font-size: 20px;

    }


    .header-cta {
        display: none;
    }


    .menu-toggle {
        display: block;
    }


    .hero {

        min-height: auto;

    }


    .hero__inner {

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

        min-height: auto;

        grid-template-columns: 1fr;

        padding:
            92px
            0
            120px;

        gap: 50px;

    }


    .hero__title {

        font-size:
            clamp(
                54px,
                14vw,
                88px
            );

    }


    .hero__visual {

        min-height: 480px;

    }


    .hero__image-wrap {

        width:
            min(
                100%,
                440px
            );

    }


    .hero__visual-orbit--one {

        width: 390px;
        height: 390px;

    }


    .hero__visual-orbit--two {

        width: 490px;
        height: 490px;

    }


    .hero-card--top {

        top: 10%;
        right: 0;

    }


    .hero-card--bottom {

        left: 0;
        bottom: 6%;

    }


    .hero__footer {

        width:
            calc(
                100% - 36px
            );

        bottom: 22px;

    }

}


/* =========================================================
   MOBILE PEQUEÑO
========================================================= */

@media (max-width: 560px) {

    .hero__eyebrow {

        font-size: 10px;

        letter-spacing: .12em;

    }


    .hero__title {

        font-size:
            clamp(
                48px,
                15vw,
                68px
            );

        line-height: .92;

    }


    .hero__description {

        margin-top: 30px;

        font-size: 16px;

    }


    .hero__actions {

        align-items: stretch;

        flex-direction: column;

    }


    .button {
        width: 100%;
    }


    .hero__services {

        gap:
            10px
            14px;

        margin-top: 34px;

        font-size: 10px;

    }


    .hero__services span:not(:last-child)::after {

        margin-left: 14px;

    }


    .hero__visual {

        min-height: 390px;

    }


    .hero__visual-orbit--one {

        width: 310px;
        height: 310px;

    }


    .hero__visual-orbit--two {

        width: 400px;
        height: 400px;

    }


    .hero-card {

        padding:
            12px
            14px;

    }


    .hero-card__number {
        font-size: 24px;
    }


    .hero-card--top {

        top: 5%;

    }


    .hero-card--bottom {

        bottom: 4%;

    }


    .hero__location {
        display: none;
    }

}


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

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

    * {

        scroll-behavior: auto !important;

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

    }

}
/* =========================================================
   TD-02 ¿QUÉ NECESITA RESOLVER?
========================================================= */

.needs {
    position: relative;
    background: #f5f5f3;
    color: #111317;
    padding:
        clamp(100px, 10vw, 170px)
        0
        clamp(110px, 10vw, 180px);
}

.needs__inner {
    width: min(calc(100% - 64px), var(--container));
    margin: auto;
}


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

.needs__header {
    margin-bottom: clamp(60px, 7vw, 105px);
}

.needs__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 28px;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;

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

.needs__eyebrow-line {
    width: 34px;
    height: 1px;
    background: var(--accent);
}

.needs__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(300px, .6fr);

    align-items: end;

    gap: clamp(40px, 8vw, 130px);
}

.needs__heading h2 {
    margin: 0;

    font-size:
        clamp(
            48px,
            5.5vw,
            92px
        );

    font-weight: 700;
    line-height: .93;
    letter-spacing: -.055em;
}

.needs__heading h2 strong {
    display: block;

    font-weight: inherit;
    color: var(--accent);
}

.needs__heading p {
    margin: 0;

    max-width: 470px;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;

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


/* =========================================================
   GRID
========================================================= */

.needs__grid {
    display: grid;

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

    border-top: 1px solid rgba(17,19,23,.14);
    border-left: 1px solid rgba(17,19,23,.14);
}


/* =========================================================
   TARJETA
========================================================= */

.need-card {
    position: relative;

    min-height: 520px;

    padding:
        clamp(30px, 3vw, 48px);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    color: #111317;

    background: transparent;

    border-right: 1px solid rgba(17,19,23,.14);
    border-bottom: 1px solid rgba(17,19,23,.14);

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


/* LUZ INTERNA */

.need-card::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -160px;
    bottom: -220px;

    border-radius: 50%;

    background: rgba(255,255,255,.07);

    transform: scale(.65);

    opacity: 0;

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

.need-card:hover::before {
    transform: scale(1);
    opacity: 1;
}


/* =========================================================
   TOP
========================================================= */

.need-card__top {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.need-card__number {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;

    color: rgba(17,19,23,.38);

    transition: color .4s ease;
}

.need-card__arrow {
    width: 48px;
    height: 48px;

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

    border: 1px solid rgba(17,19,23,.15);
    border-radius: 50%;

    font-size: 18px;

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


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

.need-card__content {
    position: relative;
    z-index: 2;

    margin-top: auto;
    padding-top: 110px;
}

.need-card__label {
    display: block;

    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;

    color: var(--accent);

    transition: color .4s ease;
}

.need-card h3 {
    max-width: 580px;

    margin:
        0
        0
        26px;

    font-size:
        clamp(
            35px,
            3vw,
            52px
        );

    font-weight: 600;
    line-height: 1;
    letter-spacing: -.045em;
}

.need-card p {
    max-width: 500px;

    margin: 0;

    font-size: 15px;
    line-height: 1.75;

    color: rgba(17,19,23,.56);

    transition: color .4s ease;
}


/* =========================================================
   FOOTER TARJETA
========================================================= */

.need-card__footer {
    position: relative;
    z-index: 2;

    margin-top: 55px;
    padding-top: 22px;

    border-top: 1px solid rgba(17,19,23,.12);

    font-size: 11px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;

    color: rgba(17,19,23,.42);

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


/* =========================================================
   HOVER
========================================================= */

.need-card:hover {
    color: #fff;
}

.need-card:hover .need-card__number {
    color: rgba(255,255,255,.46);
}

.need-card:hover .need-card__label {
    color: #fff;
}

.need-card:hover p {
    color: rgba(255,255,255,.72);
}

.need-card:hover .need-card__footer {
    color: rgba(255,255,255,.46);
    border-color: rgba(255,255,255,.16);
}

.need-card:hover .need-card__arrow {
    background: rgba(255,255,255,.95);
    border-color: rgba(255,255,255,.95);
    color: #111317;

    transform:
        translateY(-2px)
        rotate(12deg);
}


/* =========================================================
   COLORES POR SERVICIO
========================================================= */

.need-card--hosting:hover {
    background-color: #181b20;
}

.need-card--web:hover {
    background-color: #e96108;
}

.need-card--create:hover {
    background-color: #202226;
}

.need-card--support:hover {
    background-color: #292b30;
}


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

@media (max-width: 900px) {

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

    .needs__heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .needs__heading p {
        max-width: 620px;
    }

    .need-card {
        min-height: 460px;
    }

}


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

@media (max-width: 650px) {

    .needs {
        padding:
            85px
            0
            100px;
    }

    .needs__header {
        margin-bottom: 50px;
    }

    .needs__heading h2 {
        font-size:
            clamp(
                44px,
                13vw,
                64px
            );
    }

    .needs__grid {
        grid-template-columns: 1fr;
    }

    .need-card {
        min-height: 430px;

        padding:
            28px
            24px;
    }

    .need-card__content {
        padding-top: 80px;
    }

    .need-card h3 {
        font-size:
            clamp(
                34px,
                10vw,
                46px
            );
    }

    .need-card__footer {
        margin-top: 42px;
    }

}
.need-card__number,
.need-card__label,
.need-card p,
.need-card__footer {
    transition:
        color .65s ease,
        border-color .65s ease;
}

/* =========================================================
   TD-03 DISEÑO WEB & DESARROLLO
========================================================= */

.web-design {
    position: relative;

    padding:
        clamp(110px, 11vw, 190px)
        0
        clamp(110px, 10vw, 170px);

    overflow: hidden;

    color: #fff;

    background:
        radial-gradient(
            circle at 68% 44%,
            rgba(255, 106, 0, .08),
            transparent 28%
        ),
        #090a0c;
}


.web-design__inner {
    width: min(calc(100% - 64px), var(--container));
    margin: auto;
}


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

.web-design__header {
    margin-bottom: clamp(70px, 8vw, 125px);
}


.web-design__eyebrow {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 30px;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: .13em;

    text-transform: uppercase;

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


.web-design__eyebrow-line {
    width: 34px;
    height: 1px;

    background: var(--accent);
}


.web-design__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, .65fr);

    align-items: end;

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


.web-design__heading h2 {
    max-width: 920px;

    margin: 0;

    font-size:
        clamp(
            48px,
            5.5vw,
            90px
        );

    font-weight: 700;

    line-height: .94;

    letter-spacing: -.055em;
}


.web-design__heading h2 strong {
    display: block;

    color: var(--accent);

    font-weight: inherit;
}


.web-design__intro {
    max-width: 470px;
}


.web-design__intro p {
    margin:
        0
        0
        32px;

    font-size: 16px;

    line-height: 1.8;

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


/* CTA */

.web-design__cta {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    font-size: 13px;
    font-weight: 600;

    color: #fff;
}


.web-design__cta-arrow {
    width: 42px;
    height: 42px;

    display: flex;

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

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

    border-radius: 50%;

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


.web-design__cta:hover .web-design__cta-arrow {
    background: var(--accent);

    border-color: var(--accent);

    transform:
        translateY(-2px)
        rotate(12deg);
}


/* =========================================================
   SHOWCASE
========================================================= */

.web-showcase {
    position: relative;

    display: grid;

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

    gap: clamp(25px, 3vw, 50px);

    align-items: center;

    margin-bottom: 110px;
}


/* TEXTO VERTICAL */

.web-showcase__side {
    height: 100%;

    min-height: 600px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 20px;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: .16em;

    text-transform: uppercase;

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

    writing-mode: vertical-rl;

    transform: rotate(180deg);
}


.web-showcase__side-line {
    width: 1px;
    height: 70px;

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


/* =========================================================
   PROYECTO
========================================================= */

.web-showcase__project {
    position: relative;

    width: min(100%, 1250px);

    margin-left: auto;
}


.web-showcase__glow {
    position: absolute;

    z-index: 0;

    width: 55%;
    height: 70%;

    top: 15%;
    left: 25%;

    border-radius: 50%;

    background: rgba(255,106,0,.12);

    filter: blur(100px);

    pointer-events: none;
}


/* =========================================================
   NAVEGADOR
========================================================= */

.web-browser {
    position: relative;

    z-index: 2;

    overflow: hidden;

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

    border-radius: 20px;

    background: #111318;

    box-shadow:
        0 50px 100px rgba(0,0,0,.38);

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


.web-browser:hover {
    transform: translateY(-7px);

    box-shadow:
        0 65px 120px rgba(0,0,0,.48);
}


/* BARRA */

.web-browser__bar {
    height: 58px;

    padding: 0 22px;

    display: grid;

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

    align-items: center;

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

    background: #15171b;
}


.web-browser__dots {
    display: flex;
    gap: 7px;
}


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

    border-radius: 50%;

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


.web-browser__dots span:first-child {
    background: var(--accent);
}


.web-browser__address {
    justify-self: center;

    font-size: 10px;
    font-weight: 400;

    letter-spacing: .04em;

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


.web-browser__menu {
    justify-self: end;

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.web-browser__menu span {
    width: 20px;
    height: 1px;

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


/* IMAGEN */

.web-browser__screen {
    position: relative;

    aspect-ratio: 16 / 8.5;

    overflow: hidden;

    background: #101216;
}


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

    object-fit: cover;

    object-position: top center;

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


.web-browser:hover .web-browser__screen img {
    transform: scale(1.015);
}


/* =========================================================
   TARJETAS FLOTANTES
========================================================= */

.web-float {
    position: absolute;

    z-index: 5;

    padding:
        15px
        19px;

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

    border-radius: 14px;

    background:
        rgba(14,16,20,.84);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    box-shadow:
        0 20px 55px
        rgba(0,0,0,.3);
}


.web-float small {
    display: block;

    margin-bottom: 4px;

    font-size: 9px;

    letter-spacing: .09em;

    text-transform: uppercase;

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


.web-float strong {
    font-size: 12px;

    font-weight: 500;

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


.web-float--one {
    top: 17%;
    left: -28px;

    display: flex;

    align-items: center;

    gap: 12px;
}


.web-float--two {
    right: -25px;
    bottom: 13%;
}


.web-float--two strong span {
    color: var(--accent);

    padding: 0 4px;
}


.web-float__dot {
    width: 8px;
    height: 8px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #57e598;

    box-shadow:
        0 0 16px
        rgba(87,229,152,.6);
}


/* =========================================================
   CAPACIDADES
========================================================= */

.web-capabilities {
    border-top:
        1px solid
        rgba(255,255,255,.11);
}


.web-capability {
    position: relative;

    min-height: 145px;

    display: grid;

    grid-template-columns:
        70px
        minmax(250px, .65fr)
        minmax(300px, 1fr)
        55px;

    align-items: center;

    gap: 30px;

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

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


.web-capability__number {
    font-size: 10px;

    letter-spacing: .12em;

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


.web-capability h3 {
    margin: 0;

    font-size:
        clamp(
            24px,
            2.2vw,
            36px
        );

    font-weight: 500;

    letter-spacing: -.035em;
}


.web-capability p {
    max-width: 510px;

    margin: 0;

    font-size: 13px;

    line-height: 1.7;

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


.web-capability__arrow {
    width: 42px;
    height: 42px;

    display: flex;

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

    justify-self: end;

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

    border-radius: 50%;

    font-size: 15px;

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

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


/* HOVER MUY SUTIL */

.web-capability:hover {
    padding-left: 18px;

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


.web-capability:hover .web-capability__arrow {
    background: var(--accent);

    border-color: var(--accent);

    color: #fff;

    transform: rotate(12deg);
}


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

@media (max-width: 1000px) {

    .web-design__heading {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .web-design__intro {
        max-width: 620px;
    }


    .web-showcase {
        grid-template-columns: 1fr;
    }


    .web-showcase__side {
        display: none;
    }


    .web-capability {
        grid-template-columns:
            45px
            minmax(200px, .7fr)
            1fr
            45px;

        gap: 20px;
    }

}


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

@media (max-width: 700px) {

    .web-design {
        padding:
            90px
            0
            100px;
    }


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


    .web-design__header {
        margin-bottom: 65px;
    }


    .web-design__heading h2 {
        font-size:
            clamp(
                43px,
                12vw,
                62px
            );
    }


    .web-showcase {
        margin-bottom: 80px;
    }


    .web-browser {
        border-radius: 12px;
    }


    .web-browser__bar {
        height: 46px;

        padding:
            0
            14px;

        grid-template-columns:
            70px
            1fr
            70px;
    }


    .web-browser__address {
        font-size: 7px;
    }


    .web-browser__screen {
        aspect-ratio: 4 / 3;
    }


    .web-float {
        padding:
            11px
            13px;
    }


    .web-float--one {
        top: 13%;
        left: -8px;
    }


    .web-float--two {
        right: -8px;
        bottom: 8%;
    }


    .web-capability {
        min-height: auto;

        padding:
            30px
            0;

        grid-template-columns:
            35px
            1fr
            42px;

        gap: 14px;
    }


    .web-capability p {
        grid-column:
            2 / 4;

        margin-top: -4px;
    }


    .web-capability__arrow {
        grid-column: 3;
        grid-row: 1;

        width: 38px;
        height: 38px;
    }


    .web-capability:hover {
        padding-left: 0;
    }

}


/* =========================================================
   TD-04 TIENDAPYMES
========================================================= */

.store-product {
    position: relative;

    overflow: hidden;

    color: #121418;

    background:
        radial-gradient(
            circle at 72% 46%,
            rgba(255,106,0,.10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #f3f2ee 0%,
            #ffffff 55%,
            #f0efeb 100%
        );
}


.store-product__inner {
    width: min(calc(100% - 64px), var(--container));

    margin: auto;

    padding:
        clamp(120px, 11vw, 190px)
        0
        clamp(120px, 11vw, 190px);

    display: grid;

    grid-template-columns:
        minmax(340px, .8fr)
        minmax(500px, 1.2fr);

    align-items: center;

    gap: clamp(70px, 8vw, 140px);
}


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

.store-product__content {
    position: relative;
    z-index: 5;
}


.store-product__eyebrow {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 32px;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: .13em;

    text-transform: uppercase;

    color: rgba(18,20,24,.48);
}


.store-product__eyebrow-line {
    width: 34px;
    height: 1px;

    background: var(--accent);
}


/* MARCA */

.store-product__brand {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 26px;

    font-size: 17px;

    font-weight: 600;

    letter-spacing: -.02em;
}


.store-product__brand-mark {
    width: 43px;
    height: 43px;

    display: inline-flex;

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

    border-radius: 12px;

    background: #111317;

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: -.03em;
}


/* TITULO */

.store-product h2 {
    max-width: 690px;

    margin: 0;

    font-size:
        clamp(
            48px,
            5vw,
            82px
        );

    font-weight: 700;

    line-height: .95;

    letter-spacing: -.055em;
}


.store-product h2 strong {
    display: block;

    font-weight: inherit;

    color: var(--accent);
}


.store-product__intro {
    max-width: 580px;

    margin:
        34px
        0
        0;

    font-size: 16px;

    line-height: 1.8;

    color: rgba(18,20,24,.58);
}


/* FEATURES */

.store-product__features {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 33px;
}


.store-product__features span {
    padding:
        9px
        14px;

    border:
        1px solid
        rgba(18,20,24,.12);

    border-radius: 100px;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: .03em;

    color:
        rgba(18,20,24,.58);

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


/* ACCIONES */

.store-product__actions {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 25px;

    margin-top: 38px;
}


.store-product__button {
    min-height: 58px;

    padding:
        0
        25px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    border-radius: 100px;

    background: #111317;

    color: #fff;

    font-size: 13px;

    font-weight: 600;

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


.store-product__button:hover {
    background: var(--accent);

    transform: translateY(-3px);
}


.store-product__link {
    font-size: 12px;

    font-weight: 500;

    color: rgba(18,20,24,.58);

    transition: color .3s ease;
}


.store-product__link:hover {
    color: var(--accent);
}


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

.store-product__visual {
    position: relative;

    min-height: 700px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.store-product__ambient {
    position: absolute;

    width: 620px;
    height: 620px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,106,0,.17),
            rgba(255,106,0,.03) 45%,
            transparent 70%
        );

    filter: blur(8px);
}


/* =========================================================
   DESKTOP
========================================================= */

.store-device--desktop {
    position: relative;

    z-index: 3;

    width: min(100%, 780px);

    overflow: hidden;

    border:
        1px solid
        rgba(0,0,0,.09);

    border-radius: 19px;

    background: #fff;

    box-shadow:
        0 50px 100px
        rgba(21,25,30,.17);

    transform:
        perspective(1300px)
        rotateY(-6deg)
        rotateX(2deg);

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


.store-product__visual:hover
.store-device--desktop {
    transform:
        perspective(1300px)
        rotateY(-2deg)
        rotateX(0deg)
        translateY(-5px);

    box-shadow:
        0 65px 120px
        rgba(21,25,30,.20);
}


.store-device__top {
    height: 50px;

    padding: 0 18px;

    display: grid;

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

    align-items: center;

    background: #f5f5f5;

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


.store-device__dots {
    display: flex;
    gap: 6px;
}


.store-device__dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: rgba(0,0,0,.14);
}


.store-device__dots span:first-child {
    background: var(--accent);
}


.store-device__address {
    justify-self: center;

    font-size: 9px;

    color: rgba(0,0,0,.34);
}


.store-device__screen {
    aspect-ratio: 16 / 9;

    overflow: hidden;
}


.store-device__screen img {
    width: 100%;
    height: 100%;

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

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


.store-product__visual:hover
.store-device__screen img {
    transform: scale(1.012);
}


/* =========================================================
   TELEFONO
========================================================= */

.store-phone {
    position: absolute;

    z-index: 5;

    width: 190px;

    right: -5px;
    bottom: 40px;

    padding:
        10px
        8px
        12px;

    overflow: hidden;

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

    border-radius: 29px;

    background: #111317;

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

    transform: rotate(4deg);

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


.store-product__visual:hover
.store-phone {
    transform:
        rotate(1deg)
        translateY(-7px);
}


.store-phone__speaker {
    width: 52px;
    height: 4px;

    margin:
        1px
        auto
        9px;

    border-radius: 10px;

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


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

    overflow: hidden;

    border-radius: 20px;

    background: #fff;
}


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

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


/* =========================================================
   ADMIN
========================================================= */

.store-admin {
    position: absolute;

    z-index: 6;

    width: 290px;

    top: 26px;
    left: -12px;

    padding:
        14px;

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

    border-radius: 16px;

    background:
        rgba(17,19,23,.92);

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

    transform:
        rotate(-3deg);

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


.store-product__visual:hover
.store-admin {
    transform:
        rotate(-1deg)
        translateY(-5px);
}


.store-admin__header {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 12px;
}


.store-admin__dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #58e69a;

    box-shadow:
        0 0 14px
        rgba(88,230,154,.5);
}


.store-admin small {
    display: block;

    margin-bottom: 2px;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: .08em;

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


.store-admin strong {
    display: block;

    font-size: 11px;

    font-weight: 500;

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


.store-admin img {
    width: 100%;

    border-radius: 9px;
}


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

.store-tag {
    position: absolute;

    z-index: 8;

    display: flex;

    align-items: center;

    gap: 11px;

    padding:
        12px
        15px;

    border:
        1px solid
        rgba(18,20,24,.09);

    border-radius: 13px;

    background:
        rgba(255,255,255,.82);

    backdrop-filter: blur(12px);

    box-shadow:
        0 20px 45px
        rgba(0,0,0,.10);
}


.store-tag--one {
    left: 7%;
    bottom: 8%;
}


.store-tag--two {
    right: 2%;
    top: 13%;
}


.store-tag__icon {
    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,106,0,.10);

    color: var(--accent);

    font-size: 11px;

    font-weight: 700;
}


.store-tag small {
    display: block;

    margin-bottom: 2px;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: .07em;

    color:
        rgba(18,20,24,.38);
}


.store-tag strong {
    display: block;

    font-size: 10px;

    font-weight: 600;

    color:
        rgba(18,20,24,.75);
}


/* =========================================================
   BANDA INFERIOR
========================================================= */

.store-product__strip {
    border-top:
        1px solid
        rgba(18,20,24,.09);

    border-bottom:
        1px solid
        rgba(18,20,24,.09);

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


.store-product__strip-inner {
    width: min(calc(100% - 64px), var(--container));

    min-height: 70px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap:
        18px
        28px;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: .12em;

    text-transform: uppercase;

    color:
        rgba(18,20,24,.42);
}


.store-product__strip-dot {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--accent);
}


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

@media (max-width: 1100px) {

    .store-product__inner {
        grid-template-columns: 1fr;

        gap: 80px;
    }


    .store-product__content {
        max-width: 780px;
    }


    .store-product__visual {
        width: min(100%, 850px);

        margin: auto;
    }

}


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

@media (max-width: 700px) {

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

        padding:
            90px
            0
            115px;

        gap: 65px;
    }


    .store-product h2 {
        font-size:
            clamp(
                43px,
                12vw,
                62px
            );
    }


    .store-product__actions {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }


    .store-product__visual {
        min-height: 510px;
    }


    .store-device--desktop {
        width: 100%;

        transform: none;
    }


    .store-device__top {
        height: 42px;

        grid-template-columns:
            60px
            1fr
            60px;
    }


    .store-admin {
        width: 190px;

        left: -6px;
        top: -15px;
    }


    .store-phone {
        width: 125px;

        right: -4px;
        bottom: 22px;
    }


    .store-tag--one {
        left: 2%;
        bottom: 4%;
    }


    .store-tag--two {
        right: 0;
        top: 18%;
    }


    .store-product__strip-inner {
        width:
            calc(100% - 36px);

        padding:
            20px
            0;

        justify-content: flex-start;
    }

}

/* =========================================================
   TD-05 HOSTING & DOMINIOS
========================================================= */

.hosting {
    position: relative;
    overflow: hidden;

    padding:
        clamp(120px, 11vw, 190px)
        0
        clamp(120px, 11vw, 190px);

    color: #fff;
    background: #0b0c0f;
}

.hosting__inner {
    position: relative;
    z-index: 2;

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


/* =========================================================
   FONDO
========================================================= */

.hosting__background {
    position: absolute;
    inset: 0;

    pointer-events: none;
}

.hosting__grid {
    position: absolute;
    inset: 0;

    opacity: .22;

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

    background-size: 70px 70px;
}

.hosting__glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(100px);
}

.hosting__glow--one {
    width: 500px;
    height: 500px;

    top: 12%;
    left: 8%;

    background: rgba(255,106,0,.08);
}

.hosting__glow--two {
    width: 600px;
    height: 600px;

    right: -10%;
    bottom: 5%;

    background: rgba(80,110,255,.05);
}


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

.hosting__header {
    margin-bottom: 75px;
}

.hosting__eyebrow {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 28px;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: .13em;

    text-transform: uppercase;

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

.hosting__eyebrow-line {
    width: 34px;
    height: 1px;

    background: var(--accent);
}

.hosting__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(300px, .7fr);

    align-items: end;

    gap: clamp(40px, 8vw, 130px);
}

.hosting__heading h2 {
    max-width: 900px;

    margin: 0;

    font-size:
        clamp(
            48px,
            5.4vw,
            90px
        );

    font-weight: 700;

    line-height: .94;

    letter-spacing: -.055em;
}

.hosting__heading h2 strong {
    display: block;

    color: var(--accent);

    font-weight: inherit;
}

.hosting__heading p {
    max-width: 470px;

    margin: 0;

    font-size: 16px;

    line-height: 1.8;

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


/* =========================================================
   BUSCADOR DE DOMINIOS
========================================================= */

.domain-search {
    position: relative;

    margin-bottom: 70px;

    padding:
        clamp(32px, 4vw, 55px);

    overflow: hidden;

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

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.025)
        );

    box-shadow:
        0 35px 80px
        rgba(0,0,0,.22);
}

.domain-search::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -270px;
    right: -150px;

    border-radius: 50%;

    background: rgba(255,106,0,.09);

    filter: blur(30px);
}

.domain-search__top {
    position: relative;
    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 30px;

    margin-bottom: 32px;
}

.domain-search__label {
    display: block;

    margin-bottom: 10px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .13em;

    text-transform: uppercase;

    color: var(--accent);
}

.domain-search__top h3 {
    max-width: 680px;

    margin: 0;

    font-size:
        clamp(
            28px,
            3vw,
            46px
        );

    font-weight: 600;

    line-height: 1.05;

    letter-spacing: -.04em;
}

.domain-search__status {
    font-size: 10px;

    letter-spacing: .12em;

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


/* FORM */

.domain-search__form {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr
        auto;

    gap: 12px;
}

.domain-search__field {
    min-height: 74px;

    display: flex;

    align-items: center;

    padding:
        0
        24px;

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

    border-radius: 15px;

    background:
        rgba(0,0,0,.24);

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

.domain-search__field:focus-within {
    border-color:
        rgba(255,106,0,.6);

    background:
        rgba(0,0,0,.34);
}

.domain-search__www {
    margin-right: 4px;

    font-size:
        clamp(
            19px,
            2vw,
            27px
        );

    font-weight: 400;

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

.domain-search__field input {
    width: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: #fff;

    font-family: inherit;

    font-size:
        clamp(
            19px,
            2vw,
            27px
        );

    font-weight: 400;
}

.domain-search__field input::placeholder {
    color: rgba(255,255,255,.23);
}

.domain-search__button {
    min-width: 200px;

    padding:
        0
        27px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border: 0;

    border-radius: 15px;

    background: var(--accent);

    color: #fff;

    font-family: inherit;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

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

.domain-search__button:hover {
    background: #f2761c;

    transform: translateY(-2px);
}


/* FOOTER */

.domain-search__footer {
    position: relative;
    z-index: 2;

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 12px;

    margin-top: 20px;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: .1em;

    text-transform: uppercase;

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

.domain-search__dot {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--accent);
}


/* =========================================================
   SERVICIOS
========================================================= */

.hosting-services {
    display: grid;

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

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

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

.hosting-service {
    position: relative;

    min-height: 470px;

    padding:
        32px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

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

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

    background:
        rgba(255,255,255,.012);

    transition:
        background-color .7s ease;
}

.hosting-service:hover {
    background-color:
        rgba(255,255,255,.045);
}

.hosting-service--featured {
    background:
        rgba(255,106,0,.055);
}

.hosting-service--featured:hover {
    background:
        rgba(255,106,0,.095);
}


.hosting-service__top {
    display: flex;

    justify-content: space-between;

    align-items: center;
}

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

    letter-spacing: .12em;

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

.hosting-service__arrow {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    border-radius: 50%;

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

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

.hosting-service:hover
.hosting-service__arrow {
    background: var(--accent);

    border-color: var(--accent);

    color: #fff;

    transform: rotate(12deg);
}


.hosting-service__content {
    margin-top: auto;

    padding-top: 90px;
}

.hosting-service__label {
    display: block;

    margin-bottom: 16px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .1em;

    text-transform: uppercase;

    color: var(--accent);
}

.hosting-service h3 {
    margin:
        0
        0
        20px;

    font-size:
        clamp(
            28px,
            2.4vw,
            40px
        );

    font-weight: 500;

    line-height: 1.04;

    letter-spacing: -.04em;
}

.hosting-service p {
    margin: 0;

    font-size: 13px;

    line-height: 1.75;

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

.hosting-service__footer {
    margin-top: 40px;

    padding-top: 19px;

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

    font-size: 10px;

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


/* =========================================================
   TRANSFERENCIA
========================================================= */

.hosting-transfer {
    margin-top: 70px;

    padding:
        clamp(35px, 5vw, 65px);

    display: grid;

    grid-template-columns:
        1.2fr
        .8fr;

    align-items: end;

    gap: 70px;

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

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

.hosting-transfer__eyebrow {
    display: block;

    margin-bottom: 15px;

    font-size: 10px;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: var(--accent);
}

.hosting-transfer h3 {
    max-width: 770px;

    margin: 0;

    font-size:
        clamp(
            32px,
            4vw,
            58px
        );

    font-weight: 600;

    line-height: 1;

    letter-spacing: -.045em;
}

.hosting-transfer h3 strong {
    display: block;

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

    font-weight: inherit;
}

.hosting-transfer__action p {
    margin:
        0
        0
        24px;

    font-size: 13px;

    line-height: 1.75;

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

.hosting-transfer__action a {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    font-size: 13px;

    font-weight: 600;

    color: #fff;
}

.hosting-transfer__action a span {
    color: var(--accent);
}


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

@media (max-width: 1100px) {

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

}


@media (max-width: 900px) {

    .hosting__heading {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .domain-search__top {
        align-items: flex-start;

        flex-direction: column;
    }

    .hosting-transfer {
        grid-template-columns: 1fr;

        gap: 35px;
    }

}


@media (max-width: 700px) {

    .hosting {
        padding:
            90px
            0
            100px;
    }

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

    .hosting__heading h2 {
        font-size:
            clamp(
                43px,
                12vw,
                62px
            );
    }

    .domain-search {
        padding:
            26px
            20px;
    }

    .domain-search__form {
        grid-template-columns: 1fr;
    }

    .domain-search__button {
        min-height: 64px;
        width: 100%;
    }

    .hosting-services {
        grid-template-columns: 1fr;
    }

    .hosting-service {
        min-height: 420px;
    }

    .hosting-transfer {
        padding:
            35px
            0;
    }

}

/* =========================================================
   TD-06 PROYECTOS / CASOS REALES
========================================================= */

.projects {
    position: relative;

    padding:
        clamp(120px, 11vw, 190px)
        0
        clamp(120px, 11vw, 190px);

    overflow: hidden;

    background: #f4f3ef;

    color: #111317;
}


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

    margin: auto;
}


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

.projects__header {
    margin-bottom:
        clamp(80px, 9vw, 145px);
}


.projects__eyebrow {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 30px;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: .13em;

    text-transform: uppercase;

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


.projects__eyebrow-line {
    width: 34px;
    height: 1px;

    background: var(--accent);
}


.projects__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, .65fr);

    align-items: end;

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


.projects__heading h2 {
    max-width: 900px;

    margin: 0;

    font-size:
        clamp(
            48px,
            5.5vw,
            90px
        );

    font-weight: 700;

    line-height: .94;

    letter-spacing: -.055em;
}


.projects__heading h2 strong {
    display: block;

    font-weight: inherit;

    color: var(--accent);
}


.projects__intro {
    max-width: 470px;
}


.projects__intro p {
    margin:
        0
        0
        30px;

    font-size: 15px;

    line-height: 1.8;

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


/* VER TODOS */

.projects__all {
    display: inline-flex;

    align-items: center;

    gap: 17px;

    font-size: 12px;

    font-weight: 600;
}


.projects__all-arrow {
    width: 41px;
    height: 41px;

    display: flex;

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

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

    border-radius: 50%;

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


.projects__all:hover
.projects__all-arrow {
    background: var(--accent);

    border-color: var(--accent);

    color: #fff;

    transform: rotate(12deg);
}


/* =========================================================
   PROYECTO GENERAL
========================================================= */

.project {
    position: relative;
}


.project__visual {
    position: relative;

    display: block;

    overflow: hidden;

    background: #deddd9;
}


.project__image {
    position: relative;

    overflow: hidden;
}


.project__image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 65%,
            rgba(0,0,0,.13)
        );

    opacity: 0;

    transition:
        opacity .7s ease;
}


.project__image img {
    width: 100%;

    display: block;

    object-fit: cover;

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


.project__visual:hover
.project__image img {
    transform: scale(1.018);
}


.project__visual:hover
.project__image::after {
    opacity: 1;
}


/* =========================================================
   BOTÓN VER PROYECTO
========================================================= */

.project__view {
    position: absolute;

    z-index: 5;

    right: 30px;
    bottom: 30px;

    width: 100px;
    height: 100px;

    display: flex;

    flex-direction: column;

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

    border-radius: 50%;

    background: #111317;

    color: #fff;

    font-size: 9px;

    font-weight: 500;

    line-height: 1.3;

    letter-spacing: .04em;

    text-transform: uppercase;

    transform:
        scale(.88);

    opacity: 0;

    transition:
        opacity .45s ease,
        transform .65s
        cubic-bezier(.22,1,.36,1),
        background .4s ease;
}


.project__view strong {
    margin-top: 5px;

    color: var(--accent);

    font-size: 14px;
}


.project__visual:hover
.project__view {
    opacity: 1;

    transform: scale(1);
}


.project__view:hover {
    background: var(--accent);
}


.project__view:hover strong {
    color: #fff;
}


/* =========================================================
   PROYECTO PRINCIPAL
========================================================= */

.project--large {
    margin-bottom:
        clamp(
            120px,
            13vw,
            210px
        );
}


.project--large
.project__visual {
    border-radius: 4px;
}


.project--large
.project__image {
    aspect-ratio: 16 / 8.4;
}


.project--large
.project__image img {
    height: 100%;

    object-position: top center;
}


/* INFORMACIÓN */

.project__information {
    padding-top: 28px;
}


.project__number {
    margin-bottom: 35px;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: .12em;

    text-transform: uppercase;

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


.project__details {
    display: grid;

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

    align-items: start;

    gap:
        clamp(
            50px,
            9vw,
            150px
        );
}


.project__category {
    display: block;

    margin-bottom: 13px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: var(--accent);
}


.project h3 {
    margin: 0;

    font-size:
        clamp(
            35px,
            4vw,
            60px
        );

    font-weight: 600;

    line-height: .98;

    letter-spacing: -.045em;
}


.project h3 span {
    display: block;

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


.project__description p,
.project--secondary p {
    max-width: 500px;

    margin: 0;

    font-size: 13px;

    line-height: 1.8;

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


/* =========================================================
   TECNOLOGÍAS
========================================================= */

.project__technologies {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 24px;
}


.project__technologies span {
    padding:
        7px
        11px;

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

    border-radius: 100px;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: .04em;

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


/* =========================================================
   PROYECTOS SECUNDARIOS
========================================================= */

.projects__secondary {
    display: grid;

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

    align-items: start;

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

    margin-bottom:
        clamp(
            120px,
            13vw,
            200px
        );
}


.project--secondary
.project__visual {
    margin-bottom: 27px;
}


.project--secondary
.project__image {
    aspect-ratio: 4 / 3;
}


.project--secondary
.project__image img {
    height: 100%;

    object-position: top center;
}


.project--secondary
.project__number {
    margin-bottom: 25px;
}


.project--secondary h3 {
    margin-bottom: 24px;

    font-size:
        clamp(
            31px,
            3.1vw,
            47px
        );
}


.project--offset {
    margin-top: 150px;
}


/* =========================================================
   CIERRE
========================================================= */

.projects__closing {
    padding:
        clamp(
            50px,
            6vw,
            85px
        )
        0;

    display: grid;

    grid-template-columns:
        .35fr
        1fr
        auto;

    align-items: center;

    gap: 50px;

    border-top:
        1px solid
        rgba(17,19,23,.13);

    border-bottom:
        1px solid
        rgba(17,19,23,.13);
}


.projects__closing-number {
    font-size: 9px;

    font-weight: 500;

    letter-spacing: .12em;

    text-transform: uppercase;

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


.projects__closing p {
    max-width: 650px;

    margin: 0;

    font-size:
        clamp(
            23px,
            2.6vw,
            39px
        );

    font-weight: 500;

    line-height: 1.15;

    letter-spacing: -.035em;
}


.projects__closing p strong {
    display: block;

    color: var(--accent);

    font-weight: inherit;
}


.projects__closing a {
    display: flex;

    align-items: center;

    gap: 18px;

    font-size: 11px;

    font-weight: 600;

    white-space: nowrap;
}


.projects__closing a span {
    color: var(--accent);

    transition:
        transform .35s ease;
}


.projects__closing a:hover span {
    transform: translateX(5px);
}


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

@media (max-width: 950px) {

    .projects__heading {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .projects__intro {
        max-width: 620px;
    }


    .project__details {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .projects__closing {
        grid-template-columns:
            1fr
            2fr;

        gap: 30px;
    }


    .projects__closing a {
        grid-column: 2;
    }

}


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

@media (max-width: 700px) {

    .projects {
        padding:
            90px
            0
            100px;
    }


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


    .projects__heading h2 {
        font-size:
            clamp(
                43px,
                12vw,
                62px
            );
    }


    .project--large
    .project__image {
        aspect-ratio: 4 / 3;
    }


    .projects__secondary {
        grid-template-columns: 1fr;

        gap: 90px;
    }


    .project--offset {
        margin-top: 0;
    }


    .project__view {
        width: 75px;
        height: 75px;

        right: 15px;
        bottom: 15px;

        opacity: 1;

        transform: scale(1);

        font-size: 7px;
    }


    .projects__closing {
        grid-template-columns: 1fr;

        gap: 25px;

        padding:
            45px
            0;
    }


    .projects__closing a {
        grid-column: auto;
    }

}
/* =========================================================
   TD-07 CREAMOS
========================================================= */

.creates {
    position: relative;

    padding:
        clamp(120px, 11vw, 190px)
        0
        clamp(120px, 11vw, 190px);

    overflow: hidden;

    background: #111317;

    color: #fff;
}

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

    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.creates__header {
    margin-bottom:
        clamp(75px, 8vw, 125px);
}

.creates__eyebrow {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 30px;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: .13em;

    text-transform: uppercase;

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

.creates__eyebrow-line {
    width: 34px;
    height: 1px;

    background: var(--accent);
}

.creates__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, .65fr);

    align-items: end;

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

.creates__heading h2 {
    max-width: 900px;

    margin: 0;

    font-size:
        clamp(
            48px,
            5.5vw,
            90px
        );

    font-weight: 700;

    line-height: .94;

    letter-spacing: -.055em;
}

.creates__heading h2 strong {
    display: block;

    color: var(--accent);

    font-weight: inherit;
}

.creates__heading p {
    max-width: 480px;

    margin: 0;

    font-size: 15px;

    line-height: 1.8;

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


/* =========================================================
   FEATURE PRINCIPAL
========================================================= */

.create-feature {
    margin-bottom:
        clamp(110px, 12vw, 190px);
}

.create-feature__visual {
    position: relative;

    display: block;

    aspect-ratio: 16 / 8;

    overflow: hidden;

    background: #1b1e23;
}

.create-feature__visual img {
    width: 100%;
    height: 100%;

    object-fit: cover;

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

.create-feature__visual:hover img {
    transform: scale(1.02);
}

.create-feature__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.38),
            transparent 55%
        );
}

.create-feature__badge {
    position: absolute;

    top: 28px;
    left: 28px;

    padding:
        9px
        13px;

    border-radius: 100px;

    background:
        rgba(17,19,23,.76);

    backdrop-filter: blur(12px);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .1em;

    text-transform: uppercase;

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

.create-feature__view {
    position: absolute;

    right: 30px;
    bottom: 30px;

    width: 95px;
    height: 95px;

    display: flex;

    flex-direction: column;

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

    gap: 4px;

    border-radius: 50%;

    background: rgba(17,19,23,.88);

    color: #fff;

    font-size: 9px;

    font-weight: 500;

    text-transform: uppercase;

    opacity: 0;

    transform: scale(.9);

    transition:
        opacity .45s ease,
        transform .65s cubic-bezier(.22,1,.36,1),
        background .4s ease;
}

.create-feature__view strong {
    color: var(--accent);

    font-size: 14px;
}

.create-feature__visual:hover
.create-feature__view {
    opacity: 1;

    transform: scale(1);
}

.create-feature__view:hover {
    background: var(--accent);
}

.create-feature__view:hover strong {
    color: #fff;
}


/* =========================================================
   INFORMACIÓN PRINCIPAL
========================================================= */

.create-feature__info {
    padding-top: 28px;
}

.create-feature__number {
    margin-bottom: 35px;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: .12em;

    text-transform: uppercase;

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

.create-feature__content {
    display: grid;

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

    gap: clamp(50px, 9vw, 150px);

    align-items: start;
}

.create-feature__label {
    display: block;

    margin-bottom: 14px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: var(--accent);
}

.create-feature h3 {
    margin: 0;

    font-size:
        clamp(
            38px,
            4.4vw,
            66px
        );

    font-weight: 600;

    line-height: .98;

    letter-spacing: -.045em;
}

.create-feature h3 span {
    display: block;

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

.create-feature__description p {
    margin:
        0
        0
        25px;

    font-size: 13px;

    line-height: 1.8;

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

.create-feature__description a {
    display: inline-flex;

    align-items: center;

    gap: 17px;

    font-size: 12px;

    font-weight: 600;
}

.create-feature__description a span {
    color: var(--accent);

    transition: transform .35s ease;
}

.create-feature__description a:hover span {
    transform: translateX(5px);
}


/* =========================================================
   GRID SECUNDARIO
========================================================= */

.creates__grid {
    display: grid;

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

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

    align-items: start;

    margin-bottom:
        clamp(120px, 12vw, 190px);
}

.create-card--offset {
    margin-top: 140px;
}

.create-card__visual {
    position: relative;

    display: block;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #1c1f24;
}

.create-card__visual img {
    width: 100%;
    height: 100%;

    object-fit: cover;

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

.create-card__visual:hover img {
    transform: scale(1.025);
}

.create-card__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.24),
            transparent 55%
        );
}

.create-card__arrow {
    position: absolute;

    right: 22px;
    bottom: 22px;

    width: 48px;
    height: 48px;

    display: flex;

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

    border-radius: 50%;

    background: rgba(17,19,23,.84);

    color: #fff;

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

.create-card__visual:hover
.create-card__arrow {
    background: var(--accent);

    transform: rotate(12deg);
}

.create-card__info {
    padding-top: 26px;
}

.create-card__number {
    display: block;

    margin-bottom: 20px;

    font-size: 9px;

    letter-spacing: .12em;

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

.create-card__label {
    display: block;

    margin-bottom: 13px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: var(--accent);
}

.create-card h3 {
    margin:
        0
        0
        20px;

    font-size:
        clamp(
            32px,
            3.4vw,
            50px
        );

    font-weight: 600;

    line-height: 1;

    letter-spacing: -.045em;
}

.create-card h3 span {
    display: block;

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

.create-card p {
    max-width: 500px;

    margin: 0;

    font-size: 13px;

    line-height: 1.8;

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


/* =========================================================
   CIERRE
========================================================= */

.creates__closing {
    padding:
        clamp(48px, 6vw, 80px)
        0;

    display: grid;

    grid-template-columns:
        1fr
        minmax(320px, .7fr);

    gap: 80px;

    align-items: end;

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

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

.creates__closing-label {
    display: block;

    margin-bottom: 15px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: var(--accent);
}

.creates__closing h3 {
    margin: 0;

    font-size:
        clamp(
            31px,
            4vw,
            56px
        );

    font-weight: 600;

    line-height: 1;

    letter-spacing: -.045em;
}

.creates__closing-action p {
    margin:
        0
        0
        22px;

    font-size: 13px;

    line-height: 1.8;

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

.creates__closing-action a {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    font-size: 12px;

    font-weight: 600;
}

.creates__closing-action a span {
    color: var(--accent);
}


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

@media (max-width: 900px) {

    .creates__heading,
    .create-feature__content,
    .creates__closing {
        grid-template-columns: 1fr;

        gap: 35px;
    }

}

@media (max-width: 700px) {

    .creates {
        padding:
            90px
            0
            100px;
    }

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

    .creates__heading h2 {
        font-size:
            clamp(
                43px,
                12vw,
                62px
            );
    }

    .create-feature__visual {
        aspect-ratio: 4 / 3;
    }

    .create-feature__view {
        opacity: 1;

        transform: scale(1);

        width: 75px;
        height: 75px;

        right: 15px;
        bottom: 15px;
    }

    .creates__grid {
        grid-template-columns: 1fr;

        gap: 80px;
    }

    .create-card--offset {
        margin-top: 0;
    }

}

/* =========================================================
   TD-08 RECURSOS / BLOG / SOPORTE
========================================================= */

.resources {
    padding:
        clamp(120px, 11vw, 190px)
        0;

    background: #f5f5f3;

    color: #111317;
}

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

    margin: auto;
}

.resources__header {
    margin-bottom: 75px;
}

.resources__eyebrow {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 28px;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: .13em;

    text-transform: uppercase;

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

.resources__eyebrow-line {
    width: 34px;
    height: 1px;

    background: var(--accent);
}

.resources__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, .65fr);

    align-items: end;

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

.resources__heading h2 {
    margin: 0;

    font-size:
        clamp(
            48px,
            5.5vw,
            90px
        );

    font-weight: 700;

    line-height: .94;

    letter-spacing: -.055em;
}

.resources__heading h2 strong {
    display: block;

    color: var(--accent);

    font-weight: inherit;
}

.resources__heading p {
    max-width: 480px;

    margin: 0;

    font-size: 15px;

    line-height: 1.8;

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


/* BUSCADOR */

.resources-search {
    padding:
        clamp(30px, 4vw, 52px);

    display: grid;

    grid-template-columns:
        .7fr
        1.3fr;

    gap: 50px;

    align-items: center;

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

    background: #fff;
}

.resources-search__text span {
    display: block;

    margin-bottom: 8px;

    font-size: 10px;

    letter-spacing: .1em;

    text-transform: uppercase;

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

.resources-search__text strong {
    font-size:
        clamp(
            24px,
            2.8vw,
            42px
        );

    font-weight: 600;

    letter-spacing: -.04em;
}

.resources-search__form {
    display: grid;

    grid-template-columns:
        1fr
        auto;

    gap: 10px;
}

.resources-search__form input {
    min-height: 62px;

    padding:
        0
        20px;

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

    outline: 0;

    font-family: inherit;

    font-size: 14px;
}

.resources-search__form input:focus {
    border-color: var(--accent);
}

.resources-search__form button {
    min-width: 150px;

    border: 0;

    padding:
        0
        22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background: #111317;

    color: #fff;

    font-family: inherit;

    font-weight: 600;

    cursor: pointer;

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

.resources-search__form button:hover {
    background: var(--accent);

    transform: translateY(-2px);
}


/* CATEGORÍAS */

.resources-categories {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin: 28px 0 65px;
}

.resources-categories a {
    padding:
        9px
        14px;

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

    border-radius: 100px;

    font-size: 10px;

    color: rgba(17,19,23,.55);

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

.resources-categories a:hover {
    background: #111317;

    border-color: #111317;

    color: #fff;
}


/* ARTÍCULOS */

.resources-grid {
    display: grid;

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

    border-top:
        1px solid
        rgba(17,19,23,.12);

    border-left:
        1px solid
        rgba(17,19,23,.12);
}

.resource-card {
    min-height: 390px;

    padding:
        32px;

    display: flex;

    flex-direction: column;

    border-right:
        1px solid
        rgba(17,19,23,.12);

    border-bottom:
        1px solid
        rgba(17,19,23,.12);

    transition:
        background-color .65s ease;
}

.resource-card:hover {
    background: #fff;
}

.resource-card__category {
    margin-bottom: 55px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .11em;

    text-transform: uppercase;

    color: var(--accent);
}

.resource-card h3 {
    margin:
        0
        0
        22px;

    font-size:
        clamp(
            22px,
            2.1vw,
            31px
        );

    font-weight: 600;

    line-height: 1.08;

    letter-spacing: -.035em;
}

.resource-card p {
    margin: 0;

    font-size: 12px;

    line-height: 1.75;

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

.resource-card a {
    margin-top: auto;

    padding-top: 35px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    font-size: 11px;

    font-weight: 600;
}

.resource-card a span {
    color: var(--accent);
}


/* FOOTER RECURSOS */

.resources__footer {
    padding-top: 38px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}

.resources__footer p {
    margin: 0;

    font-size: 12px;

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

.resources__footer a {
    display: flex;

    align-items: center;

    gap: 14px;

    font-size: 11px;

    font-weight: 600;
}

.resources__footer a span {
    color: var(--accent);
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .resources__heading,
    .resources-search {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 700px) {

    .resources {
        padding:
            90px
            0
            100px;
    }

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

    .resources__heading h2 {
        font-size:
            clamp(
                43px,
                12vw,
                62px
            );
    }

    .resources-search__form {
        grid-template-columns: 1fr;
    }

    .resources-search__form button {
        min-height: 58px;
    }

    .resources__footer {
        align-items: flex-start;

        flex-direction: column;
    }

}

/* =========================================================
   TD-09 CONVERSIÓN FINAL
========================================================= */

.final-cta {
    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #090a0c;

    color: #fff;
}

.final-cta__background {
    position: absolute;

    inset: 0;

    pointer-events: none;
}

.final-cta__glow {
    position: absolute;

    width: 700px;
    height: 700px;

    right: -170px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,106,0,.16),
            transparent 65%
        );
}

.final-cta__inner {
    position: relative;

    z-index: 2;

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

    margin: auto;

    padding:
        120px
        0;
}

.final-cta__eyebrow {
    display: block;

    margin-bottom: 30px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .14em;

    text-transform: uppercase;

    color: var(--accent);
}

.final-cta h2 {
    max-width: 1100px;

    margin: 0;

    font-size:
        clamp(
            55px,
            7vw,
            118px
        );

    font-weight: 700;

    line-height: .88;

    letter-spacing: -.062em;
}

.final-cta h2 span {
    display: block;

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

.final-cta p {
    max-width: 620px;

    margin:
        40px
        0
        0;

    font-size: 16px;

    line-height: 1.8;

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

.final-cta__actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 24px;

    margin-top: 42px;
}

.final-cta__button {
    min-height: 62px;

    padding:
        0
        28px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 28px;

    border-radius: 100px;

    background: var(--accent);

    color: #fff;

    font-size: 13px;

    font-weight: 600;

    transition:
        transform .45s ease,
        background .45s ease;
}

.final-cta__button:hover {
    background: #f2761c;

    transform: translateY(-3px);
}

.final-cta__whatsapp {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    font-size: 12px;

    font-weight: 500;

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

.final-cta__whatsapp:hover {
    color: #fff;
}


@media (max-width: 700px) {

    .final-cta {
        min-height: auto;
    }

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

        padding:
            100px
            0;
    }

    .final-cta h2 {
        font-size:
            clamp(
                48px,
                14vw,
                72px
            );
    }

}
/* =========================================================
   TD - NUESTRA FAMILIA
   CARRUSEL DE MARCAS
   TICODESIGN
========================================================= */

.td-family {
    position: relative;
    overflow: hidden;

    padding:
        clamp(75px, 7vw, 110px)
        0
        70px;

    background: #ffffff;
    color: #111317;

    border-bottom:
        1px solid
        rgba(17, 19, 23, .08);
}


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

.td-family__inner {
    width:
        min(
            calc(100% - 64px),
            var(--container)
        );

    margin: auto;
}


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

.td-family__heading {
    display: grid;

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

    gap:
        clamp(
            40px,
            8vw,
            120px
        );

    align-items: end;

    margin-bottom: 55px;
}


.td-family__eyebrow {
    display: block;

    margin-bottom: 13px;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .14em;
    text-transform: uppercase;

    color: var(--accent);
}


.td-family__heading h2 {
    margin: 0;

    font-size:
        clamp(
            35px,
            4vw,
            58px
        );

    font-weight: 600;

    line-height: 1;

    letter-spacing: -.045em;
}


.td-family__heading h2 strong {
    display: block;

    font-weight: inherit;

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


.td-family__heading p {
    max-width: 470px;

    margin: 0;

    font-size: 12px;

    line-height: 1.8;

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


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

.td-family__marquee {
    position: relative;

    width: 100%;

    overflow: hidden;

    padding:
        15px
        0
        25px;
}


/* =========================================================
   TRACK
========================================================= */

.td-family__track {
    display: flex;

    align-items: center;

    width: max-content;

    animation:
        tdFamilyScroll
        38s
        linear
        infinite;

    will-change: transform;
}


/* PAUSA AL PASAR EL MOUSE */

.td-family__marquee:hover
.td-family__track {
    animation-play-state: paused;
}


/* =========================================================
   GRUPOS DEL CARRUSEL
========================================================= */

.td-family__group {
    display: flex;

    align-items: center;

    gap:
        clamp(
            55px,
            6vw,
            100px
        );

    flex-shrink: 0;

    padding-right:
        clamp(
            55px,
            6vw,
            100px
        );
}


/* =========================================================
   LOGOS / MARCAS

   IMPORTANTE:
   Ya NO usamos .td-family__logo
   Ahora usamos .td-family__brand
========================================================= */

.td-family__brand {
    position: relative;

    width:
        clamp(
            200px,
            17vw,
            350px
        );

    height: 180px;

    display: flex;

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

    flex-shrink: 0;

    padding:
        15px
        10px;
}


/* =========================================================
   IMAGEN DEL LOGO
========================================================= */

.td-family__brand img {
    display: block;

    width: auto;
    height: auto;

    max-width: 100%;
    max-height: 150px;

    object-fit: contain;

    opacity: .48;

    filter:
        grayscale(1);

    transition:
        opacity .5s ease,
        filter .5s ease,
        transform .55s
        cubic-bezier(.22, 1, .36, 1);
}


/* =========================================================
   DETALLE NARANJA DEBAJO DEL LOGO
========================================================= */

.td-family__brand::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    transform:
        translateX(-50%);

    border-radius: 10px;

    background: var(--accent);

    opacity: .85;

    transition:
        width .5s
        cubic-bezier(.22, 1, .36, 1),
        opacity .4s ease;
}


/* =========================================================
   HOVER DEL LOGO
========================================================= */

.td-family__brand:hover img {
    opacity: 1;

    filter:
        grayscale(0);

    transform:
        translateY(-4px)
        scale(1.025);
}


.td-family__brand:hover::after {
    width: 32px;

    opacity: 1;
}


/* =========================================================
   DESVANECIMIENTO LATERAL
========================================================= */

.td-family__fade {
    position: absolute;

    z-index: 3;

    top: 0;
    bottom: 0;

    width:
        clamp(
            45px,
            9vw,
            170px
        );

    pointer-events: none;
}


.td-family__fade--left {
    left: 0;

    background:
        linear-gradient(
            90deg,
            #ffffff 10%,
            rgba(255, 255, 255, .92) 35%,
            transparent
        );
}


.td-family__fade--right {
    right: 0;

    background:
        linear-gradient(
            270deg,
            #ffffff 10%,
            rgba(255, 255, 255, .92) 35%,
            transparent
        );
}


/* =========================================================
   ANIMACIÓN INFINITA
========================================================= */

@keyframes tdFamilyScroll {

    from {
        transform:
            translateX(0);
    }

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

}


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

@media (max-width: 1000px) {

    .td-family__brand {
        width: 230px;
        height: 150px;
    }


    .td-family__brand img {
        max-width: 100%;
        max-height: 120px;
    }


    .td-family__group {
        gap: 55px;

        padding-right: 55px;
    }

}


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

@media (max-width: 800px) {

    .td-family {
        padding:
            70px
            0
            55px;
    }


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


    .td-family__heading {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 40px;
    }


    .td-family__heading h2 {
        font-size:
            clamp(
                35px,
                10vw,
                50px
            );
    }


    .td-family__heading p {
        max-width: 520px;
    }


    .td-family__marquee {
        padding:
            10px
            0
            20px;
    }


    .td-family__group {
        gap: 45px;

        padding-right: 45px;
    }


    .td-family__brand {
        width: 180px;
        height: 120px;

        padding:
            10px
            5px;
    }


    .td-family__brand img {
        max-width: 100%;
        max-height: 95px;
    }


    .td-family__track {
        animation-duration: 30s;
    }


    .td-family__fade {
        width: 45px;
    }

}


/* =========================================================
   MOBILE PEQUEÑO
========================================================= */

@media (max-width: 480px) {

    .td-family {
        padding:
            60px
            0
            45px;
    }


    .td-family__heading {
        margin-bottom: 30px;
    }


    .td-family__group {
        gap: 35px;

        padding-right: 35px;
    }


    .td-family__brand {
        width: 160px;
        height: 105px;
    }


    .td-family__brand img {
        max-height: 82px;
    }


    .td-family__track {
        animation-duration: 27s;
    }

}


/* =========================================================
   ACCESIBILIDAD - REDUCIR MOVIMIENTO
========================================================= */

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

    .td-family__track {
        animation: none;

        transform: none;
    }


    .td-family__marquee {
        overflow-x: auto;

        scrollbar-width: thin;
    }


    .td-family__fade {
        display: none;
    }

}
/* =========================================================
   TD-10 FOOTER TICODESIGN
========================================================= */

.td-footer {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 55%,
            rgba(255,106,0,.035),
            transparent 30%
        ),
        #080a0d;

    color: #fff;
}


/* LINEA NARANJA SUPERIOR */

.td-footer__accent {
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #9e4b0b,
            var(--accent),
            #ff9a3d,
            var(--accent),
            #9e4b0b
        );
}


.td-footer__inner {
    width: min(calc(100% - 64px), var(--container));

    margin: auto;
}


/* =========================================================
   GRID PRINCIPAL
========================================================= */

.td-footer__grid {
    padding:
        95px
        0
        85px;

    display: grid;

    grid-template-columns:
        1.1fr
        .7fr
        1.15fr
        .8fr;

    gap:
        clamp(
            45px,
            6vw,
            95px
        );
}


/* =========================================================
   LOGO / MARCA
========================================================= */

.td-footer__logo {
    display: inline-block;
}


.td-footer__logo img {
    width: 280px;
}


/* BOLITA NARANJA */

.td-footer__brand-line {
    position: relative;

    width: 100%;

    max-width: 300px;

    height: 1px;

    margin:
        40px
        0
        34px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,106,0,.5),
            transparent
        );
}


.td-footer__brand-line span {
    position: absolute;

    top: 50%;
    left: 48%;

    width: 9px;
    height: 9px;

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

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 8px rgba(255,106,0,.9),
        0 0 18px rgba(255,106,0,.4);
}


.td-footer__brand p {
    max-width: 310px;

    margin: 0;

    font-size: 13px;

    line-height: 1.9;

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


/* BOTON */

.td-footer__contact-button {
    min-height: 54px;

    margin-top: 32px;

    padding:
        0
        22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    border:
        1px solid
        rgba(255,106,0,.7);

    border-radius: 14px;

    font-size: 12px;

    font-weight: 600;

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


.td-footer__contact-button:hover {
    background: var(--accent);

    border-color: var(--accent);

    transform: translateY(-2px);
}


/* =========================================================
   COLUMNAS
========================================================= */

.td-footer__column h3 {
    margin: 0;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: -.02em;
}


.td-footer__title-line {
    display: block;

    width: 38px;
    height: 2px;

    margin:
        14px
        0
        28px;

    background: var(--accent);
}


/* =========================================================
   NAVEGACION
========================================================= */

.td-footer__nav {
    display: flex;

    flex-direction: column;

    gap: 17px;
}


.td-footer__nav a {
    display: flex;

    align-items: center;

    gap: 11px;

    font-size: 12px;

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

    transition:
        color .3s ease,
        transform .3s ease;
}


.td-footer__nav a:hover {
    color: #fff;

    transform: translateX(3px);
}


.td-footer__bullet {
    width: 4px;
    height: 4px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--accent);
}


/* =========================================================
   CONTACTO
========================================================= */

.td-footer__contact-item {
    padding:
        13px
        0;

    display: grid;

    grid-template-columns:
        44px
        1fr;

    gap: 14px;

    align-items: start;

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


.td-footer__contact-item:last-child {
    border-bottom: 0;
}


.td-footer__icon {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    border-radius: 12px;

    background:
        rgba(255,255,255,.035);

    color: var(--accent);

    font-size: 14px;
}


.td-footer__contact-item strong {
    display: block;

    margin-bottom: 5px;

    font-size: 10px;

    font-weight: 600;

    color: #fff;
}


.td-footer__contact-item p,
.td-footer__contact-item a {
    margin: 0;

    font-size: 11px;

    line-height: 1.65;

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


.td-footer__contact-item a:hover {
    color: var(--accent);
}


/* =========================================================
   REDES SOCIALES
========================================================= */

.td-footer__social-icons {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.td-footer__social-icons a {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    border-radius: 50%;

    font-size: 13px;

    font-weight: 600;

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

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


.td-footer__social-icons a:hover {
    background: var(--accent);

    border-color: var(--accent);

    color: #fff;

    transform: translateY(-3px);
}


/* MENSAJE */

.td-footer__social-message {
    margin-top: 50px;

    padding-top: 25px;

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


.td-footer__social-message span {
    display: block;

    margin-bottom: 8px;

    font-size: 11px;

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


.td-footer__social-message strong {
    display: block;

    font-size: 22px;

    font-weight: 600;

    line-height: 1.15;

    letter-spacing: -.04em;

    color: var(--accent);
}


.td-footer__social-message p {
    margin:
        7px
        0
        0;

    font-size: 12px;

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


/* =========================================================
   PIE INFERIOR
========================================================= */

.td-footer__bottom {
    min-height: 100px;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        auto;

    align-items: center;

    gap: 35px;

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

    font-size: 9px;

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


.td-footer__bottom-center {
    text-align: center;
}


.td-footer__bottom-center strong {
    color: var(--accent);

    font-weight: 600;
}


.td-footer__legal {
    display: flex;

    align-items: center;

    gap: 18px;
}


.td-footer__legal a {
    color:
        rgba(255,255,255,.42);

    transition: color .3s ease;
}


.td-footer__legal a:hover {
    color: #fff;
}


.td-footer__legal span {
    width: 1px;
    height: 18px;

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


/* =========================================================
   BOTÓN SCROLL TOP
========================================================= */

.td-scroll-top {
    position: fixed;

    z-index: 950;

    right: 92px;
    bottom: 28px;

    width: 54px;
    height: 54px;

    display: flex;

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

    border:
        1px solid
        rgba(255,106,0,.65);

    border-radius: 50%;

    background:
        rgba(9,10,12,.92);

    color: #fff;

    font-family: inherit;

    font-size: 18px;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        opacity .4s ease,
        visibility .4s ease,
        transform .4s ease,
        background .35s ease;
}


.td-scroll-top.is-visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.td-scroll-top:hover {
    background: var(--accent);
}


/* =========================================================
   WHATSAPP FLOTANTE
========================================================= */

.td-whatsapp {
    position: fixed;

    z-index: 960;

    right: 24px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: flex;

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

    border-radius: 50%;

    background: var(--accent);

    color: #fff;

    box-shadow:
        0 14px 38px
        rgba(0,0,0,.3);

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


.td-whatsapp:hover {
    transform:
        translateY(-4px)
        scale(1.04);

    box-shadow:
        0 18px 45px
        rgba(0,0,0,.4);
}


.td-whatsapp__icon {
    position: relative;

    z-index: 3;

    font-size: 20px;
}


/* PULSO */

.td-whatsapp__pulse {
    position: absolute;

    inset: -5px;

    border:
        1px solid
        rgba(255,106,0,.48);

    border-radius: 50%;

    animation:
        tdWhatsappPulse
        2.4s
        ease-out
        infinite;
}


@keyframes tdWhatsappPulse {

    0% {
        transform: scale(.85);
        opacity: .8;
    }

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

    100% {
        opacity: 0;
    }

}


/* TOOLTIP */

.td-whatsapp__tooltip {
    position: absolute;

    right: 70px;

    padding:
        8px
        11px;

    border-radius: 7px;

    background: #fff;

    color: #111317;

    font-size: 10px;

    font-weight: 500;

    white-space: nowrap;

    opacity: 0;

    visibility: hidden;

    transform:
        translateX(7px);

    transition:
        opacity .35s ease,
        visibility .35s ease,
        transform .35s ease;
}


.td-whatsapp:hover
.td-whatsapp__tooltip {
    opacity: 1;

    visibility: visible;

    transform:
        translateX(0);
}


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

@media (max-width: 1100px) {

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


    .td-footer__bottom {
        grid-template-columns:
            1fr
            1fr;
    }


    .td-footer__legal {
        grid-column:
            1 / 3;
    }

}


@media (max-width: 700px) {

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


    .td-footer__grid {
        padding:
            70px
            0
            60px;

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .td-footer__bottom {
        padding:
            30px
            0;

        grid-template-columns: 1fr;

        align-items: flex-start;
    }


    .td-footer__bottom-center {
        text-align: left;
    }


    .td-footer__legal {
        grid-column: auto;

        flex-wrap: wrap;
    }


    .td-scroll-top {
        right: 84px;

        bottom: 22px;

        width: 50px;
        height: 50px;
    }


    .td-whatsapp {
        right: 20px;

        bottom: 20px;

        width: 54px;
        height: 54px;
    }


    .td-whatsapp__tooltip {
        display: none;
    }

}