/* =========================================================
   TICODESIGN — CREAMOS
========================================================= */

.tdc-page {
    --tdc-orange: #f28a1a;
    --tdc-orange-dark: #d96f08;
    --tdc-green: #2f9b57;
    --tdc-green-dark: #247743;
    --tdc-black: #191714;
    --tdc-brown-black: #211c18;
    --tdc-text: #292824;
    --tdc-muted: #6f6b65;
    --tdc-soft: #f6f3ee;
    --tdc-line: #e7e1d8;
    --tdc-white: #ffffff;

    overflow: hidden;
    color: var(--tdc-text);
    background: var(--tdc-white);
    font-family: "Poppins", sans-serif;
}

.tdc-page,
.tdc-page * {
    box-sizing: border-box;
}

.tdc-page a {
 
    text-decoration: none;
}

.tdc-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* =========================================================
   TEXTOS GENERALES
========================================================= */

.tdc-eyebrow,
.tdc-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--tdc-orange);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.tdc-eyebrow::before,
.tdc-section-eyebrow::before {
    width: 25px;
    height: 3px;
    border-radius: 10px;
    background: currentColor;
    content: "";
}

.tdc-section-eyebrow--light {
    color: #ffad4b;
}

.tdc-page h1,
.tdc-page h2,
.tdc-page h3,
.tdc-page p {
    margin-top: 0;
}

.tdc-page h1,
.tdc-page h2,
.tdc-page h3 {
    color: var(--tdc-black);
    line-height: 1.1;
}

.tdc-page p {
    color: var(--tdc-muted);
    line-height: 1.8;
}


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

.tdc-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
}

.tdc-actions--center {
    justify-content: center;
}

.tdc-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.91rem;
    font-weight: 750;
    line-height: 1.2;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
}

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

.tdc-button:focus-visible,
.tdc-page a:focus-visible,
.tdc-page summary:focus-visible {
    outline: 3px solid rgba(242, 138, 26, 0.42);
    outline-offset: 4px;
}

.tdc-button--primary {
    color: #1c1712;
    background: var(--tdc-orange);
    box-shadow: 0 16px 35px rgba(242, 138, 26, 0.22);
}

.tdc-button--primary:hover {
    background: #ff9e2c;
    box-shadow: 0 20px 42px rgba(242, 138, 26, 0.3);
}

.tdc-button--secondary {
    color: var(--tdc-white);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.tdc-button--secondary:hover {
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.12);
}

.tdc-button--dark {
    color: var(--tdc-white);
    background: var(--tdc-black);
}

.tdc-button--dark:hover {
    background: #000000;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
}

.tdc-button--outline-dark {
    color: var(--tdc-black);
    border-color: rgba(25, 23, 20, 0.28);
    background: transparent;
}

.tdc-button--outline-dark:hover {
    border-color: var(--tdc-black);
    background: rgba(25, 23, 20, 0.05);
}


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

.tdc-hero {
    position: relative;
    min-height: 700px;
    padding:
        clamp(150px, 15vw, 190px)
        0
        clamp(95px, 10vw, 135px);
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(
            135deg,
            #171411 0%,
            #211b17 52%,
            #151310 100%
        );
}

.tdc-hero::before {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.12;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.8),
            transparent 90%
        );
    content: "";
}

.tdc-hero-glow {
    position: absolute;
    z-index: -2;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.tdc-hero-glow--orange {
    top: -230px;
    right: 5%;
    background: rgba(242, 138, 26, 0.2);
}

.tdc-hero-glow--green {
    bottom: -270px;
    left: 5%;
    background: rgba(47, 155, 87, 0.15);
}

.tdc-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
    align-items: center;
    gap: clamp(45px, 8vw, 100px);
}

.tdc-hero-content {
    position: relative;
    z-index: 2;
}

.tdc-hero h1 {
    max-width: 760px;
    margin: 22px 0 25px;
    color: var(--tdc-white);
    font-size: clamp(2.9rem, 6vw, 5.4rem);
    font-weight: 800;
    letter-spacing: -0.055em;
}

.tdc-hero h1 span {
    display: block;
    color: var(--tdc-orange);
}

.tdc-hero-description {
    max-width: 680px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: clamp(1rem, 1.7vw, 1.12rem);
}

.tdc-hero-phrase {
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.74) !important;
    font-size: 0.93rem;
}

