:root {
    --three-d-navy: #07152f;
    --three-d-blue: #123264;
    --three-d-blue-light: #24538f;
    --three-d-yellow: #fdb427;
    --three-d-yellow-dark: #d88c00;
    --three-d-white: #ffffff;
    --three-d-soft: #f2f6fc;
    --three-d-border: #dce4ef;
    --three-d-text: #13213b;
    --three-d-muted: #647187;
    --three-d-shadow:
        0 17px 42px rgba(7, 21, 47, 0.13);
    --three-d-shadow-large:
        0 30px 75px rgba(7, 21, 47, 0.24);
    --three-d-transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

#servicio-impresion-3d,
#trabajos-impresion-3d,
#aplicaciones-impresion-3d {
    scroll-margin-top: 100px;
}

/* =====================================================
   NAVBAR FIJO
===================================================== */

.header__main {
    position: sticky;
    top: 0;
    z-index: 4500;

    transition:
        box-shadow var(--three-d-transition),
        background-color var(--three-d-transition);
}

.header__main.header__main--compact {
    box-shadow:
        0 9px 28px rgba(7, 21, 47, 0.17);
}

.header__main-content,
.header__main .logo img {
    transition:
        min-height var(--three-d-transition),
        max-height var(--three-d-transition),
        transform var(--three-d-transition);
}

.header__main.header__main--compact .header__main-content {
    min-height: 68px;
}

.header__main.header__main--compact .logo img {
    max-height: 52px;

    transform: scale(0.94);
}

/* =====================================================
   PORTADA
===================================================== */

.three-d-hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 690px;
    overflow: hidden;

    background-color: var(--three-d-navy);
}

.three-d-hero__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter:
        saturate(0.9) contrast(1.05) brightness(0.82);

    animation:
        threeDHeroZoom 13s ease-in-out infinite alternate;
}

.three-d-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(4, 14, 34, 0.98) 0%,
            rgba(7, 27, 60, 0.94) 44%,
            rgba(10, 34, 72, 0.56) 73%,
            rgba(10, 34, 72, 0.24) 100%);
}

.three-d-hero__overlay::after {
    content: "";

    position: absolute;
    right: -170px;
    bottom: -230px;

    width: 610px;
    height: 610px;

    border:
        85px solid rgba(253, 180, 39, 0.065);

    border-radius: 50%;
}

.three-d-hero__content {
    position: relative;
    z-index: 3;

    width: 100%;
    padding-top: 5rem;
    padding-bottom: 10rem;
}

.three-d-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;

    margin: 0 0 1.1rem;

    color: var(--three-d-yellow);

    font-size: 0.86rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.three-d-hero__eyebrow::before {
    content: "";

    width: 46px;
    height: 3px;

    border-radius: 999px;

    background-color: var(--three-d-yellow);
}

.three-d-hero h1 {
    max-width: 780px;
    margin: 0 0 1.3rem;

    color: var(--three-d-white);

    font-size: clamp(3.1rem, 7vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.three-d-hero__description {
    max-width: 680px;
    margin: 0 0 2rem;

    color: rgba(255, 255, 255, 0.82);

    font-size: clamp(1.05rem, 2vw, 1.22rem);
    line-height: 1.65;
}

.three-d-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.three-d-hero__quick-links {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;

    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    overflow: hidden;

    border-radius: 20px 20px 0 0;

    background-color: var(--three-d-white);
    box-shadow:
        0 -16px 46px rgba(4, 15, 35, 0.22);
}

.three-d-hero__quick-links a {
    position: relative;

    display: flex;
    align-items: center;
    gap: 1rem;

    min-height: 88px;
    padding: 1.15rem 1.5rem;

    border-right:
        1px solid var(--three-d-border);

    color: var(--three-d-text);
    font-weight: 760;

    transition:
        color var(--three-d-transition),
        background-color var(--three-d-transition);
}

.three-d-hero__quick-links a:last-child {
    border-right: none;
}

.three-d-hero__quick-links a::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 4px;

    background-color: var(--three-d-yellow);

    transform: scaleX(0);
    transform-origin: left;

    transition:
        transform var(--three-d-transition);
}

.three-d-hero__quick-links a:hover {
    background-color: var(--three-d-blue);
    color: var(--three-d-white);
}

.three-d-hero__quick-links a:hover::after {
    transform: scaleX(1);
}

.three-d-hero__quick-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 42px;
    height: 42px;

    border-radius: 13px;

    background-color: var(--three-d-yellow);
    color: var(--three-d-navy);

    font-size: 0.85rem;
    font-weight: 900;

    transition:
        transform var(--three-d-transition);
}

.three-d-hero__quick-links a:hover span {
    transform:
        rotate(-7deg) scale(1.06);
}

/* =====================================================
   RESUMEN
===================================================== */

.three-d-overview {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at 10% 10%,
            rgba(253, 180, 39, 0.13),
            transparent 25%),
        linear-gradient(135deg,
            #edf3fa,
            #ffffff 56%,
            #f3f7fc);
}

.three-d-overview__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr) minmax(330px, 0.92fr);
    align-items: center;
    gap: 3rem;
}

.three-d-overview__content {
    position: relative;

    padding: 2.5rem;
    overflow: hidden;

    border-radius: 25px;

    background:
        linear-gradient(145deg,
            var(--three-d-navy),
            var(--three-d-blue) 67%,
            var(--three-d-blue-light));

    color: var(--three-d-white);
    box-shadow: var(--three-d-shadow-large);
}

.three-d-overview__content::after {
    content: "3D";

    position: absolute;
    right: -1rem;
    bottom: -2rem;

    color: rgba(255, 255, 255, 0.04);

    font-size: clamp(8rem, 15vw, 13rem);
    font-weight: 900;
    line-height: 1;
}

.three-d-overview__content>* {
    position: relative;
    z-index: 2;
}

.three-d-overview__content h2 {
    margin: 0 0 1.1rem;

    color: var(--three-d-white);

    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
}

.three-d-overview__content>p {
    margin: 0;

    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.three-d-overview__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;

    margin-block: 1.5rem;
}