.tdc-hero-phrase strong {
    color: var(--tdc-white);
}


/* =========================================================
   GRÁFICO DEL HERO
========================================================= */

.tdc-hero-art {
    position: relative;
    min-height: 475px;
}

.tdc-idea-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    display: flex;
    width: 215px;
    height: 215px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(255, 255, 255, 0.16),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            var(--tdc-orange),
            var(--tdc-orange-dark)
        );
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.42),
        0 0 0 18px rgba(242, 138, 26, 0.07);
    transform: translate(-50%, -50%);
}

.tdc-idea-core span {
    margin-bottom: 8px;
    color: rgba(25, 23, 20, 0.68);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tdc-idea-core strong {
    color: #171411;
    font-size: 1.55rem;
    line-height: 1.03;
    text-align: center;
}

.tdc-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.tdc-orbit::before {
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--tdc-green);
    box-shadow: 0 0 25px rgba(47, 155, 87, 0.8);
    content: "";
}

.tdc-orbit--one {
    width: 335px;
    height: 335px;
    animation: tdcOrbit 18s linear infinite;
}

.tdc-orbit--two {
    width: 445px;
    height: 445px;
    border-style: dashed;
    opacity: 0.6;
    animation: tdcOrbitReverse 28s linear infinite;
}

.tdc-floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    min-width: 145px;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--tdc-white);
    background: rgba(25, 22, 19, 0.78);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    font-size: 0.84rem;
    font-weight: 700;
    animation: tdcFloat 5s ease-in-out infinite;
}

.tdc-floating-card span {
    color: var(--tdc-orange);
    font-size: 0.71rem;
}

.tdc-floating-card--brand {
    top: 12%;
    left: 1%;
}

.tdc-floating-card--production {
    top: 23%;
    right: 0;
    animation-delay: -1.2s;
}

.tdc-floating-card--content {
    right: 5%;
    bottom: 15%;
    animation-delay: -2.3s;
}

.tdc-floating-card--technology {
    bottom: 7%;
    left: 5%;
    animation-delay: -3.1s;
}

@keyframes tdcOrbit {

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }

}

@keyframes tdcOrbitReverse {

    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }

}

@keyframes tdcFloat {

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

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

}


/* =========================================================
   NAVEGACIÓN DE CATEGORÍAS
========================================================= */

.tdc-category-navigation {
    position: relative;
    z-index: 10;
    margin-top: -38px;
}

.tdc-category-navigation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--tdc-line);
    border-radius: 12px;
    background: var(--tdc-white);
    box-shadow: 0 22px 50px rgba(36, 29, 23, 0.11);
}

.tdc-category-navigation a {
    display: flex;
    min-height: 88px;
    align-items: center;
    gap: 13px;
    padding: 20px;
    border-right: 1px solid var(--tdc-line);
    color: var(--tdc-text);
    font-size: 0.83rem;
    font-weight: 750;
    transition:
        color 180ms ease,
        background-color 180ms ease;
}

.tdc-category-navigation a:last-child {
    border-right: 0;
}

.tdc-category-navigation a:hover {
    color: var(--tdc-orange-dark);
    background: #fff9f1;
}

.tdc-category-navigation a span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    flex: 0 0 34px;
    border-radius: 50%;
    color: var(--tdc-orange-dark);
    background: rgba(242, 138, 26, 0.12);
    font-size: 0.7rem;
}


/* =========================================================
   INTRODUCCIÓN
========================================================= */

.tdc-introduction {
    padding: clamp(105px, 12vw, 155px) 0 95px;
    background: var(--tdc-white);
}

.tdc-introduction-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(45px, 8vw, 110px);
}

.tdc-introduction h2 {
    max-width: 550px;
    margin: 17px 0 0;
    font-size: clamp(2.1rem, 4vw, 3.55rem);
    letter-spacing: -0.045em;
}

.tdc-introduction-grid p {
    margin-bottom: 18px;
    font-size: 1rem;
}

.tdc-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 70px;
    border-top: 1px solid var(--tdc-line);
    border-bottom: 1px solid var(--tdc-line);
}

.tdc-benefits article {
    display: flex;
    min-height: 130px;
    align-items: center;
    gap: 20px;
    padding: 25px 32px;
    border-right: 1px solid var(--tdc-line);
}

.tdc-benefits article:last-child {
    border-right: 0;
}