.three-d-overview__tags span {
    padding: 0.46rem 0.75rem;

    border:
        1px solid rgba(255, 255, 255, 0.2);

    border-radius: 999px;

    background-color:
        rgba(255, 255, 255, 0.08);

    color: var(--three-d-white);

    font-size: 0.8rem;
    font-weight: 650;
}

.three-d-overview__cards {
    display: grid;
    gap: 0.9rem;
}

.three-d-info-card {
    display: grid;
    grid-template-columns:
        58px minmax(0, 1fr);
    align-items: start;
    gap: 1rem;

    padding: 1.2rem;

    border:
        1px solid var(--three-d-border);

    border-radius: 17px;

    background-color: var(--three-d-white);
    box-shadow:
        0 12px 28px rgba(8, 22, 47, 0.08);

    transition:
        transform var(--three-d-transition),
        box-shadow var(--three-d-transition),
        border-color var(--three-d-transition);
}

.three-d-info-card:hover {
    border-color: var(--three-d-yellow);
    box-shadow: var(--three-d-shadow);

    transform: translateX(8px);
}

.three-d-info-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    border-radius: 15px;

    background:
        linear-gradient(145deg,
            var(--three-d-yellow),
            #ffd66f);

    color: var(--three-d-navy);

    font-weight: 900;
}

.three-d-info-card h3 {
    margin: 0 0 0.3rem;

    color: var(--three-d-text);
    font-size: 1.08rem;
}

.three-d-info-card p {
    margin: 0;

    color: var(--three-d-muted);

    font-size: 0.92rem;
    line-height: 1.55;
}

/* =====================================================
   ENCABEZADOS DE CARRUSELES
===================================================== */

.three-d-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;

    margin-bottom: 2rem;
}

.three-d-section-heading h2 {
    max-width: 820px;
    margin: 0;

    color: inherit;

    font-size: clamp(2.1rem, 4vw, 3.45rem);
    line-height: 1.08;
}

.three-d-section-heading>div>p:last-child {
    max-width: 720px;
    margin-top: 0.8rem;

    color: rgba(255, 255, 255, 0.7);
}

/* =====================================================
   CARRUSEL GENERAL
===================================================== */

.three-d-carousel {
    --items-per-view: 3;

    position: relative;
}

.three-d-carousel__viewport {
    overflow: hidden;

    outline-offset: 6px;
}

.three-d-carousel__track {
    display: flex;
    gap: 1.1rem;

    transition:
        transform 0.55s ease;

    will-change: transform;
}

.three-d-carousel [data-carousel-slide] {
    flex:
        0 0 calc((100% - ((var(--items-per-view) - 1) * 1.1rem)) / var(--items-per-view));

    min-width: 0;
}

.three-d-carousel__controls {
    display: flex;
    gap: 0.6rem;
}

.three-d-carousel__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;
    padding: 0;

    border: 1px solid currentColor;
    border-radius: 50%;

    background-color: transparent;
    color: inherit;

    font-size: 1.8rem;
    line-height: 1;

    cursor: pointer;

    transition:
        background-color var(--three-d-transition),
        border-color var(--three-d-transition),
        color var(--three-d-transition),
        transform var(--three-d-transition);
}

.three-d-carousel__arrow:hover {
    border-color: var(--three-d-yellow);

    background-color: var(--three-d-yellow);
    color: var(--three-d-navy);

    transform: translateY(-3px);
}

.three-d-carousel__footer {
    display: flex;
    align-items: center;
    gap: 1rem;

    margin-top: 1.2rem;
}

.three-d-carousel__progress {
    flex: 1;

    height: 5px;
    overflow: hidden;

    border-radius: 999px;

    background-color:
        rgba(255, 255, 255, 0.14);
}

.three-d-carousel__progress span {
    display: block;

    width: 5%;
    height: 100%;

    border-radius: inherit;

    background-color: var(--three-d-yellow);

    transition:
        width 0.45s ease;
}

.three-d-carousel__status {
    min-width: 110px;
    margin: 0;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.82rem;
    text-align: right;
}

/* =====================================================
   TRABAJOS
===================================================== */

.three-d-works {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(145deg,
            var(--three-d-navy),
            #102c59 58%,
            #183e74);

    color: var(--three-d-white);
}

.three-d-works::before {
    content: "";

    position: absolute;
    top: -200px;
    right: -180px;

    width: 500px;
    height: 500px;

    border:
        80px solid rgba(253, 180, 39, 0.06);

    border-radius: 50%;
}

.three-d-works .contenedor {
    position: relative;
    z-index: 2;
}

.three-d-work-card {
    position: relative;

    min-height: 390px;
    padding: 0;
    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.14);

    border-radius: 21px;

    background-color: var(--three-d-white);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.23);

    cursor: pointer;

    transition:
        transform var(--three-d-transition),
        border-color var(--three-d-transition),
        box-shadow var(--three-d-transition);
}

.three-d-work-card:hover {
    border-color: var(--three-d-yellow);

    box-shadow:
        0 28px 58px rgba(0, 0, 0, 0.31);

    transform: translateY(-7px);
}

.three-d-work-card img {
    display: block;

    width: 100%;
    height: 390px;
    padding: 0.5rem;

    object-fit: contain;

    background:
        linear-gradient(145deg,
            #ffffff,
            #e9eef5);

    transition:
        transform 0.55s ease,
        filter var(--three-d-transition);
}

.three-d-work-card:hover img {
    transform: scale(1.035);
    filter: contrast(1.04);
}

.three-d-work-card__content {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;

    padding: 1.2rem;

    background:
        linear-gradient(to top,
            rgba(5, 16, 37, 0.94),
            transparent 58%);

    color: var(--three-d-white);
    text-align: left;
}

.three-d-work-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;
    margin-bottom: 0.6rem;

    border-radius: 11px;

    background-color: var(--three-d-yellow);
    color: var(--three-d-navy);

    font-size: 0.78rem;
    font-weight: 900;
}

.three-d-work-card__content strong {
    font-size: 1.05rem;
}

.three-d-work-card__content small {
    margin-top: 0.25rem;

    color: rgba(255, 255, 255, 0.72);
}

/* =====================================================
   APLICACIONES
===================================================== */

.three-d-applications {
    overflow: hidden;

    background:
        radial-gradient(circle at 95% 5%,
            rgba(253, 180, 39, 0.13),
            transparent 23%),
        linear-gradient(180deg,
            #f9fbff,
            #edf3fa);
}

.three-d-applications .three-d-section-heading {
    color: var(--three-d-text);
}

.three-d-applications .three-d-section-heading .section-heading__eyebrow {
    color: var(--three-d-yellow-dark);
}

.three-d-carousel--applications {
    --items-per-view: 3;
}

.three-d-carousel--applications .three-d-carousel__progress {
    background-color:
        rgba(18, 50, 100, 0.12);
}

.three-d-carousel--applications .three-d-carousel__status {
    color: var(--three-d-muted);
}

.three-d-application-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 285px;
    padding: 1.55rem;
    overflow: hidden;

    border:
        1px solid var(--three-d-border);

    border-radius: 20px;

    background-color: var(--three-d-white);
    box-shadow:
        0 12px 30px rgba(8, 22, 47, 0.075);

    transition:
        transform var(--three-d-transition),
        box-shadow var(--three-d-transition),
        border-color var(--three-d-transition);
}

.three-d-application-card::before {
    content: "";

    position: absolute;
    top: -100px;
    right: -100px;

    width: 210px;
    height: 210px;

    border-radius: 50%;

    background-color:
        rgba(253, 180, 39, 0.09);

    transition:
        transform 0.5s ease;
}

.three-d-application-card:hover {
    border-color: var(--three-d-yellow);
    box-shadow: var(--three-d-shadow);

    transform: translateY(-8px);
}

.three-d-application-card:hover::before {
    transform: scale(1.45);
}

.three-d-application-card__number {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;
    margin-bottom: 1.3rem;

    border-radius: 14px;

    background-color: var(--three-d-blue);
    color: var(--three-d-yellow);

    font-weight: 900;
}

.three-d-application-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 0.65rem;

    color: var(--three-d-text);
    font-size: 1.2rem;
}

.three-d-application-card p {
    position: relative;
    z-index: 2;

    margin: 0 0 1.2rem;

    color: var(--three-d-muted);
    line-height: 1.6;
}

.three-d-application-card a {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: auto;
    padding-top: 0.8rem;

    border-top:
        1px solid var(--three-d-border);

    color: var(--three-d-blue);
    font-weight: 760;
}

.three-d-application-card a span {
    color: var(--three-d-yellow-dark);
    font-size: 1.3rem;
}

/* =====================================================
   TRABAJO DESTACADO
===================================================== */

.three-d-featured {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(145deg,
            var(--three-d-navy),
            #102c59 58%,
            #183e74);

    color: var(--three-d-white);
}

.three-d-featured__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 3.5rem;
}

.three-d-featured__visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 520px;
    overflow: hidden;

    border-radius: 25px;

    background-color: var(--three-d-white);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.31);
}

.three-d-featured__visual::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(5, 16, 37, 0.9),
            transparent 54%);
}

.three-d-featured__visual img {
    width: 100%;
    height: 520px;
    padding: 0.7rem;

    object-fit: contain;
}

.three-d-featured__badge {
    position: absolute;
    right: 1.4rem;
    bottom: 1.4rem;
    left: 1.4rem;
    z-index: 3;

    display: flex;
    flex-direction: column;

    color: var(--three-d-white);
    font-weight: 760;
}

.three-d-featured__badge span {
    width: fit-content;
    margin-bottom: 0.3rem;
    padding: 0.35rem 0.7rem;

    border-radius: 999px;

    background-color: var(--three-d-yellow);
    color: var(--three-d-navy);

    font-size: 0.7rem;
    text-transform: uppercase;
}

.three-d-featured__content h2 {
    margin: 0 0 1rem;

    color: var(--three-d-white);

    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
}

.three-d-featured__content>p {
    margin: 0 0 1.5rem;

    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.three-d-featured__benefits {
    display: grid;
    gap: 0.8rem;

    margin-bottom: 1.5rem;
}

.three-d-featured__benefits article {
    display: grid;
    grid-template-columns:
        46px minmax(0, 1fr);
    gap: 0.9rem;

    padding: 0.9rem;

    border:
        1px solid rgba(255, 255, 255, 0.13);

    border-radius: 14px;

    background-color:
        rgba(255, 255, 255, 0.06);

    transition:
        transform var(--three-d-transition),
        border-color var(--three-d-transition);
}

.three-d-featured__benefits article:hover {
    border-color: var(--three-d-yellow);

    transform: translateX(6px);
}

.three-d-featured__benefits article>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 11px;

    background-color: var(--three-d-yellow);
    color: var(--three-d-navy);

    font-weight: 900;
}

.three-d-featured__benefits h3 {
    margin: 0 0 0.2rem;

    color: var(--three-d-white);
    font-size: 1rem;
}

.three-d-featured__benefits p {
    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.9rem;
}

/* =====================================================
   PROCESO HORIZONTAL
===================================================== */

.three-d-process {
    overflow: hidden;

    background:
        linear-gradient(180deg,
            #f7faff,
            #ffffff);
}

.three-d-process__heading {
    margin-bottom: 2rem;
}

.three-d-process__heading h2 {
    max-width: 760px;
    margin: 0;

    color: var(--three-d-text);

    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.08;
}

.three-d-process__scroll {
    overflow-x: auto;
    padding-bottom: 0.5rem;

    scrollbar-width: thin;

    scrollbar-color:
        var(--three-d-yellow) var(--three-d-border);
}

.three-d-process__line {
    position: relative;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(230px, 1fr));
    gap: 1rem;

    min-width: 940px;
}

.three-d-process__line::before {
    content: "";

    position: absolute;
    top: 42px;
    right: 11%;
    left: 11%;

    height: 3px;

    background:
        linear-gradient(90deg,
            var(--three-d-yellow),
            var(--three-d-blue));
}

.three-d-process-card {
    position: relative;
    z-index: 2;

    padding: 1.2rem;

    border:
        1px solid var(--three-d-border);

    border-radius: 18px;

    background-color: var(--three-d-white);
    box-shadow:
        0 12px 28px rgba(7, 21, 47, 0.08);

    transition:
        transform var(--three-d-transition),
        border-color var(--three-d-transition);
}

.three-d-process-card:hover {
    border-color: var(--three-d-yellow);

    transform: translateY(-7px);
}