.tdc-benefits strong {
    color: var(--tdc-orange);
    font-size: clamp(2rem, 4vw, 3.1rem);
    letter-spacing: -0.06em;
}

.tdc-benefits span {
    max-width: 145px;
    color: var(--tdc-text);
    font-size: 0.83rem;
    font-weight: 700;
    line-height: 1.45;
}


/* =========================================================
   GRUPOS DE SERVICIOS
========================================================= */

.tdc-service-group {
    padding: 105px 0;
    scroll-margin-top: 115px;
}

.tdc-service-group:nth-child(odd) {
    background: var(--tdc-soft);
}

.tdc-service-group:nth-child(even) {
    background: var(--tdc-white);
}

.tdc-group-header {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) minmax(300px, 0.68fr);
    align-items: end;
    gap: 30px;
    margin-bottom: 48px;
}

.tdc-group-number {
    color: rgba(242, 138, 26, 0.2);
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 850;
    line-height: 0.78;
    letter-spacing: -0.09em;
}

.tdc-group-header h2 {
    max-width: 660px;
    margin: 14px 0 0;
    font-size: clamp(2rem, 4vw, 3.15rem);
    letter-spacing: -0.045em;
}

.tdc-group-header > p {
    margin: 0;
    font-size: 0.94rem;
}

.tdc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tdc-service-card {
    position: relative;
    display: flex;
    min-height: 315px;
    overflow: hidden;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--tdc-line);
    border-radius: 12px;
    background: var(--tdc-white);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.tdc-service-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            var(--tdc-orange),
            var(--tdc-green)
        );
    content: "";
    transition: width 250ms ease;
}

.tdc-service-card:hover {
    z-index: 2;
    border-color: rgba(242, 138, 26, 0.5);
    box-shadow: 0 24px 50px rgba(40, 32, 25, 0.12);
    transform: translateY(-7px);
}

.tdc-service-card:hover::after {
    width: 100%;
}

.tdc-service-card-top {
    display: flex;
    min-height: 32px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 37px;
}

.tdc-service-number {
    color: var(--tdc-orange);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.tdc-featured-label {
    padding: 6px 10px;
    border-radius: 50px;
    color: #ffffff;
    background: var(--tdc-green);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tdc-service-card h3 {
    margin-bottom: 15px;
    font-size: 1.38rem;
    letter-spacing: -0.025em;
}

.tdc-service-card p {
    margin-bottom: 27px;
    font-size: 0.88rem;
}

.tdc-service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--tdc-line);
    color: var(--tdc-text);
    font-size: 0.78rem;
    font-weight: 800;
}

.tdc-service-link span {
    color: var(--tdc-orange);
    font-size: 1.25rem;
    transition: transform 180ms ease;
}

.tdc-service-card:hover .tdc-service-link span {
    transform: translateX(5px);
}

.tdc-service-card--featured {
    border-color: rgba(47, 155, 87, 0.55);
    background:
        linear-gradient(
            145deg,
            rgba(47, 155, 87, 0.08),
            #ffffff 55%
        );
}


/* =========================================================
   SOLUCIONES INTEGRADAS
========================================================= */

.tdc-integrated {
    padding: clamp(95px, 11vw, 145px) 0;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(242, 138, 26, 0.15),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #1a1714,
            #25201b
        );
}

.tdc-integrated-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.87fr) minmax(0, 1.13fr);
    align-items: center;
    gap: clamp(55px, 9vw, 120px);
}

.tdc-integrated-content h2 {
    margin: 17px 0 25px;
    color: var(--tdc-white);
    font-size: clamp(2.2rem, 4.7vw, 4rem);
    letter-spacing: -0.05em;
}

.tdc-integrated-content p {
    color: rgba(255, 255, 255, 0.69);
}

.tdc-text-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 12px;
    color: var(--tdc-orange) !important;
    font-size: 0.86rem;
    font-weight: 800;
}

.tdc-text-link span {
    font-size: 1.2rem;
    transition: transform 180ms ease;
}

.tdc-text-link:hover span {
    transform: translateX(5px);
}

.tdc-solution-path {
    position: relative;
}

.tdc-solution-path::before {
    position: absolute;
    top: 38px;
    bottom: 38px;
    left: 28px;
    width: 1px;
    background:
        linear-gradient(
            var(--tdc-orange),
            var(--tdc-green)
        );
    content: "";
}

.tdc-solution-path article {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    margin-bottom: 14px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.055);
}

.tdc-solution-path article:last-child {
    margin-bottom: 0;
}

.tdc-solution-path article > span {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    color: #191714;
    background: var(--tdc-orange);
    font-size: 0.72rem;
    font-weight: 850;
}

.tdc-solution-path h3 {
    margin-bottom: 6px;
    color: var(--tdc-white);
    font-size: 1.03rem;
}

.tdc-solution-path p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.59);
    font-size: 0.81rem;
}


/* =========================================================
   PROCESO
========================================================= */

.tdc-process {
    padding: clamp(95px, 11vw, 140px) 0;
    background: var(--tdc-white);
}

.tdc-section-heading {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.tdc-section-heading .tdc-section-eyebrow {
    justify-content: center;
}

.tdc-section-heading h2 {
    margin: 17px 0 20px;
    font-size: clamp(2.1rem, 4.5vw, 3.75rem);
    letter-spacing: -0.05em;
}

.tdc-section-heading p {
    max-width: 620px;
    margin-inline: auto;
}

.tdc-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--tdc-line);
    border-bottom: 1px solid var(--tdc-line);
}

.tdc-process-grid article {
    position: relative;
    min-height: 285px;
    padding: 35px 27px;
    border-right: 1px solid var(--tdc-line);
}

.tdc-process-grid article:last-child {
    border-right: 0;
}

.tdc-process-number {
    display: block;
    margin-bottom: 48px;
    color: var(--tdc-orange);
    font-size: 0.77rem;
    font-weight: 850;
}

.tdc-process-grid h3 {
    margin-bottom: 14px;
    font-size: 1.13rem;
}

.tdc-process-grid p {
    margin-bottom: 0;
    font-size: 0.84rem;
}


/* =========================================================
   LÁSER
========================================================= */

.tdc-laser {
    padding: clamp(90px, 11vw, 140px) 0;
    background: #f39324;
}

.tdc-laser-grid {
    display: grid;
    grid-template-columns: minmax(390px, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(55px, 9vw, 115px);
}

.tdc-laser-visual {
    position: relative;
    min-height: 490px;
}

.tdc-laser-piece {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    width: min(390px, 88%);
    min-height: 255px;
    justify-content: center;
    flex-direction: column;
    padding: 52px;
    border: 8px solid #bd7330;
    border-radius: 24px;
    color: #4d2a12;
    background:
        linear-gradient(
            105deg,
            rgba(255, 255, 255, 0.16),
            transparent 30%
        ),
        #d99a56;
    box-shadow:
        0 35px 70px rgba(78, 38, 8, 0.23),
        inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) rotate(-4deg);
}