.three-d-process-card>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;
    margin-bottom: 1rem;

    border-radius: 50%;

    background-color: var(--three-d-yellow);
    color: var(--three-d-navy);

    font-weight: 900;
}

.three-d-process-card h3 {
    margin: 0 0 0.4rem;

    color: var(--three-d-text);
    font-size: 1.1rem;
}

.three-d-process-card p {
    margin: 0;

    color: var(--three-d-muted);

    font-size: 0.92rem;
    line-height: 1.55;
}

/* =====================================================
   LLAMADO FINAL
===================================================== */

.three-d-callout {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(125deg,
            var(--three-d-yellow),
            #ffd56f);

    color: var(--three-d-navy);
}

.three-d-callout::after {
    content: "3D";

    position: absolute;
    right: 2%;
    bottom: -4rem;

    color: rgba(7, 21, 47, 0.05);

    font-size:
        clamp(10rem, 19vw, 17rem);

    font-weight: 900;
    line-height: 1;
}

.three-d-callout__content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr) auto;
    align-items: center;
    gap: 3rem;
}

.three-d-callout__eyebrow {
    margin: 0 0 0.6rem;

    color: var(--three-d-blue);

    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.three-d-callout h2 {
    max-width: 800px;
    margin: 0 0 0.7rem;

    color: var(--three-d-navy);

    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 1.05;
}

.three-d-callout p {
    max-width: 700px;
    margin: 0;

    color: rgba(7, 21, 47, 0.76);
}

.three-d-callout__actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;

    min-width: 230px;
}

.three-d-callout__button-primary {
    border: 2px solid var(--three-d-navy);

    background-color: var(--three-d-navy);
    color: var(--three-d-white);
}

.three-d-callout__button-secondary {
    border: 2px solid var(--three-d-navy);

    background-color: transparent;
    color: var(--three-d-navy);
}

.three-d-callout__button-secondary:hover {
    background-color: var(--three-d-navy);
    color: var(--three-d-white);
}

/* =====================================================
   BOTÓN FLOTANTE
===================================================== */

.three-d-floating-cta {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 4200;

    display: none;

    padding: 0.85rem 1.1rem;

    border:
        2px solid var(--three-d-white);

    border-radius: 999px;

    background-color: var(--three-d-yellow);
    color: var(--three-d-navy);

    font-size: 0.88rem;
    font-weight: 850;

    box-shadow:
        0 12px 30px rgba(7, 21, 47, 0.27);
}

/* =====================================================
   VENTANA DE IMAGEN AMPLIADA
===================================================== */

body.three-d-lightbox-open {
    overflow: hidden;
}

.three-d-lightbox {
    position: fixed;
    inset: 0;
    z-index: 6000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 2rem;

    background-color:
        rgba(3, 11, 28, 0.95);
}

.three-d-lightbox.three-d-lightbox--open {
    display: flex;
}

.three-d-lightbox__content {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: min(100%, 1150px);
}

.three-d-lightbox__image {
    display: block;

    max-width: 100%;
    max-height: 82vh;

    border-radius: 18px;

    object-fit: contain;

    background-color: var(--three-d-white);
}

.three-d-lightbox__close,
.three-d-lightbox__arrow {
    position: absolute;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    padding: 0;

    border:
        1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    background-color:
        rgba(7, 21, 47, 0.83);

    color: var(--three-d-white);

    cursor: pointer;
}

.three-d-lightbox__close {
    top: -1rem;
    right: -1rem;

    font-size: 1.8rem;
}

.three-d-lightbox__arrow {
    top: 50%;

    font-size: 2rem;

    transform: translateY(-50%);
}

.three-d-lightbox__arrow--previous {
    left: -4rem;
}

.three-d-lightbox__arrow--next {
    right: -4rem;
}

.three-d-lightbox__caption {
    margin-top: 0.8rem;

    color: var(--three-d-white);
    text-align: center;
}

.back-navigation {
    padding-block: 1.5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;

    color: var(--three-d-blue);
    font-weight: 750;
}

.back-link::before {
    content: "←";

    color: var(--three-d-yellow-dark);
}

/* =====================================================
   ANIMACIONES
===================================================== */

@keyframes threeDHeroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.055);
    }
}

/* =====================================================
   PANTALLAS GRANDES
===================================================== */

@media (min-width: 1700px) {
    .three-d-hero {
        min-height: 790px;
    }

    .three-d-work-card,
    .three-d-work-card img {
        min-height: 450px;
        height: 450px;
    }
}

/* =====================================================
   NOTEBOOK Y TABLET HORIZONTAL
===================================================== */