.tdc-laser-piece span {
    margin-bottom: 12px;
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.tdc-laser-piece strong {
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.tdc-laser-line {
    position: absolute;
    top: 10%;
    left: 50%;
    z-index: 4;
    width: 2px;
    height: 78%;
    background:
        linear-gradient(
            transparent,
            #fff6e7 20%,
            #ffefcf 80%,
            transparent
        );
    box-shadow:
        0 0 8px #ffffff,
        0 0 25px #ffefe0,
        0 0 45px #f0441d;
    transform: rotate(12deg);
    animation: tdcLaserScan 4s ease-in-out infinite alternate;
}

.tdc-laser-material {
    position: absolute;
    z-index: 5;
    padding: 9px 14px;
    border-radius: 50px;
    color: #ffffff;
    background: var(--tdc-black);
    font-size: 0.67rem;
    font-weight: 800;
}

.tdc-laser-material--one {
    top: 11%;
    left: 3%;
}

.tdc-laser-material--two {
    top: 20%;
    right: 0;
}

.tdc-laser-material--three {
    right: 6%;
    bottom: 10%;
}

@keyframes tdcLaserScan {

    from {
        left: 35%;
    }

    to {
        left: 66%;
    }

}

.tdc-laser-content .tdc-section-eyebrow {
    color: #4a2913;
}

.tdc-laser-content h2 {
    margin: 17px 0 24px;
    font-size: clamp(2.15rem, 4.6vw, 3.85rem);
    letter-spacing: -0.052em;
}

.tdc-laser-content p {
    color: rgba(37, 25, 16, 0.76);
}

.tdc-laser-content ul {
    display: grid;
    gap: 11px;
    margin: 27px 0 34px;
    padding: 0;
    list-style: none;
}

.tdc-laser-content li {
    position: relative;
    padding-left: 29px;
    color: #302015;
    font-size: 0.88rem;
    font-weight: 650;
}

.tdc-laser-content li::before {
    position: absolute;
    top: 0.12em;
    left: 0;
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border-radius: 50%;
    color: var(--tdc-white);
    background: var(--tdc-green);
    font-size: 0.68rem;
    content: "✓";
}


/* =========================================================
   SOPORTE
========================================================= */

.tdc-support {
    padding: 75px 0;
    scroll-margin-top: 110px;
    background: var(--tdc-soft);
}

.tdc-support-grid {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    align-items: center;
    gap: 35px;
}

.tdc-support-mark {
    display: grid;
    width: 105px;
    height: 105px;
    place-items: center;
    border-radius: 50%;
    color: var(--tdc-white);
    background:
        linear-gradient(
            135deg,
            var(--tdc-green),
            var(--tdc-green-dark)
        );
    box-shadow: 0 18px 40px rgba(47, 155, 87, 0.22);
    font-size: 1.6rem;
    font-weight: 850;
}

.tdc-support h2 {
    margin: 12px 0 9px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    letter-spacing: -0.04em;
}

.tdc-support p {
    max-width: 720px;
    margin-bottom: 0;
    font-size: 0.9rem;
}


/* =========================================================
   PREGUNTAS FRECUENTES
========================================================= */

.tdc-faq {
    padding: clamp(95px, 11vw, 140px) 0;
    background: var(--tdc-white);
}

.tdc-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(55px, 9vw, 120px);
}

.tdc-faq header {
    position: sticky;
    top: 130px;
}

.tdc-faq h2 {
    margin: 17px 0 20px;
    font-size: clamp(2.1rem, 4vw, 3.45rem);
    letter-spacing: -0.05em;
}

.tdc-faq-list {
    border-top: 1px solid var(--tdc-line);
}

.tdc-faq details {
    border-bottom: 1px solid var(--tdc-line);
}

.tdc-faq summary {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 5px;
    color: var(--tdc-text);
    cursor: pointer;
    font-size: 0.96rem;
    font-weight: 750;
    list-style: none;
}

.tdc-faq summary::-webkit-details-marker {
    display: none;
}

.tdc-faq summary span {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    flex: 0 0 31px;
    border-radius: 50%;
    color: var(--tdc-orange-dark);
    background: rgba(242, 138, 26, 0.12);
    font-size: 1.22rem;
    transition: transform 180ms ease;
}

.tdc-faq details[open] summary span {
    transform: rotate(45deg);
}

.tdc-faq details > div {
    padding: 0 50px 24px 5px;
}

.tdc-faq details p {
    margin-bottom: 0;
    font-size: 0.88rem;
}


/* =========================================================
   CTA FINAL
========================================================= */

.tdc-final-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(95px, 12vw, 155px) 0;
    background:
        linear-gradient(
            135deg,
            #181512,
            #27201b
        );
}

.tdc-final-cta::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.1;
    background-image:
        radial-gradient(
            rgba(255, 255, 255, 0.55) 1px,
            transparent 1px
        );
    background-size: 28px 28px;
    content: "";
}

.tdc-final-cta-glow {
    position: absolute;
    bottom: -270px;
    left: 50%;
    z-index: -1;
    width: 650px;
    height: 500px;
    border-radius: 50%;
    background: rgba(47, 155, 87, 0.22);
    filter: blur(90px);
    transform: translateX(-50%);
}

.tdc-final-cta-content {
    max-width: 850px;
    text-align: center;
}

.tdc-final-cta-content .tdc-section-eyebrow {
    justify-content: center;
}

.tdc-final-cta h2 {
    margin: 17px 0 20px;
    color: var(--tdc-white);
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    letter-spacing: -0.06em;
}

.tdc-final-cta p {
    max-width: 680px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.03rem;
}


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

@media (max-width: 1000px) {

    .tdc-hero-grid,
    .tdc-introduction-grid,
    .tdc-integrated-grid,
    .tdc-laser-grid,
    .tdc-faq-grid {
        grid-template-columns: 1fr;
    }

    .tdc-hero-content {
        max-width: 780px;
    }

    .tdc-hero-art {
        width: min(560px, 100%);
        margin-inline: auto;
    }

    .tdc-category-navigation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tdc-category-navigation a:nth-child(2) {
        border-right: 0;
    }

    .tdc-category-navigation a:nth-child(-n + 2) {
        border-bottom: 1px solid var(--tdc-line);
    }

    .tdc-group-header {
        grid-template-columns: 75px minmax(0, 1fr);
        align-items: start;
    }

    .tdc-group-header > p {
        grid-column: 2;
    }

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

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

    .tdc-process-grid article:nth-child(2) {
        border-right: 0;
    }

    .tdc-process-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--tdc-line);
    }

    .tdc-laser-visual {
        width: min(580px, 100%);
        margin-inline: auto;
    }

    .tdc-support-grid {
        grid-template-columns: 105px minmax(0, 1fr);
    }

    .tdc-support-grid .tdc-button {
        grid-column: 2;
        justify-self: start;
    }

    .tdc-faq header {
        position: static;
        max-width: 700px;
    }

}


@media (max-width: 720px) {

    .tdc-container {
        width: min(100% - 28px, 1180px);
    }

    .tdc-hero {
        min-height: auto;
        padding-top: 135px;
    }

    .tdc-hero h1 {
        font-size: clamp(2.55rem, 12vw, 4rem);
    }

    .tdc-hero-art {
        min-height: 390px;
        transform: scale(0.92);
    }

    .tdc-orbit--one {
        width: 275px;
        height: 275px;
    }

    .tdc-orbit--two {
        width: 355px;
        height: 355px;
    }

    .tdc-idea-core {
        width: 185px;
        height: 185px;
    }

    .tdc-floating-card {
        min-width: 125px;
        padding: 11px 13px;
        font-size: 0.72rem;
    }

    .tdc-category-navigation-grid {
        grid-template-columns: 1fr;
    }

    .tdc-category-navigation a {
        min-height: 70px;
        border-right: 0;
        border-bottom: 1px solid var(--tdc-line);
    }

    .tdc-category-navigation a:last-child {
        border-bottom: 0;
    }

    .tdc-benefits {
        grid-template-columns: 1fr;
    }

    .tdc-benefits article {
        min-height: 105px;
        border-right: 0;
        border-bottom: 1px solid var(--tdc-line);
    }

    .tdc-benefits article:last-child {
        border-bottom: 0;
    }

    .tdc-group-header {
        grid-template-columns: 1fr;
    }

    .tdc-group-header > p {
        grid-column: auto;
    }

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

    .tdc-service-card {
        min-height: 285px;
    }

    .tdc-process-grid {
        grid-template-columns: 1fr;
    }

    .tdc-process-grid article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--tdc-line);
    }

    .tdc-process-grid article:last-child {
        border-bottom: 0;
    }

    .tdc-process-number {
        margin-bottom: 25px;
    }

    .tdc-support-grid {
        grid-template-columns: 1fr;
    }

    .tdc-support-grid .tdc-button {
        grid-column: auto;
    }

    .tdc-support-mark {
        width: 85px;
        height: 85px;
    }

}


@media (max-width: 520px) {

    .tdc-actions,
    .tdc-actions .tdc-button {
        width: 100%;
    }

    .tdc-button {
        width: 100%;
    }

    .tdc-hero-art {
        min-height: 340px;
        transform: scale(0.84);
    }

    .tdc-floating-card--brand {
        left: -5%;
    }

    .tdc-floating-card--production {
        right: -5%;
    }

    .tdc-floating-card--content {
        right: -3%;
    }

    .tdc-floating-card--technology {
        left: -3%;
    }

    .tdc-introduction,
    .tdc-service-group,
    .tdc-process,
    .tdc-faq {
        padding-block: 80px;
    }

    .tdc-service-card {
        padding: 25px;
    }

    .tdc-laser-visual {
        min-height: 390px;
    }

    .tdc-laser-piece {
        min-height: 215px;
        padding: 35px;
    }

    .tdc-faq summary {
        font-size: 0.87rem;
    }

}


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

    .tdc-orbit,
    .tdc-floating-card,
    .tdc-laser-line {
        animation: none;
    }

    .tdc-button,
    .tdc-service-card,
    .tdc-page a {
        transition: none;
    }

}
.tdc-page .tdc-button--secondary,
.tdc-page .tdc-button--secondary:visited {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.07);
}

.tdc-page .tdc-button--secondary:hover {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.14);
}