@media (max-width: 1100px) {

    .three-d-overview__grid,
    .three-d-featured__grid {
        grid-template-columns: 1fr;
    }

    .three-d-overview__cards {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .three-d-info-card {
        grid-template-columns: 1fr;
    }

    .three-d-carousel {
        --items-per-view: 2;
    }

    .three-d-featured__visual {
        max-width: 800px;
        margin-inline: auto;
    }

    .three-d-callout__content {
        grid-template-columns: 1fr;
    }

    .three-d-callout__actions {
        flex-direction: row;
        flex-wrap: wrap;

        min-width: 0;
    }
}

/* =====================================================
   CELULAR Y TABLET VERTICAL
===================================================== */

@media (max-width: 760px) {
    .header__main.header__main--compact .header__main-content {
        min-height: 62px;
    }

    .three-d-hero {
        min-height: 800px;
        align-items: flex-start;
    }

    .three-d-hero__image {
        object-position: 58% center;

        filter:
            saturate(0.9) contrast(1.05) brightness(0.68);
    }

    .three-d-hero__overlay {
        background:
            linear-gradient(180deg,
                rgba(4, 14, 34, 0.84),
                rgba(7, 27, 60, 0.7) 48%,
                rgba(4, 14, 34, 0.97));
    }

    .three-d-hero__content {
        padding-top: 3.5rem;
        padding-bottom: 15.5rem;
    }

    .three-d-hero h1 {
        font-size:
            clamp(2.9rem, 15vw, 4.5rem);
    }

    .three-d-hero__description {
        font-size: 1rem;
    }

    .three-d-hero__actions {
        flex-direction: column;
    }

    .three-d-hero__actions .button {
        width: 100%;
    }

    .three-d-hero__quick-links {
        grid-template-columns: 1fr;

        width: calc(100% - 2rem);
    }

    .three-d-hero__quick-links a {
        min-height: 61px;
        padding: 0.7rem 0.9rem;

        border-right: none;
        border-bottom:
            1px solid var(--three-d-border);
    }

    .three-d-hero__quick-links a:last-child {
        border-bottom: none;
    }

    .three-d-overview__content {
        padding: 1.6rem;
    }

    .three-d-overview__cards {
        grid-template-columns: 1fr;
    }

    .three-d-info-card {
        grid-template-columns:
            54px minmax(0, 1fr);
    }

    .three-d-section-heading {
        align-items: flex-start;

        margin-bottom: 1.4rem;
    }

    .three-d-carousel {
        --items-per-view: 1.15;
    }

    .three-d-carousel__track {
        gap: 0.8rem;
    }

    .three-d-carousel [data-carousel-slide] {
        flex-basis:
            calc((100% - ((var(--items-per-view) - 1) * 0.8rem)) / var(--items-per-view));
    }

    .three-d-carousel__arrow {
        width: 42px;
        height: 42px;
    }

    .three-d-work-card,
    .three-d-work-card img {
        min-height: 360px;
        height: 360px;
    }

    .three-d-carousel--applications {
        --items-per-view: 1.1;
    }

    .three-d-application-card {
        min-height: 270px;
    }

    .three-d-featured__visual,
    .three-d-featured__visual img {
        min-height: 410px;
        height: 410px;
    }

    .three-d-featured__content h2 {
        font-size: 2.15rem;
    }

    .three-d-process__line {
        grid-template-columns:
            repeat(4, 245px);

        min-width: max-content;
    }

    .three-d-callout__actions {
        flex-direction: column;
    }

    .three-d-callout__actions .button {
        width: 100%;
    }

    .three-d-floating-cta {
        display: inline-flex;
    }

    .three-d-lightbox {
        padding: 1rem;
    }

    .three-d-lightbox__arrow {
        top: auto;
        bottom: 3rem;

        transform: none;
    }

    .three-d-lightbox__arrow--previous {
        left: 1rem;
    }

    .three-d-lightbox__arrow--next {
        right: 1rem;
    }

    .three-d-lightbox__close {
        top: 0.5rem;
        right: 0.5rem;
    }

    .footer {
        padding-bottom: 5rem;
    }
}

/* =====================================================
   CELULAR PEQUEÑO
===================================================== */

@media (max-width: 470px) {
    .three-d-hero {
        min-height: 825px;
    }

    .three-d-hero__content {
        padding-top: 2.5rem;
        padding-bottom: 16rem;
    }

    .three-d-hero__eyebrow {
        font-size: 0.7rem;
        line-height: 1.45;
    }

    .three-d-section-heading {
        gap: 0.75rem;
    }

    .three-d-section-heading h2 {
        font-size: 2rem;
    }

    .three-d-carousel__controls {
        flex-direction: column;
    }

    .three-d-work-card,
    .three-d-work-card img {
        min-height: 320px;
        height: 320px;
    }

    .three-d-featured__visual,
    .three-d-featured__visual img {
        min-height: 360px;
        height: 360px;
    }

    .three-d-featured__benefits article {
        grid-template-columns:
            42px minmax(0, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .three-d-hero__image {
        animation: none;
    }

    .three-d-carousel__track {
        transition: none;
    }

    .three-d-info-card,
    .three-d-work-card,
    .three-d-application-card,
    .three-d-featured__benefits article,
    .three-d-process-card {
        transition: none;
    }
        
        /* Elimina el círculo decorativo de la tarjeta normal */
    
        .three-d-application-card--video::before {
            display: none;
        }
    
        /* Línea amarilla superior */
    
        .three-d-application-card--video::after {
            content: "";
    
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            z-index: 6;
    
            height: 5px;
    
            background:
                linear-gradient(90deg,
                    var(--three-d-yellow),
                    #ffd970);
    
            transform: none;
        }
    
        /* =========================================================
       VIDEO DE FONDO
    ========================================================= */
    
        .three-d-application-video-card__media {
            position: absolute;
            inset: 0;
            z-index: 0;
    
            overflow: hidden;
    
            background-color: var(--three-d-navy);
        }
    
        .three-d-application-video-card__video {
            display: block;
    
            width: 100%;
            height: 100%;
    
            object-fit: cover;
            object-position: center 45%;
    
            background-color: var(--three-d-navy);
    
            transform: scale(1.04);
    
            transition:
                transform 0.7s ease,
                filter 0.35s ease;
        }
    
        .three-d-application-card--video:hover .three-d-application-video-card__video {
            filter:
                contrast(1.05) saturate(1.05);
    
            transform: scale(1.09);
        }
    
        /* Oscurecimiento para leer el contenido */
    
        .three-d-application-video-card__overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
    
            background:
                linear-gradient(180deg,
                    rgba(4, 14, 34, 0.15) 0%,
                    rgba(4, 14, 34, 0.22) 36%,
                    rgba(4, 14, 34, 0.94) 100%);
    
            pointer-events: none;
        }
    
        /* =========================================================
       NÚMERO Y ESTADO
    ========================================================= */
    
        .three-d-application-video-card__number {
            position: absolute !important;
            top: 1.25rem;
            left: 1.25rem;
            z-index: 4;
    
            margin: 0 !important;
    
            background-color: var(--three-d-yellow) !important;
            color: var(--three-d-navy) !important;
    
            box-shadow:
                0 10px 24px rgba(7, 21, 47, 0.25);
        }
    
        .three-d-application-video-card__status {
            position: absolute;
            top: 1.35rem;
            right: 1.15rem;
            z-index: 4;
    
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
    
            padding: 0.5rem 0.7rem;
    
            border: 1px solid rgba(255, 255, 255, 0.26);
            border-radius: 999px;
    
            background-color: rgba(7, 21, 47, 0.8);
            color: var(--three-d-white);
    
            font-size: 0.66rem;
            font-weight: 850;
            letter-spacing: 0.06em;
            text-transform: uppercase;
    
            backdrop-filter: blur(8px);
        }
    
        .three-d-application-video-card__status>span {
            width: 7px;
            height: 7px;
    
            border-radius: 50%;
    
            background-color: var(--three-d-yellow);
    
            box-shadow:
                0 0 0 4px rgba(253, 180, 39, 0.16);
        }
    
        /* =========================================================
       CONTENIDO INFERIOR
    ========================================================= */
    
        .three-d-application-video-card__content {
            position: relative;
            z-index: 4;
    
            display: flex;
            flex-direction: column;
    
            width: 100%;
            padding: 6.5rem 1.55rem 1.55rem;
        }
    
        .three-d-application-video-card__content h3 {
            margin: 0 0 0.55rem;
    
            color: var(--three-d-white);
    
            font-size: 1.25rem;
            line-height: 1.2;
        }
    
        .three-d-application-video-card__content p {
            margin: 0 0 1.15rem;
    
            color: rgba(255, 255, 255, 0.76);
    
            font-size: 0.92rem;
            line-height: 1.55;
        }
    
        .three-d-application-video-card__content a {
            display: flex;
            align-items: center;
            justify-content: space-between;
    
            margin-top: auto;
            padding-top: 0.8rem;
    
            border-top: 1px solid rgba(255, 255, 255, 0.25);
    
            color: var(--three-d-white);
            font-weight: 760;
        }
    
        .three-d-application-video-card__content a span {
            color: var(--three-d-yellow);
    
            font-size: 1.3rem;
    
            transition: transform 0.3s ease;
        }
    
        .three-d-application-video-card__content a:hover span {
            transform: translateX(6px);
        }
    
        /* =========================================================
       TABLET
    ========================================================= */
    
        @media (max-width: 1100px) {
            .three-d-application-card--video {
                min-height: 300px;
            }
        }
    
        /* =========================================================
       CELULAR
    ========================================================= */
    
        @media (max-width: 760px) {
            .three-d-application-card--video {
                min-height: 310px;
            }
    
            .three-d-application-video-card__video {
                object-position: center 43%;
            }
    
            .three-d-application-video-card__number {
                top: 1rem;
                left: 1rem;
            }
    
            .three-d-application-video-card__status {
                top: 1.1rem;
                right: 0.9rem;
    
                padding: 0.42rem 0.58rem;
    
                font-size: 0.58rem;
            }
    
            .three-d-application-video-card__content {
                padding:
                    6rem 1.25rem 1.25rem;
            }
        }
    
        /* =========================================================
       MOVIMIENTO REDUCIDO
    ========================================================= */
    
        @media (prefers-reduced-motion: reduce) {
            .three-d-application-video-card__video {
                transition: none;
            }
        }

                /* =========================================================
           TARJETA DESTACADA CON VIDEO
           Archivo: css/impresion-3d.css
        ========================================================= */
        
                /*
           Mantiene una altura uniforme en todas las tarjetas
           del carrusel de aplicaciones.
        */
        
                .three-d-carousel--applications .three-d-application-card {
                    min-height: 330px;
                }
        
                /* Tarjeta principal */
        
                .three-d-application-card--video {
                    position: relative;
        
                    display: flex;
                    flex-direction: column;
        
                    min-height: 330px;
                    padding: 0 !important;
                    overflow: hidden;
        
                    border: 1px solid rgba(253, 180, 39, 0.7);
                    border-radius: 22px;
        
                    background-color: var(--three-d-white);
        
                    box-shadow:
                        0 18px 42px rgba(7, 21, 47, 0.18);
        
                    isolation: isolate;
        
                    transition:
                        transform 0.35s ease,
                        border-color 0.35s ease,
                        box-shadow 0.35s ease;
                }
        
                .three-d-application-card--video::before,
                .three-d-application-card--video::after {
                    display: none;
                }
        
                .three-d-application-card--video:hover {
                    border-color: var(--three-d-yellow);
        
                    box-shadow:
                        0 26px 55px rgba(7, 21, 47, 0.25);
        
                    transform: translateY(-8px);
                }
        
                /* =========================================================
           ZONA DEL VIDEO
        ========================================================= */
        
                .three-d-application-video-card__media {
                    position: relative;
        
                    flex: 0 0 auto;
        
                    width: 100%;
                    height: 180px;
                    overflow: hidden;
        
                    background:
                        linear-gradient(145deg,
                            var(--three-d-navy),
                            var(--three-d-blue));
                }
        
                .three-d-application-video-card__video {
                    position: absolute;
                    inset: 0;
        
                    display: block;
        
                    width: 100%;
                    height: 100%;
        
                    object-fit: cover;
                    object-position: center 46%;
        
                    background-color: var(--three-d-navy);
        
                    transform: scale(1.04);
        
                    transition:
                        transform 0.7s ease,
                        filter 0.35s ease;
                }
        
                .three-d-application-card--video:hover .three-d-application-video-card__video {
                    filter:
                        contrast(1.05) saturate(1.05);
        
                    transform: scale(1.09);
                }
        
                /* Capa para dar profundidad y mejorar contraste */
        
                .three-d-application-video-card__shade {
                    position: absolute;
                    inset: 0;
                    z-index: 2;
        
                    background:
                        linear-gradient(180deg,
                            rgba(4, 14, 34, 0.08) 0%,
                            transparent 45%,
                            rgba(4, 14, 34, 0.76) 100%);
        
                    pointer-events: none;
                }
        
                /* =========================================================
           NÚMERO Y ESTADO
        ========================================================= */
        
                .three-d-application-video-card__number {
                    position: absolute;
                    left: 1rem;
                    bottom: 1rem;
                    z-index: 4;
        
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
        
                    width: 48px;
                    height: 48px;
        
                    border-radius: 14px;
        
                    background:
                        linear-gradient(145deg,
                            var(--three-d-yellow),
                            #ffd76f);
        
                    color: var(--three-d-navy);
        
                    font-size: 0.85rem;
                    font-weight: 900;
        
                    box-shadow:
                        0 10px 24px rgba(4, 14, 34, 0.3);
        
                    transition: transform 0.3s ease;
                }
        
                .three-d-application-card--video:hover .three-d-application-video-card__number {
                    transform: rotate(-7deg) scale(1.05);
                }
        
                .three-d-application-video-card__status {
                    position: absolute;
                    top: 1rem;
                    right: 1rem;
                    z-index: 4;
        
                    display: inline-flex;
                    align-items: center;
                    gap: 0.45rem;
        
                    padding: 0.48rem 0.7rem;
        
                    border: 1px solid rgba(255, 255, 255, 0.25);
                    border-radius: 999px;
        
                    background-color: rgba(7, 21, 47, 0.82);
                    color: var(--three-d-white);
        
                    font-size: 0.63rem;
                    font-weight: 850;
                    line-height: 1;
                    letter-spacing: 0.06em;
                    text-transform: uppercase;
        
                    box-shadow:
                        0 8px 20px rgba(4, 14, 34, 0.22);
        
                    backdrop-filter: blur(9px);
                }
        
                .three-d-application-video-card__status>span {
                    width: 7px;
                    height: 7px;
        
                    border-radius: 50%;
        
                    background-color: var(--three-d-yellow);
        
                    box-shadow:
                        0 0 0 4px rgba(253, 180, 39, 0.16);
        
                    animation:
                        threeDApplicationPulse 1.8s ease-in-out infinite;
                }
        
                /* =========================================================
           CONTENIDO INFERIOR
        ========================================================= */
        
                .three-d-application-video-card__body {
                    position: relative;
        
                    display: flex;
                    flex: 1;
                    flex-direction: column;
        
                    padding: 1.2rem 1.35rem 1.35rem;
        
                    background:
                        linear-gradient(145deg,
                            #ffffff,
                            #f2f6fb);
                }
        
                .three-d-application-video-card__body::before {
                    content: "";
        
                    position: absolute;
                    top: 0;
                    right: 1.35rem;
                    left: 1.35rem;
        
                    height: 3px;
        
                    border-radius: 999px;
        
                    background:
                        linear-gradient(90deg,
                            var(--three-d-yellow),
                            var(--three-d-blue));
                }
        
                .three-d-application-video-card__eyebrow {
                    margin: 0.25rem 0 0.4rem !important;
        
                    color: var(--three-d-yellow-dark) !important;
        
                    font-size: 0.68rem !important;
                    font-weight: 850;
                    letter-spacing: 0.09em;
                    line-height: 1.3 !important;
                    text-transform: uppercase;
                }
        
                .three-d-application-video-card__body h3 {
                    margin: 0 0 0.45rem;
        
                    color: var(--three-d-text);
        
                    font-size: 1.16rem;
                    line-height: 1.2;
                }
        
                .three-d-application-video-card__body>p:not(.three-d-application-video-card__eyebrow) {
                    margin: 0 0 0.9rem;
        
                    color: var(--three-d-muted);
        
                    font-size: 0.88rem;
                    line-height: 1.5;
                }
        
                .three-d-application-video-card__body a {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
        
                    margin-top: auto;
                    padding-top: 0.75rem;
        
                    border-top: 1px solid var(--three-d-border);
        
                    color: var(--three-d-blue);
                    font-weight: 760;
                }
        
                .three-d-application-video-card__body a span {
                    color: var(--three-d-yellow-dark);
        
                    font-size: 1.25rem;
        
                    transition: transform 0.3s ease;
                }
        
                .three-d-application-video-card__body a:hover span {
                    transform: translateX(6px);
                }
        
                /* =========================================================
           ANIMACIÓN DEL INDICADOR
        ========================================================= */
        
                @keyframes threeDApplicationPulse {
        
                    0%,
                    100% {
                        box-shadow:
                            0 0 0 4px rgba(253, 180, 39, 0.14);
                    }
        
                    50% {
                        box-shadow:
                            0 0 0 8px rgba(253, 180, 39, 0.025);
                    }
                }
        
                /* =========================================================
           PANTALLAS GRANDES Y 4K
        ========================================================= */
        
                @media (min-width: 1500px) {
                    .three-d-carousel--applications .three-d-application-card {
                        min-height: 365px;
                    }
        
                    .three-d-application-card--video {
                        min-height: 365px;
                    }
        
                    .three-d-application-video-card__media {
                        height: 205px;
                    }
        
                    .three-d-application-video-card__body {
                        padding:
                            1.3rem 1.45rem 1.45rem;
                    }
                }
        
                /* =========================================================
           TABLET Y LAPTOP PEQUEÑA
        ========================================================= */
        
                @media (max-width: 1100px) {
                    .three-d-carousel--applications .three-d-application-card {
                        min-height: 320px;
                    }
        
                    .three-d-application-card--video {
                        min-height: 320px;
                    }
        
                    .three-d-application-video-card__media {
                        height: 175px;
                    }
                }
        
                /* =========================================================
           CELULAR
        ========================================================= */
        
                @media (max-width: 760px) {
                    .three-d-carousel--applications .three-d-application-card {
                        min-height: 335px;
                    }
        
                    .three-d-application-card--video {
                        min-height: 335px;
                    }
        
                    .three-d-application-video-card__media {
                        height: 185px;
                    }
        
                    .three-d-application-video-card__video {
                        object-position: center 44%;
                    }
        
                    .three-d-application-video-card__number {
                        left: 0.85rem;
                        bottom: 0.85rem;
        
                        width: 43px;
                        height: 43px;
                    }
        
                    .three-d-application-video-card__status {
                        top: 0.8rem;
                        right: 0.8rem;
        
                        padding: 0.42rem 0.58rem;
        
                        font-size: 0.56rem;
                    }
        
                    .three-d-application-video-card__body {
                        padding:
                            1.1rem 1.2rem 1.2rem;
                    }
                }
        
                /* =========================================================
           MOVIMIENTO REDUCIDO
        ========================================================= */
        
                @media (prefers-reduced-motion: reduce) {
        
                    .three-d-application-video-card__video,
                    .three-d-application-video-card__number,
                    .three-d-application-video-card__status>span {
                        animation: none;
                        transition: none;
                    }
                }

                                /* =========================================================
                   CORRECCIÓN FINAL DEL CARRUSEL DE APLICACIONES
                   Archivo: css/impresion-3d.css
                ========================================================= */
                
                                .three-d-carousel--applications .three-d-carousel__viewport {
                                    overflow: hidden;
                                }
                
                                .three-d-carousel--applications .three-d-carousel__track {
                                    display: flex;
                                    align-items: stretch;
                
                                    height: auto !important;
                                    min-height: 0 !important;
                                }
                
                                .three-d-carousel--applications [data-carousel-slide] {
                                    align-self: stretch;
                
                                    height: auto !important;
                                    min-height: 330px !important;
                                    max-height: none !important;
                                }
                
                                /* Tarjetas normales */
                
                                .three-d-carousel--applications .three-d-application-card:not(.three-d-application-card--video) {
                                    display: flex;
                                    flex-direction: column;
                
                                    padding: 1.55rem;
                
                                    overflow: hidden;
                                }
                
                                .three-d-carousel--applications .three-d-application-card:not(.three-d-application-card--video)>a {
                                    margin-top: auto;
                                }
                
                                /* Tarjeta 05 con video */
                
                                .three-d-carousel--applications .three-d-application-card--video {
                                    display: flex !important;
                                    flex-direction: column !important;
                
                                    padding: 0 !important;
                                    overflow: hidden !important;
                
                                    background-color: #ffffff;
                                }
                
                                .three-d-application-video-card__media {
                                    position: relative;
                
                                    flex: 0 0 175px;
                
                                    width: 100%;
                                    height: 175px;
                                    overflow: hidden;
                
                                    background-color: var(--three-d-navy);
                                }
                
                                .three-d-application-video-card__video {
                                    position: absolute;
                                    inset: 0;
                
                                    display: block;
                
                                    width: 100%;
                                    height: 100%;
                
                                    object-fit: cover;
                                    object-position: center 44%;
                
                                    transform: scale(1.04);
                                }
                
                                .three-d-application-video-card__shade {
                                    position: absolute;
                                    inset: 0;
                                    z-index: 2;
                
                                    background:
                                        linear-gradient(180deg,
                                            rgba(4, 14, 34, 0.06),
                                            transparent 42%,
                                            rgba(4, 14, 34, 0.76));
                
                                    pointer-events: none;
                                }
                
                                .three-d-application-video-card__number {
                                    position: absolute;
                                    left: 1rem;
                                    bottom: 1rem;
                                    z-index: 4;
                
                                    display: inline-flex;
                                    align-items: center;
                                    justify-content: center;
                
                                    width: 46px;
                                    height: 46px;
                
                                    border-radius: 13px;
                
                                    background-color: var(--three-d-yellow);
                                    color: var(--three-d-navy);
                
                                    font-size: 0.82rem;
                                    font-weight: 900;
                
                                    box-shadow:
                                        0 9px 22px rgba(4, 14, 34, 0.28);
                                }
                
                                .three-d-application-video-card__status {
                                    position: absolute;
                                    top: 0.9rem;
                                    right: 0.9rem;
                                    z-index: 4;
                
                                    display: inline-flex;
                                    align-items: center;
                                    gap: 0.42rem;
                
                                    padding: 0.43rem 0.62rem;
                
                                    border: 1px solid rgba(255, 255, 255, 0.28);
                                    border-radius: 999px;
                
                                    background-color: rgba(7, 21, 47, 0.82);
                                    color: #ffffff;
                
                                    font-size: 0.58rem;
                                    font-weight: 850;
                                    letter-spacing: 0.06em;
                                    text-transform: uppercase;
                
                                    backdrop-filter: blur(8px);
                                }
                
                                .three-d-application-video-card__status>span {
                                    width: 7px;
                                    height: 7px;
                
                                    border-radius: 50%;
                
                                    background-color: var(--three-d-yellow);
                
                                    box-shadow:
                                        0 0 0 4px rgba(253, 180, 39, 0.16);
                                }
                
                                .three-d-application-video-card__body {
                                    display: flex;
                                    flex: 1;
                                    flex-direction: column;
                
                                    min-height: 0;
                                    padding: 1rem 1.3rem 1.3rem;
                
                                    background:
                                        linear-gradient(145deg,
                                            #ffffff,
                                            #f3f6fa);
                                }
                
                                .three-d-application-video-card__eyebrow {
                                    margin: 0 0 0.35rem !important;
                
                                    color: var(--three-d-yellow-dark) !important;
                
                                    font-size: 0.65rem !important;
                                    font-weight: 850;
                                    letter-spacing: 0.08em;
                                    text-transform: uppercase;
                                }
                
                                .three-d-application-video-card__body h3 {
                                    margin: 0 0 0.45rem;
                
                                    color: var(--three-d-text);
                
                                    font-size: 1.16rem;
                                    line-height: 1.2;
                                }
                
                                .three-d-application-video-card__body>p:not(.three-d-application-video-card__eyebrow) {
                                    margin: 0 0 0.8rem;
                
                                    color: var(--three-d-muted);
                
                                    font-size: 0.86rem;
                                    line-height: 1.48;
                                }
                
                                .three-d-application-video-card__body a {
                                    display: flex;
                                    align-items: center;
                                    justify-content: space-between;
                
                                    margin-top: auto;
                                    padding-top: 0.72rem;
                
                                    border-top: 1px solid var(--three-d-border);
                
                                    color: var(--three-d-blue);
                                    font-weight: 760;
                                }
                
                                .three-d-application-video-card__body a span {
                                    color: var(--three-d-yellow-dark);
                                }
                
                                /* Laptop L y 4K */
                
                                @media (min-width: 1500px) {
                                    .three-d-carousel--applications [data-carousel-slide] {
                                        min-height: 350px !important;
                                    }
                
                                    .three-d-application-video-card__media {
                                        flex-basis: 190px;
                
                                        height: 190px;
                                    }
                                }
                
                                /* Tablet */
                
                                @media (max-width: 1100px) {
                                    .three-d-carousel--applications [data-carousel-slide] {
                                        min-height: 320px !important;
                                    }
                
                                    .three-d-application-video-card__media {
                                        flex-basis: 165px;
                
                                        height: 165px;
                                    }
                                }
                
                                /* Celular */
                
                                @media (max-width: 760px) {
                                    .three-d-carousel--applications [data-carousel-slide] {
                                        min-height: 330px !important;
                                    }
                
                                    .three-d-application-video-card__media {
                                        flex-basis: 180px;
                
                                        height: 180px;
                                    }
                
                                    .three-d-application-video-card__body {
                                        padding: 1rem 1.15rem 1.15rem;
                                    }
                                }
}