/* ========================================================= */
/* RESET GENERAL */
/* ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #08111f;
    color: #f5f7fb;
    line-height: 1.6;
}

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================================= */
/* HEADER + NAVBAR + HERO FINAL */
/* ========================================================= */

.header {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(0, 145, 255, 0.22), transparent 35%),
        linear-gradient(135deg, #08111f, #0c1b33);
    padding: 125px 7% 24px;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 128px;
    background:
        linear-gradient(180deg, #050b14 0%, rgba(5, 11, 20, 0.92) 52%, rgba(5, 11, 20, 0) 100%);
    z-index: 4;
    pointer-events: none;
}

.tech-background {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(56, 189, 248, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, black, transparent);
    animation: gridMove 18s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 120px 120px;
    }
}

.navbar,
.hero {
    position: relative;
    z-index: 2;
}

/* NAVBAR */

.navbar {
    display: flex;
    align-items: center;
}

.premium-navbar {
    position: absolute;
    top: 32px;
    left: 6.5%;
    right: 5%;
    z-index: 9999;

    height: 64px;
    padding: 0;

    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
    align-items: center;
    column-gap: 24px;

    background: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;

    transition:
        top 0.3s ease,
        height 0.3s ease,
        padding 0.3s ease,
        border-radius 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
    animation: navEntrance 720ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.premium-navbar.scrolled {
    position: fixed;
    top: 14px;
    left: 4%;
    right: 4%;

    height: 78px;
    padding: 0 26px;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    border-radius: 28px;

    background: linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(8, 17, 31, 0.9));
    backdrop-filter: blur(22px);
    border: 1px solid rgba(56, 189, 248, 0.5);

    box-shadow:
        0 0 35px rgba(56, 189, 248, 0.14),
        0 24px 70px rgba(0, 0, 0, 0.45);
}

.premium-navbar.scrolled.nav-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-120%);
}

.nav-brand {
    width: 176px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo {
    width: 164px;
    height: auto;
    display: block;
    object-fit: contain;
    transition: 0.3s ease;
}

.premium-navbar:not(.scrolled) .nav-brand {
    width: 268px;
}

.premium-navbar:not(.scrolled) .nav-logo {
    width: 252px;
}

.premium-navbar.scrolled .nav-brand {
    width: 184px;
}

.premium-navbar.scrolled .nav-logo {
    width: 172px;
}

.nav-divider {
    display: none;

}

.nav-divider-left {
    margin-right: 42px;
}

.nav-divider-right {
    margin-left: 42px;
    margin-right: 24px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    list-style: none;
    flex: 1;
}

.premium-btn {
    justify-self: end;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #cbd5e1;
    font-size: 15px;
    font-weight: 700;

    padding: 12px 14px;
    border-radius: 14px;

    position: relative;
    transition: 0.3s ease;
}

.nav-links a i {
    width: 21px;
    height: 21px;
    stroke-width: 1.9;
}

.nav-links a:hover {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.08);
    box-shadow:
        inset 0 0 14px rgba(56, 189, 248, 0.08),
        0 0 18px rgba(56, 189, 248, 0.12);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 4px;

    height: 2px;
    border-radius: 999px;

    background: linear-gradient(90deg, #38bdf8, #2563eb);
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.premium-btn {
    width: 230px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    background: rgba(56, 189, 248, 0.06);
    color: #f8fafc;

    border: 1px solid rgba(56, 189, 248, 0.7);
    border-radius: 8px;
    
    font-weight: 900;
    white-space: nowrap;

    overflow: hidden;
    backdrop-filter: blur(10px);

    box-shadow:
        inset 0 0 18px rgba(56, 189, 248, 0.05),
        0 12px 28px rgba(0, 0, 0, 0.18);

    transition: 0.3s ease;
}

.premium-btn span {
    position: relative;
    z-index: 2;
}

.premium-btn-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.premium-btn:hover {
    background: #0891c7;
    border-color: #38bdf8;
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 16px 34px rgba(8, 145, 199, 0.24);
}

/*-----------------------------------------------------------Configuracion responsive seccion especifica ---------------*/

/* NOTEBOOK */
@media (max-width: 1366px) {
    .premium-navbar {
        left: 5%;
        right: 5%;
    }

    .nav-brand {
        width: 230px;
    }

    .nav-logo {
        width: 190px;
    }

    .nav-links {
        gap: 14px;
    }

    .nav-links a {
        font-size: 14px;
        padding: 10px 10px;
    }

    .premium-btn {
        width: 210px;
    }
}

/* TABLET */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-divider-left,
    .nav-divider-right {
        display: none;
    }

    .premium-navbar {
        left: 5%;
        right: 5%;
        justify-content: space-between;
    }

    .premium-btn {
        width: 190px;
    }
}

/* CELULAR */
@media (max-width: 600px) {
    .premium-navbar {
        left: 18px;
        right: 18px;
        height: 72px;
        padding: 0 16px;
        display: flex;
        justify-content: space-between;
        gap: 12px;
        border-radius: 22px;
    }

    .premium-navbar.scrolled {
        position: absolute;
        top: 32px;
        left: 18px;
        right: 18px;
        height: 72px;
        padding: 0 16px;
        border-radius: 22px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .premium-navbar.scrolled.nav-hidden {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-brand {
        width: 162px;
    }

    .nav-logo {
        width: 148px;
    }

    .premium-navbar:not(.scrolled) .nav-brand,
    .premium-navbar.scrolled .nav-brand {
        width: 162px;
    }

    .premium-navbar:not(.scrolled) .nav-logo,
    .premium-navbar.scrolled .nav-logo {
        width: 148px;
    }

    .premium-btn {
        width: 100px;
        min-width: 100px;
        height: 44px;
        padding: 0;
        border-radius: 16px;
        font-size: 0;
        gap: 0;
        letter-spacing: 0;
        text-align: center;
    }

    .premium-btn::after {
        content: "Asesor\00ED a";
        display: block;
        width: auto;
        text-align: center;
        font-size: 12px;
        line-height: 1;
    }
}


/* HERO */

.hero-human {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 120px);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 40px;
}

.hero-content {
    max-width: 720px;
    z-index: 6;
    position: relative;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 14px;
    padding-bottom: 34px;
}

.hero-kicker {
    display: none;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(36px, 3.05vw, 44px);
    line-height: 1.18;
    color: #f8fafc;
    margin-bottom: 26px;
    transform: translateY(44px);
}

.hero-title-main,
.hero-title-accent {
    display: block;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(18px);
    animation: heroCopyEntrance 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title-accent {
    color: #38bdf8;
    text-shadow: 0 0 34px rgba(56, 189, 248, 0.45);
    animation-delay: 160ms;
}

.hero-text {
    max-width: 620px;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.58;
    text-align: justify;
    text-align-last: left;
    margin-bottom: 0;
    transform: translateY(58px);
    opacity: 0;
    animation: heroFadeEntrance 820ms ease 300ms both;
}

.hero-trust-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    max-width: 640px;
    margin-top: auto;
}

.hero-trust-card {
    opacity: 0;
    transform: translateY(16px);
    animation: heroCopyEntrance 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-trust-card:nth-child(1) {
    animation-delay: 480ms;
}

.hero-trust-card:nth-child(2) {
    animation-delay: 600ms;
}

.hero-trust-card:nth-child(3) {
    animation-delay: 720ms;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 15px;
}

.btn-primary {
    background: #0ea5e9;
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(14, 165, 233, 0.28);
}

.btn-secondary {
    color: #e2e8f0;
}

.btn-secondary::after {
    content: "→";
    margin-left: 14px;
    color: #ffffff;
    font-size: 22px;
}

.hero-portrait {
    position: absolute;
    top: -125px;
    right: -7vw;
    bottom: -24px;
    width: 100vw;
    min-height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.hero-portrait::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
                linear-gradient(90deg, #050b14 0%, #050b14 30%, rgba(5, 11, 20, 0.9) 43%, rgba(5, 11, 20, 0.38) 58%, rgba(5, 11, 20, 0.04) 100%),
                linear-gradient(180deg, #050b14 0%, rgba(5, 11, 20, 0.12) 24%, rgba(5, 11, 20, 0) 46%),
                linear-gradient(0deg, #050b14 0%, rgba(5, 11, 20, 0.58) 14%, rgba(5, 11, 20, 0) 36%);
    z-index: 3;
    pointer-events: none;
}

.hero-portrait img {
    position: relative;
    z-index: 1;
    width: 76%;
    height: 100vh;
    object-fit: cover;
    object-position: 64% center;
    border-radius: 0;
    filter: brightness(0.82) contrast(1.08) saturate(1.08);

    -webkit-mask-image: linear-gradient(90deg,
            transparent 0%,
            transparent 14%,
            rgba(0, 0, 0, 0.08) 28%,
            rgba(0, 0, 0, 0.72) 48%,
            black 66%,
            black 100%);
    mask-image: linear-gradient(90deg,
            transparent 0%,
            transparent 14%,
            rgba(0, 0, 0, 0.08) 28%,
            rgba(0, 0, 0, 0.72) 48%,
            black 66%,
            black 100%);
    opacity: 0;
    transform: scale(1.025);
    animation: heroImageEntrance 1100ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}
.hero-trust-card {
    position: relative;
    z-index: 4;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    border-radius: 999px;
    background: rgba(8, 17, 31, 0.48);
    border: 1px solid rgba(56, 189, 248, 0.18);
    backdrop-filter: blur(14px);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 800;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 14px 34px rgba(0, 0, 0, 0.18);
}

.hero-trust-card i {
    width: 24px;
    height: 24px;
    padding: 5px;
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.6);
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.08);
    flex-shrink: 0;
}

@keyframes navEntrance {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroCopyEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeEntrance {
    to {
        opacity: 1;
    }
}

@keyframes heroImageEntrance {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* TABLET */

@media (max-width: 1024px) {
    .hero-human {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 40px;
    }

    .hero-content {
        max-width: 620px;
        position: relative;
        z-index: 5;
    }

    .hero-portrait {
        position: relative;
        inset: auto;
        width: 100%;
        height: 460px;
        margin-top: 20px;
    }

    .hero-portrait img {
        height: 460px;
    }

}

/* CELULAR */

@media (max-width: 600px) {
    .header {
        padding: 0;
        min-height: 100svh;
    }

    .hero-human {
        gap: 24px;
        min-height: 100svh;
        padding: 128px 6% 52px;
        overflow: hidden;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.14;
        margin-bottom: 28px;
        transform: translateY(0);
    }

    .hero-title-main,
    .hero-title-accent {
        white-space: normal;
    }

    .hero-text {
        font-size: 16px;
        line-height: 1.64;
        margin-top: 4px;
        transform: translateY(0);
    }

    .hero-trust-list {
        display: grid;
        justify-items: center;
        gap: 10px;
        width: 100%;
        margin-top: 42px;
    }

    .hero-trust-card {
        width: min(100%, 270px);
        min-height: auto;
        justify-content: center;
        padding: 10px 14px;
        background: rgba(8, 17, 31, 0.56);
    }

    .hero-portrait {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        margin-top: 0;
        opacity: 0.58;
    }

    .hero-portrait img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 62% top;
    }

    .hero-trust-card {
        display: flex;
    }
}

/* ========================================================= */
/* SECCIONES Y FONDOS */
/* ========================================================= */

.section {
    padding: 90px 8%;
    position: relative;
    overflow: hidden;
}

.section-base {
    background:
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.06), transparent 30%),
        #08111f;
}

.section-soft {
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.1), transparent 28%),
        linear-gradient(180deg, #0b1629 0%, #08111f 100%);
}

.section-light {
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 32%),
        #f8fafc;
    color: #0f172a;
}

.section-light .section-title p {
    color: #2563eb;
}

.section-light .section-title h2,
.section-light h3 {
    color: #0f172a;
}

.section-light p,
.section-light li {
    color: #334155;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.section-title p {
    color: #38bdf8;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-title h2 {
    font-size: 38px;
}

#presencia {
    padding-top: 42px;
    padding-bottom: 64px;
}

#presencia .section-title {
    margin-bottom: 34px;
}

/* ========================================================= */
/* DECORACIONES DE FONDO */
/* ========================================================= */

.wave-bg,
.tech-wave,
.code-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.9;
}

.wave-bg::before,
.tech-wave::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 190px;
    left: -10%;
    top: 45%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.1), transparent);
    border-radius: 50%;
    transform: rotate(-7deg);
}

.tech-wave::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: 8%;
    top: 12%;
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 50%;
}

.code-shapes::before {
    content: "{ }";
    position: absolute;
    right: 8%;
    top: 14%;
    color: rgba(96, 165, 250, 0.12);
    font-size: 110px;
    font-weight: 800;
}

.code-shapes::after {
    content: "</>";
    position: absolute;
    left: 8%;
    bottom: 10%;
    color: rgba(56, 189, 248, 0.11);
    font-size: 90px;
    font-weight: 800;
}

/* ========================================================= */
/* CARDS */
/* ========================================================= */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    position: relative;
    z-index: 2;
}

.cards-slim {
    max-width: 1040px;
    margin: 0 auto;
    gap: 30px;
}

.cards-slim .card {
    min-height: 310px;
    padding: 34px 24px;
}

.cards-slim .card p {
    width: min(100%, 260px);
    margin-inline: auto;
    text-align: justify;
    text-align-last: left;
    line-height: 1.62;
    text-wrap: pretty;
}

.card {
    position: relative;
    overflow: hidden;
    background: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 22px;
    padding: 28px;
    transition: 0.3s ease;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 38%);
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.card::after {
    content: "";
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: -40px;
    height: 80px;
    background: rgba(56, 189, 248, 0.18);
    filter: blur(35px);
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.55);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.32);
}

.card:hover::before,
.card:hover::after {
    opacity: 1;
}

.card h3,
.card p,
.card span,
.card i {
    position: relative;
    z-index: 2;
}

.card h3 {
    margin-bottom: 12px;
}

.card-title-center {
    text-align: center;
}

.card p {
    color: #cbd5e1;
}

.card strong {
    color: #ffffff;
}

.card-icon {
    width: 42px;
    height: 42px;
    color: #38bdf8;
    margin: 0 auto 18px;
    stroke-width: 1.8;
    display: block;
}

@media (max-width: 600px) {
    .cards,
    .cards-slim {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cards-slim .card {
        min-height: auto;
        padding: 28px 24px;
    }

    .cards-slim .card p {
        width: 100%;
        max-width: 290px;
    }
}

/* ========================================================= */
/* REVEAL */
/* ========================================================= */

.reveal {
    --reveal-y: 26px;
    --reveal-scale: 0.985;
    opacity: 0;
    transform: translateY(var(--reveal-y)) scale(var(--reveal-scale));
    filter: blur(8px);
    transition:
        opacity 760ms ease,
        transform 920ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 920ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.section-title.reveal,
.tools-heading.reveal {
    --reveal-y: 18px;
    --reveal-scale: 1;
}

.presence-block.reveal,
.vault-shell.reveal,
.dashboard-mockup.reveal,
.contact-intro.reveal,
.contact-form.reveal {
    --reveal-y: 34px;
}

.footer-grid>.reveal,
.footer-bottom.reveal {
    --reveal-y: 18px;
    --reveal-scale: 1;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal.active,
    .hero-title-main,
    .hero-title-accent,
    .hero-text,
    .hero-trust-card,
    .hero-portrait img {
        opacity: 1;
        filter: none;
        animation: none;
    }

    .reveal,
    .reveal.active,
    .hero-title-main,
    .hero-title-accent,
    .hero-trust-card,
    .hero-portrait img {
        transform: none;
    }
}

/* ========================================================= */
/* SOBRE MÍ - HOLOGRAMA TECNOLÓGICO */
/* ========================================================= */

.about-section {
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.10), transparent 35%),
        linear-gradient(180deg, #08111f 0%, #050b14 55%, #08111f 100%);
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 76px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* VISUAL IZQUIERDA */

.about-visual {
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-orbit {
    position: relative;
    width: min(560px, 100%);
    aspect-ratio: 1 / 1.04;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 24%, rgba(56, 189, 248, 0.13), transparent 26%),
        radial-gradient(circle at 16% 52%, rgba(20, 184, 166, 0.1), transparent 24%),
        radial-gradient(circle at 82% 42%, rgba(139, 92, 246, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(8, 17, 31, 0.72), rgba(2, 6, 23, 0.92));
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 30px 90px rgba(0, 0, 0, 0.34);
}

.about-orbit.image-test > :not(.about-orbit-image) {
    display: none;
}

.about-orbit-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
}

.about-orbit.image-test::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.18)),
        radial-gradient(circle at 50% 100%, rgba(2, 6, 23, 0.28), transparent 42%);
}

.about-orbit::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(56, 189, 248, 0.28) 1.5px, transparent 2px);
    background-size: 26px 26px;
    opacity: 0.2;
    mask-image: radial-gradient(circle at 55% 36%, black, transparent 62%);
}

.about-orbit-glow {
    position: absolute;
    inset: 18%;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.12);
    filter: blur(42px);
    animation: orbitPulse 5s ease-in-out infinite;
}

.about-orbit-route {
    position: absolute;
    border: 2px dashed rgba(96, 165, 250, 0.26);
    border-radius: 50%;
    opacity: 0.42;
    animation: orbitDrift 13s ease-in-out infinite;
}

.route-a {
    width: 74%;
    height: 38%;
    left: 12%;
    top: 37%;
    transform: rotate(-18deg);
}

.route-b {
    width: 58%;
    height: 33%;
    left: 24%;
    top: 24%;
    transform: rotate(28deg);
    animation-delay: -2.4s;
}

.route-c {
    width: 68%;
    height: 34%;
    left: 17%;
    top: 52%;
    transform: rotate(18deg);
    animation-delay: -4.5s;
}

.orbit-code-symbol {
    position: absolute;
    color: #38bdf8;
    font-size: 34px;
    font-weight: 800;
    opacity: 0.42;
    text-shadow: 0 0 22px rgba(56, 189, 248, 0.55);
}

.symbol-left {
    left: 9%;
    top: 11%;
}

.symbol-right {
    right: 8%;
    top: 38%;
}

.symbol-corner {
    right: 14%;
    top: 8%;
    font-size: 28px;
    color: #22d3ee;
}

.orbit-mini {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0.46;
}

.mini-cloud {
    width: 62px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(125, 211, 252, 0.8), rgba(37, 99, 235, 0.48));
    box-shadow: 0 0 26px rgba(96, 165, 250, 0.34);
}

.mini-cloud::before,
.mini-cloud::after {
    content: "";
    position: absolute;
    bottom: 10px;
    border-radius: 50%;
    background: inherit;
}

.mini-cloud::before {
    left: 10px;
    width: 26px;
    height: 26px;
}

.mini-cloud::after {
    right: 11px;
    width: 32px;
    height: 32px;
}

.mini-cloud-left {
    left: 8%;
    bottom: 12%;
}

.mini-cloud-right {
    right: 6%;
    top: 12%;
    scale: 0.72;
}

.mini-arrow {
    width: 48px;
    height: 48px;
}

.mini-arrow::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-top: 4px solid #38bdf8;
    border-left: 4px solid #38bdf8;
    transform: rotate(45deg);
    filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.7));
}

.mini-arrow::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 18px;
    width: 4px;
    height: 38px;
    border-radius: 999px;
    background: #38bdf8;
    filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.7));
}

.mini-arrow-left {
    left: 5%;
    bottom: 32%;
}

.mini-arrow-right {
    right: 28%;
    top: 14%;
    transform: rotate(18deg);
}

.mini-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.7);
}

.dot-one {
    left: 23%;
    top: 8%;
}

.dot-two {
    right: 8%;
    bottom: 26%;
}

.dot-three {
    left: 7%;
    top: 58%;
}

.mini-ring {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(56, 189, 248, 0.72);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.36);
}

.ring-one {
    left: 24%;
    top: 39%;
}

.ring-two {
    right: 18%;
    bottom: 12%;
    scale: 0.75;
}

.mini-bar {
    width: 4px;
    height: 46px;
    border-radius: 999px;
    background: linear-gradient(180deg, #38bdf8, transparent);
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.45);
}

.bar-one {
    left: 48%;
    top: 6%;
}

.bar-two {
    right: 4%;
    bottom: 44%;
}

.orbit-panel {
    position: absolute;
    width: 132px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.42);
    border: 1px solid rgba(56, 189, 248, 0.08);
    opacity: 0.38;
}

.orbit-panel span {
    display: block;
    height: 6px;
    margin: 8px 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.75), rgba(139, 92, 246, 0.45));
}

.panel-left {
    left: 5%;
    top: 23%;
}

.panel-right {
    right: 6%;
    bottom: 17%;
}

.about-avatar {
    position: absolute;
    left: 50%;
    bottom: -7%;
    width: 260px;
    height: 220px;
    transform: translateX(-50%);
    border-radius: 48% 48% 24% 24%;
    background:
        radial-gradient(circle at 50% 32%, #172554 0 18%, transparent 19%),
        linear-gradient(180deg, #0f172a 0%, #020617 72%);
    box-shadow: 0 -22px 70px rgba(56, 189, 248, 0.18);
}

.avatar-face {
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: 180px;
    height: 150px;
    transform: translateX(-50%);
    border-radius: 44% 44% 34% 34%;
    background: linear-gradient(180deg, #f4b27f 0%, #d98258 100%);
    box-shadow: inset 0 -16px 22px rgba(46, 16, 10, 0.18);
}

.avatar-hair {
    position: absolute;
    left: -8px;
    right: -8px;
    top: -34px;
    height: 86px;
    border-radius: 54% 46% 42% 38%;
    background:
        radial-gradient(circle at 42% 12%, #111827 0 30px, transparent 31px),
        radial-gradient(circle at 58% 18%, #050816 0 42px, transparent 43px),
        linear-gradient(145deg, #050816 0%, #0b1020 100%);
    box-shadow:
        18px 14px 0 #050816,
        -14px 16px 0 #050816,
        inset 0 -10px 0 rgba(15, 23, 42, 0.75);
}

.avatar-hair::before {
    content: "";
    position: absolute;
    left: 50px;
    top: -20px;
    width: 62px;
    height: 54px;
    border-radius: 70% 30% 70% 30%;
    background: #050816;
    transform: rotate(-18deg);
    box-shadow: 26px 12px 0 #050816;
}

.avatar-eyes {
    position: absolute;
    left: 50%;
    top: 78px;
    width: 98px;
    height: 14px;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 26% 50%, #0f172a 0 5px, transparent 6px),
        radial-gradient(circle at 74% 50%, #0f172a 0 5px, transparent 6px);
    z-index: 2;
}

.avatar-glasses {
    position: absolute;
    left: 50%;
    top: 64px;
    width: 126px;
    height: 46px;
    transform: translateX(-50%);
}

.avatar-glasses::before,
.avatar-glasses::after {
    content: "";
    position: absolute;
    top: 0;
    width: 48px;
    height: 38px;
    border: 6px solid #0f172a;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    box-shadow: inset 0 0 18px rgba(56, 189, 248, 0.12);
}

.avatar-glasses::before {
    left: 0;
}

.avatar-glasses::after {
    right: 0;
}

.avatar-glasses {
    background:
        linear-gradient(#0f172a, #0f172a) center 18px / 24px 6px no-repeat;
}

.about-orbit-pin {
    position: absolute;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 136px;
    height: 140px;
    padding: 18px 14px 20px;
    border: 1px solid rgba(125, 211, 252, 0.36);
    border-radius: 68px 68px 68px 10px;
    background:
        radial-gradient(circle at 50% 22%, rgba(125, 211, 252, 0.22), transparent 30%),
        linear-gradient(180deg, rgba(14, 116, 144, 0.98), rgba(8, 17, 31, 1));
    color: #ffffff;
    cursor: pointer;
    opacity: 0.74;
    filter: saturate(0.82) brightness(0.82);
    text-align: center;
    transform-origin: 50% 96%;
    transition:
        transform 0.62s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.62s ease,
        border-color 0.45s ease,
        opacity 0.45s ease,
        filter 0.45s ease;
    animation: pinFloat 5.8s ease-in-out infinite;
}

.about-orbit-pin::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #38bdf8;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.8);
}

.about-orbit-pin i {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
    color: #e0f2fe;
    stroke-width: 1.8;
}

.about-orbit-pin strong {
    display: block;
}

.about-orbit-pin strong {
    font-size: 17px;
    line-height: 1.15;
}

.pin-mark {
    position: absolute;
    top: 16px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(2, 6, 23, 0.72);
    border: 1px solid rgba(226, 232, 240, 0.18);
    color: #7dd3fc;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.18);
}

.about-orbit-pin.is-active,
.about-orbit-pin:hover {
    z-index: 20;
    opacity: 1;
    filter: saturate(1.08) brightness(1.04);
    transform: translateY(-20px) scale(1.08);
    border-color: rgba(125, 211, 252, 0.8);
    background:
        radial-gradient(circle at 50% 22%, rgba(125, 211, 252, 0.34), transparent 30%),
        linear-gradient(180deg, rgba(14, 116, 144, 1), rgba(3, 7, 18, 1));
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 42px rgba(56, 189, 248, 0.38);
    animation-play-state: paused;
}

.pin-ops.is-active,
.pin-ops:hover {
    background:
        radial-gradient(circle at 50% 22%, rgba(45, 212, 191, 0.34), transparent 30%),
        linear-gradient(180deg, rgba(13, 148, 136, 1), rgba(3, 7, 18, 1));
}

.pin-tools.is-active,
.pin-tools:hover {
    background:
        radial-gradient(circle at 50% 22%, rgba(196, 181, 253, 0.34), transparent 30%),
        linear-gradient(180deg, rgba(109, 40, 217, 1), rgba(3, 7, 18, 1));
}

.pin-ops {
    left: 5%;
    top: 49%;
    background:
        radial-gradient(circle at 50% 22%, rgba(45, 212, 191, 0.24), transparent 30%),
        linear-gradient(180deg, rgba(13, 148, 136, 1), rgba(8, 17, 31, 1));
}

.pin-client {
    left: 25%;
    top: 22%;
    animation-delay: -1.2s;
}

.pin-code {
    left: 51%;
    top: 7%;
    width: 142px;
    height: 156px;
    animation-delay: -2.1s;
}

.pin-tools {
    right: 7%;
    top: 32%;
    background:
        radial-gradient(circle at 50% 22%, rgba(196, 181, 253, 0.24), transparent 30%),
        linear-gradient(180deg, rgba(109, 40, 217, 1), rgba(8, 17, 31, 1));
    animation-delay: -3.2s;
}

.pin-time {
    right: 8%;
    top: 61%;
    animation-delay: -0.6s;
}

@keyframes pinFloat {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -6px;
    }
}

@keyframes orbitDrift {
    0%,
    100% {
        scale: 1;
        opacity: 0.54;
    }

    50% {
        scale: 1.04;
        opacity: 0.9;
    }
}

@keyframes orbitPulse {
    0%,
    100% {
        opacity: 0.65;
        scale: 0.96;
    }

    50% {
        opacity: 1;
        scale: 1.06;
    }
}

/* TEXTO DERECHA */

.about-content {
    padding: 0;
    width: min(100%, 620px);
    justify-self: end;
}

.about-content .tag {
    color: #38bdf8;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    text-align: center;
}

.about-content h2 {
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1.05;
    margin-bottom: 18px;
    color: #ffffff;
    text-align: center;
}

.about-content h2 span {
    color: #38bdf8;
    text-shadow: 0 0 28px rgba(56, 189, 248, 0.45);
}

.about-content h3 {
    color: #e2e8f0;
    font-size: clamp(21px, 2vw, 28px);
    line-height: 1.35;
    max-width: 700px;
    margin-bottom: 28px;
}

.about-content p {
    color: #cbd5e1;
    font-size: 16.5px;
    line-height: 1.82;
    margin-bottom: 18px;
    max-width: 560px;
    text-align: justify;
    text-wrap: pretty;
}

/* NOTEBOOK */
@media (max-width: 1366px) {
    .about-wrapper {
        gap: 50px;
    }

    .about-orbit {
        width: min(500px, 100%);
    }

    .about-content h2 {
        font-size: 54px;
    }
}

/* TABLET */
@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about-visual {
        min-height: auto;
    }

    .about-orbit {
        width: min(620px, 100%);
    }

    .about-content p,
    .about-content h3 {
        max-width: 720px;
    }

    .about-content {
        width: 100%;
        justify-self: stretch;
    }
}

/* CELULAR */
@media (max-width: 600px) {
    .about-section {
        padding-top: 54px;
    }

    .about-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(180deg, rgba(5, 11, 20, 0.66), rgba(5, 11, 20, 0.88)),
            url("img/about-animation-test.png") center top / cover no-repeat;
        filter: blur(12px) saturate(1.08);
        opacity: 0.34;
        transform: scale(1.08);
        pointer-events: none;
    }

    .about-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 50% 12%, rgba(56, 189, 248, 0.13), transparent 34%),
            linear-gradient(180deg, rgba(5, 11, 20, 0.16), rgba(5, 11, 20, 0.54));
        pointer-events: none;
    }

    .about-wrapper {
        position: relative;
        z-index: 2;
    }

    .about-visual {
        display: none;
    }

    .about-content {
        width: 100%;
        margin-inline: auto;
        text-align: center;
    }

    .about-content .tag {
        display: block;
        width: fit-content;
        margin: 0 auto 18px;
        text-align: center;
    }

    .about-content h2 {
        font-size: 38px;
        max-width: 320px;
        margin: 0 auto 22px;
        width: 100%;
        text-align: center;
    }

    .about-content h3 {
        font-size: 20px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.72;
        max-width: none;
        margin: 0 0 22px;
        text-align: justify;
        text-align-last: left;
        text-justify: inter-word;
        text-wrap: pretty;
    }
}

/* ========================================================= */
/* ISM PROJECT VAULT */
/* ========================================================= */

.project-vault-section {
    padding-top: 76px;
    padding-bottom: 78px;
    background:
        radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.10), transparent 28%),
        radial-gradient(circle at 82% 22%, rgba(59, 130, 246, 0.12), transparent 30%),
        linear-gradient(180deg, #050b14 0%, #08111f 52%, #050b14 100%);
}

.vault-shell {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px;
    border: 1px solid rgba(56, 189, 248, 0.28);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.76), rgba(8, 17, 31, 0.94)),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.13), transparent 42%);
    box-shadow:
        0 0 0 1px rgba(56, 189, 248, 0.05) inset,
        0 28px 90px rgba(0, 0, 0, 0.42),
        0 0 44px rgba(14, 165, 233, 0.16);
    overflow: hidden;
}

.vault-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(56, 189, 248, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at 50% 18%, black, transparent 72%);
    opacity: 0.45;
    pointer-events: none;
}

.vault-header,
.vault-tabs,
.vault-workspace {
    position: relative;
    z-index: 2;
}

.vault-header {
    display: block;
    text-align: center;
}

.vault-kicker {
    color: #38bdf8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3.4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.vault-header h2 {
    font-size: clamp(34px, 4.1vw, 52px);
    line-height: 1.02;
    color: #f8fafc;
    margin-bottom: 0;
}

.vault-header h2 span {
    color: #38bdf8;
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.44);
}

.vault-header p:not(.vault-kicker) {
    max-width: 560px;
    color: #94a3b8;
    font-size: 15px;
}

.vault-tabs {
    width: 100%;
    margin: 28px 0 18px;
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    border: 1px solid rgba(56, 189, 248, 0.22);
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.58);
}

.vault-tab {
    border: 0;
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    color: #cbd5e1;
    background: transparent;
    font: inherit;
    font-weight: 800;
    transition: 0.28s ease;
}

.vault-tab span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.vault-tab strong {
    min-width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 999px;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.10);
    border: 1px solid rgba(56, 189, 248, 0.24);
    font-size: 13px;
}

.vault-tab:hover,
.vault-tab.active {
    color: #ffffff;
    background: rgba(56, 189, 248, 0.15);
    box-shadow: 0 0 24px rgba(56, 189, 248, 0.16);
}

.vault-tab.active strong {
    color: #020617;
    background: #38bdf8;
}

.vault-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 480px;
    gap: 22px;
    align-items: center;
}

.vault-carousel {
    position: relative;
    min-width: 0;
    display: grid;
    align-items: center;
    align-content: start;
    gap: 12px;
    isolation: isolate;
}

.vault-carousel::after {
    display: none;
}

.vault-track {
    min-height: 342px;
    padding: 38px 76px 20px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: visible;
    scrollbar-width: none;
    perspective: 1100px;
}

.vault-track::-webkit-scrollbar {
    display: none;
}

.vault-arrow {
    position: absolute;
    top: 45%;
    z-index: 8;
    width: 34px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(56, 189, 248, 0.35);
    border-radius: 14px;
    color: #dff7ff;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(2, 6, 23, 0.92)),
        radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.26), transparent 60%);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
    transform: translateY(-50%);
    cursor: pointer;
    transition: 0.25s ease;
}

.vault-arrow:hover {
    border-color: rgba(56, 189, 248, 0.85);
    color: #38bdf8;
    transform: translateY(-50%) scale(1.04);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.38),
        0 0 24px rgba(56, 189, 248, 0.24);
}

.vault-arrow span {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.vault-arrow-prev {
    left: 10px;
}

.vault-arrow-next {
    right: 10px;
}

.vault-node {
    --project-accent: #38bdf8;
    --project-glow: rgba(56, 189, 248, 0.22);
    --mx: 50%;
    --my: 20%;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 258px;
    min-width: 258px;
    min-height: 282px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    color: inherit;
    border: 1px solid color-mix(in srgb, var(--project-accent) 28%, transparent);
    border-radius: 18px;
    cursor: pointer;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.97), rgba(2, 6, 23, 0.99)),
        radial-gradient(circle at var(--mx) var(--my), var(--project-glow), transparent 38%);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
    margin-left: 0;
    opacity: 0;
    pointer-events: none;
    scroll-snap-align: start;
    transform:
        translate(-50%, -50%)
        translateX(calc(var(--stack-offset, 0) * 82px))
        translateY(calc(16px + (var(--stack-distance, 1) * 8px)))
        scale(calc(0.9 - (var(--stack-distance, 1) * 0.04)))
        rotateX(4deg)
        rotateY(calc(var(--stack-offset, 0) * -10deg));
    transition:
        transform 0.58s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.42s ease,
        box-shadow 0.46s ease,
        opacity 0.42s ease,
        filter 0.42s ease;
    will-change: transform, opacity;
}

.vault-node.is-before {
    z-index: calc(10 - var(--stack-distance, 1));
}

.vault-node.is-after {
    z-index: calc(10 - var(--stack-distance, 1));
}

.vault-node.is-stack-visible {
    opacity: 0.58;
    pointer-events: auto;
    filter: saturate(0.78) brightness(0.82);
}

.vault-node:hover,
.vault-node.active {
    z-index: 20;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) translateY(-4px) scale(1.055) rotateX(0deg) rotateY(0deg);
    border-color: color-mix(in srgb, var(--project-accent) 78%, #ffffff 0%);
    box-shadow:
        0 22px 46px rgba(0, 0, 0, 0.34),
        0 0 18px color-mix(in srgb, var(--project-accent) 18%, transparent);
    filter: saturate(1.04) brightness(1);
}

.vault-node.is-hidden {
    display: none;
}

.vault-status {
    width: fit-content;
    padding: 5px 9px;
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.16);
    font-size: 10px;
    font-weight: 900;
}

.project-proestakis {
    --project-accent: #fb923c;
    --project-glow: rgba(249, 115, 22, 0.22);
}

.project-lecasse {
    --project-accent: #38bdf8;
    --project-glow: rgba(56, 189, 248, 0.24);
}

.project-maige {
    --project-accent: #f9a8d4;
    --project-glow: rgba(244, 114, 182, 0.22);
}

.project-control {
    --project-accent: #22d3ee;
    --project-glow: rgba(34, 211, 238, 0.22);
}

.project-cip {
    --project-accent: #f59e0b;
    --project-glow: rgba(245, 158, 11, 0.20);
}

.project-hfb {
    --project-accent: #34d399;
    --project-glow: rgba(52, 211, 153, 0.20);
}

.project-juntos {
    --project-accent: #a78bfa;
    --project-glow: rgba(167, 139, 250, 0.22);
}

.vault-node .vault-status,
.vault-node .vault-node-meta small {
    color: var(--project-accent);
}

.vault-node .vault-tags span,
.vault-node .vault-preview {
    border-color: color-mix(in srgb, var(--project-accent) 24%, transparent);
}

.vault-status.published {
    color: #67e8f9;
    border-color: rgba(34, 211, 238, 0.34);
}

.vault-status.development {
    color: #93c5fd;
    border-color: rgba(59, 130, 246, 0.36);
}

.vault-status.demo {
    color: #c4b5fd;
    border-color: rgba(139, 92, 246, 0.38);
}

.vault-status.prototype {
    color: #f0abfc;
    border-color: rgba(217, 70, 239, 0.36);
}

.vault-preview,
.inspector-visual {
    position: relative;
    display: block;
    min-height: 112px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.16);
    background:
        radial-gradient(circle at 75% 20%, rgba(56, 189, 248, 0.24), transparent 34%),
        linear-gradient(135deg, #020617, #0f172a);
}

.vault-preview span,
.inspector-visual span {
    position: absolute;
}

.preview-image {
    height: 112px;
    background: #020617;
}

.inspector-visual.preview-image {
    height: 238px;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: saturate(0.95) contrast(1.05) brightness(0.82);
    transition:
        transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s ease;
}

.preview-image img.preview-contain {
    object-fit: contain;
    object-position: center;
    background:
        radial-gradient(circle at 50% 20%, rgba(56, 189, 248, 0.16), transparent 36%),
        #020617;
}

.vault-node:hover .preview-image img,
.vault-node.active .preview-image img {
    transform: scale(1.04);
    filter: saturate(1.04) contrast(1.08) brightness(0.9);
}

.preview-toolbar {
    top: 12px;
    left: 12px;
    right: 12px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.85), rgba(14, 165, 233, 0.12));
}

.preview-gridline {
    inset: 34px 16px 16px;
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
}

.preview-title,
.preview-logo {
    left: 18px;
    bottom: 18px;
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
}

.preview-bars {
    right: 18px;
    bottom: 18px;
    width: 72px;
    height: 44px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, #38bdf8 30%, transparent 30%) 0 0 / 100% 9px,
        linear-gradient(90deg, #38bdf8 55%, transparent 55%) 0 17px / 100% 9px,
        linear-gradient(90deg, #38bdf8 78%, transparent 78%) 0 34px / 100% 9px;
    opacity: 0.8;
}

.preview-table {
    inset: 38px 18px 20px;
    border-radius: 10px;
    background:
        linear-gradient(rgba(56, 189, 248, 0.14) 1px, transparent 1px) 0 0 / 100% 18px,
        linear-gradient(90deg, rgba(56, 189, 248, 0.12) 1px, transparent 1px) 0 0 / 42px 100%;
}

.preview-chart {
    right: 18px;
    bottom: 18px;
    width: 86px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(59, 130, 246, 0.50));
    clip-path: polygon(0 68%, 22% 54%, 42% 64%, 62% 35%, 82% 44%, 100% 16%, 100% 100%, 0 100%);
}

.preview-pulse {
    left: 18px;
    right: 18px;
    top: 58px;
    height: 44px;
    background: linear-gradient(90deg, transparent, #38bdf8, transparent);
    clip-path: polygon(0 52%, 18% 52%, 24% 18%, 35% 88%, 45% 52%, 62% 52%, 69% 28%, 78% 70%, 86% 52%, 100% 52%);
    filter: drop-shadow(0 0 14px rgba(56, 189, 248, 0.72));
}

.preview-modules {
    left: 22px;
    right: 22px;
    bottom: 18px;
    height: 28px;
    background:
        linear-gradient(90deg, rgba(56, 189, 248, 0.35), rgba(56, 189, 248, 0.10)) 0 0 / 30% 100% no-repeat,
        linear-gradient(90deg, rgba(56, 189, 248, 0.20), rgba(139, 92, 246, 0.16)) 50% 0 / 30% 100% no-repeat,
        linear-gradient(90deg, rgba(56, 189, 248, 0.20), rgba(14, 165, 233, 0.30)) 100% 0 / 30% 100% no-repeat;
    border-radius: 999px;
}

.preview-orbit {
    width: 78px;
    height: 78px;
    inset: 28px 0 0;
    margin: auto;
    border-radius: 50%;
    border: 1px solid rgba(56, 189, 248, 0.75);
    box-shadow: 0 0 34px rgba(56, 189, 248, 0.32);
}

.preview-radar {
    width: 92px;
    height: 92px;
    inset: 22px 0 0;
    margin: auto;
    border-radius: 50%;
    background:
        radial-gradient(circle, transparent 28%, rgba(56, 189, 248, 0.26) 29%, transparent 31%),
        conic-gradient(from 90deg, rgba(56, 189, 248, 0.62), transparent 38%);
    animation: vaultSpin 8s linear infinite;
}

.preview-dots {
    inset: 38px 26px 24px;
    background-image: radial-gradient(circle, rgba(56, 189, 248, 0.75) 2px, transparent 3px);
    background-size: 28px 24px;
}

.vault-node-meta {
    display: grid;
    gap: 7px;
}

.vault-node-meta small {
    color: #38bdf8;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.vault-node-meta strong {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.16;
}

.vault-node-meta em {
    display: none;
}

.vault-tags {
    display: none;
}

.vault-tags span {
    padding: 5px 8px;
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(2, 6, 23, 0.44);
    font-size: 10px;
    font-weight: 800;
}

.vault-index {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 24px;
    padding: 0 64px;
    margin-top: 2px;
}

.vault-index-button {
    width: 22px;
    height: 22px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(56, 189, 248, 0.20);
    border-radius: 999px;
    color: transparent;
    background: rgba(2, 6, 23, 0.54);
    cursor: pointer;
    transition:
        width 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.28s ease,
        border-color 0.28s ease,
        transform 0.28s ease;
}

.vault-index-button span {
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 999px;
    background: #38bdf8;
    opacity: 0.62;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.34);
    transition:
        width 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.28s ease,
        box-shadow 0.28s ease;
}

.vault-index-button:hover,
.vault-index-button.active {
    color: #ffffff;
    border-color: rgba(56, 189, 248, 0.58);
    background: rgba(56, 189, 248, 0.12);
    transform: translateY(-2px);
}

.vault-index-button.active {
    width: 36px;
    background: rgba(56, 189, 248, 0.18);
    z-index: 2;
}

.vault-index-button.active span {
    width: 18px;
    opacity: 1;
}

.vault-inspector {
    --project-accent: #38bdf8;
    --project-glow: rgba(56, 189, 248, 0.22);
    min-height: 480px;
    padding: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid color-mix(in srgb, var(--project-accent) 32%, transparent);
    border-radius: 18px;
    background:
        radial-gradient(circle at 78% 10%, var(--project-glow), transparent 34%),
        rgba(2, 6, 23, 0.56);
    box-shadow:
        0 22px 46px rgba(0, 0, 0, 0.28),
        0 0 18px color-mix(in srgb, var(--project-accent) 10%, transparent);
    overflow: hidden;
}

.vault-inspector-preview {
    position: relative;
    width: 100%;
}

.inspector-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    padding: 6px 10px;
    border-radius: 999px;
    color: #e0f2fe;
    background: rgba(2, 6, 23, 0.72);
    border: 1px solid color-mix(in srgb, var(--project-accent) 28%, transparent);
    font-size: 11px;
    font-weight: 900;
}

.inspector-visual {
    min-height: 270px;
    border-color: color-mix(in srgb, var(--project-accent) 26%, transparent);
    border-width: 0 0 1px;
    border-radius: 18px 18px 0 0;
}

.inspector-visual.preview-image {
    height: 270px;
}

.vault-inspector-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 22px 20px;
}

.vault-inspector-content p {
    color: #38bdf8;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.vault-inspector-title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.vault-inspector-title h3 {
    color: #ffffff;
    font-size: 25px;
    line-height: 1.12;
    margin: 0;
}

.vault-inspector-title > span {
    display: inline-block;
    padding: 6px 9px;
    border-radius: 999px;
    color: #dbeafe;
    border: 1px solid color-mix(in srgb, var(--project-accent) 28%, transparent);
    background: color-mix(in srgb, var(--project-accent) 10%, transparent);
    font-weight: 800;
    font-size: 11px;
}

.vault-inspector-content small {
    display: block;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 16px;
    padding-top: 12px;
    border-top: 1px solid color-mix(in srgb, var(--project-accent) 18%, transparent);
    font-weight: 800;
}

.vault-inspector-content small::before {
    content: "Herramientas: ";
    color: var(--project-accent);
    font-weight: 900;
}

.vault-inspector-description {
    margin: 0 0 14px;
    color: #cbd5e1 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    line-height: 1.6;
    text-transform: none !important;
}

.vault-inspector-meta {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.vault-inspector-meta span {
    padding: 5px 8px;
    border: 1px solid color-mix(in srgb, var(--project-accent) 22%, transparent);
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(2, 6, 23, 0.44);
    font-size: 10px;
    font-weight: 800;
}

.vault-inspector-content a {
    display: inline-flex;
    width: 150px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 18px;
    margin: auto auto 0;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 900;
    background: color-mix(in srgb, var(--project-accent) 16%, transparent);
    border: 1px solid color-mix(in srgb, var(--project-accent) 36%, transparent);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    transition: 0.28s ease;
}

.vault-inspector.is-switching {
    animation: vaultPreviewPop 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vault-inspector-content a::after {
    content: "\2192";
    font-size: 18px;
    line-height: 1;
    transition: transform 0.28s ease;
}

.vault-inspector-content a:hover {
    background: var(--project-accent);
    color: #020617;
    transform: translateY(-2px);
}

.vault-inspector-content a:hover::after {
    transform: translateX(4px);
}

.vault-mobile-detail {
    display: none;
}

.vault-mobile-action {
    display: none;
}

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

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

@keyframes vaultPreviewPop {
    0% {
        transform: scale(0.992);
        opacity: 0.92;
    }

    58% {
        transform: scale(1.008);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes vaultSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1100px) {
    .vault-header {
        display: block;
    }

    .vault-workspace {
        grid-template-columns: 1fr;
    }

    .vault-inspector {
        display: flex;
        min-height: auto;
        animation: none;
    }
}

@media (max-width: 760px) {
    .project-vault-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .vault-shell {
        padding: 22px 16px 26px;
        border-radius: 22px;
    }

    .vault-header h2 {
        font-size: clamp(32px, 10vw, 40px);
        line-height: 1.08;
    }

    .vault-tabs {
        width: 100%;
        display: flex;
        gap: 8px;
        padding: 6px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .vault-tabs::-webkit-scrollbar {
        display: none;
    }

    .vault-tab {
        white-space: nowrap;
        width: auto;
        min-width: max-content;
        flex: 0 0 auto;
        padding: 10px 12px;
        gap: 8px;
        border-radius: 999px;
        font-size: 13px;
    }

    .vault-tab strong {
        min-width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .vault-track {
        min-height: auto;
        display: flex;
        gap: 0;
        padding: 0 4% 12px;
        overflow-x: auto;
        overflow-y: hidden;
        perspective: none;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 4%;
        scrollbar-width: none;
    }

    .vault-track::-webkit-scrollbar {
        display: none;
    }

    .vault-arrow {
        display: none;
    }

    .vault-index {
        display: flex;
        justify-content: center;
        gap: 8px;
        min-height: 22px;
        margin-top: 2px;
        padding: 0;
    }

    .vault-index-button {
        width: 10px;
        height: 10px;
        flex: 0 0 10px;
        border-radius: 999px;
        border-color: rgba(56, 189, 248, 0.34);
        background: rgba(56, 189, 248, 0.12);
        transform: none;
    }

    .vault-index-button span {
        width: 5px;
        height: 5px;
    }

    .vault-index-button.active {
        width: 24px;
        flex-basis: 24px;
        transform: none;
    }

    .vault-index-button.active span {
        width: 14px;
    }

    .vault-node {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        flex: 0 0 100%;
        min-width: 0;
        min-height: auto;
        padding: 16px;
        margin-left: 0;
        opacity: 1;
        pointer-events: auto;
        transform: none !important;
        filter: none;
        border-radius: 18px;
        scroll-snap-align: start;
        box-shadow:
            0 18px 34px rgba(0, 0, 0, 0.28),
            0 0 0 1px color-mix(in srgb, var(--project-accent) 34%, transparent);
    }

    .vault-node:hover,
    .vault-node.active {
        transform: none !important;
        box-shadow:
            0 18px 34px rgba(0, 0, 0, 0.28),
            0 0 18px color-mix(in srgb, var(--project-accent) 14%, transparent);
    }

    .vault-preview {
        min-height: 136px;
        height: 136px;
    }

    .vault-node-meta strong {
        font-size: 20px;
    }

    .vault-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .vault-inspector {
        display: none;
    }

    .vault-mobile-detail {
        display: none;
        margin-top: 2px;
        padding: 14px;
        border: 1px solid rgba(56, 189, 248, 0.18);
        border-radius: 14px;
        color: #cbd5e1;
        background: rgba(2, 6, 23, 0.40);
        font-size: 14px;
        line-height: 1.55;
    }

    .vault-node.active .vault-mobile-detail {
        display: block;
    }

    .vault-mobile-action {
        min-height: 42px;
        margin-top: 2px;
        padding: 0 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        border-radius: 12px;
        color: #ffffff;
        background: color-mix(in srgb, var(--project-accent) 18%, transparent);
        border: 1px solid color-mix(in srgb, var(--project-accent) 42%, transparent);
        font-size: 13px;
        font-weight: 900;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.20);
    }

    .vault-mobile-action::after {
        content: "\2192";
        margin-left: 10px;
        font-size: 16px;
        line-height: 1;
    }
}

/* ========================================================= */
/* PRESENCIA DIGITAL */
/* ========================================================= */

.service-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 34px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.service-info,
.growth-visual {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.service-info p {
    margin-bottom: 24px;
}

.service-info ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
    list-style: none;
}

.service-info li::before {
    content: "✓";
    color: #2563eb;
    margin-right: 8px;
    font-weight: bold;
}

.growth-visual {
    display: grid;
    gap: 18px;
}

.growth-card {
    background:
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.14), transparent 40%),
        #0f172a;
    color: #ffffff;
    border-radius: 22px;
    padding: 28px;
}

.growth-card i {
    width: 46px;
    height: 46px;
    color: #22c55e;
    margin-bottom: 18px;
}

.growth-card p {
    color: #cbd5e1;
}

.growth-metrics {
    display: grid;
    gap: 12px;
}

.growth-metrics div {
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 16px;
}

.growth-metrics strong {
    display: block;
    color: #0f172a;
}

.growth-metrics span {
    color: #475569;
}

.presence-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    position: relative;
    z-index: 2;
}

.presence-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    padding: 18px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 32%),
        #ffffff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

.presence-copy span {
    display: inline-flex;
    margin-bottom: 12px;
    color: #0284c7;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.presence-copy {
    position: relative;
    min-height: 300px;
    padding-inline: 2px;
}

.presence-copy-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    opacity: 0;
    transform: translateX(18px);
    pointer-events: none;
    transition:
        opacity 0.36s ease,
        transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.presence-copy-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.presence-copy h3 {
    width: min(100%, 330px);
    max-width: none;
    margin-bottom: 12px;
    color: #020617;
    font-size: clamp(23px, 2vw, 30px);
    line-height: 1.12;
    text-align: center;
}

.presence-copy p {
    width: min(100%, 330px);
    max-width: none;
    margin-bottom: 16px;
    color: #334155;
    font-size: 14.5px;
    line-height: 1.65;
    text-align: justify;
    text-align-last: left;
    text-wrap: pretty;
}

.presence-copy ul {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    gap: 10px;
    width: fit-content;
    min-width: 260px;
    max-width: 330px;
    min-height: 132px;
    margin-inline: auto;
    list-style: none;
}

.presence-copy li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: fit-content;
    min-width: 220px;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.25;
}

.presence-copy li::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    flex: 0 0 18px;
    width: 18px;
    color: #0284c7;
    font-weight: 900;
}

.presence-carousel {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.88)),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 35%);
    border: 1px solid rgba(56, 189, 248, 0.22);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.presence-carousel-image {
    background: #020617;
}

.presence-carousel-image .presence-track {
    min-height: 230px;
}

.presence-carousel-image .presence-slide {
    inset: 0;
    align-content: stretch;
}

.presence-carousel-image .presence-image-card {
    min-height: 230px;
    border-radius: inherit;
}

.presence-carousel-image .presence-image-card img {
    height: 230px;
    border-radius: inherit;
    object-fit: contain;
    object-position: center;
    transform: none;
    background: #ffffff;
}

.presence-carousel-image .presence-image-card::after {
    background:
        linear-gradient(180deg, transparent 52%, rgba(2, 6, 23, 0.52) 100%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.04), transparent 24%, transparent 76%, rgba(2, 6, 23, 0.06));
}

.presence-carousel-image .presence-controls {
    z-index: 5;
}

.presence-carousel-advice .presence-image-card img {
    height: 244px;
    object-position: center top;
}

.presence-track {
    position: relative;
    min-height: 184px;
}

.presence-slide {
    position: absolute;
    inset: 14px 14px 46px;
    display: grid;
    align-content: center;
    opacity: 0;
    transform: translateX(30px) scale(0.98);
    transition:
        opacity 0.42s ease,
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.presence-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.presence-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
}

.presence-slide figcaption {
    margin-top: 14px;
    color: #e0f2fe;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.presence-image-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 184px;
    border-radius: 16px;
    background: #f8fafc;
}

.presence-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border: 0;
    border-radius: inherit;
    box-shadow: none;
    display: block;
}

.presence-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.22)),
        linear-gradient(90deg, rgba(2, 6, 23, 0.06), transparent 22%, transparent 78%, rgba(2, 6, 23, 0.08));
}

.presence-plan-card {
    --plan-accent: #38bdf8;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 146px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(56, 189, 248, 0.24);
    background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--plan-accent) 30%, transparent), transparent 34%),
        linear-gradient(145deg, rgba(15, 23, 42, 0.86), rgba(2, 6, 23, 0.92));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 18px 36px rgba(0, 0, 0, 0.24);
    text-align: center;
}

.presence-slide:nth-child(2) .presence-plan-card {
    --plan-accent: #22d3ee;
}

.presence-slide:nth-child(3) .presence-plan-card {
    --plan-accent: #818cf8;
}

.presence-plan-card::before,
.presence-plan-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.presence-plan-card::before {
    inset: 14px;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 16px;
    background:
        linear-gradient(90deg, rgba(125, 211, 252, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(125, 211, 252, 0.07) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, black, transparent 82%);
}

.presence-plan-card::after {
    width: 120px;
    height: 120px;
    right: -44px;
    bottom: -46px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--plan-accent) 34%, transparent);
    filter: blur(10px);
    opacity: 0.75;
}

.presence-plan-card i {
    box-sizing: content-box;
    width: 26px;
    height: 26px;
    padding: 10px;
    border: 1px solid color-mix(in srgb, var(--plan-accent) 52%, transparent);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.64);
    color: var(--plan-accent);
    stroke-width: 1.7;
    box-shadow: 0 0 26px color-mix(in srgb, var(--plan-accent) 22%, transparent);
}

.presence-plan-card span {
    padding: 6px 10px;
    border: 1px solid color-mix(in srgb, var(--plan-accent) 30%, transparent);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.34);
    color: #bae6fd;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.presence-plan-card strong {
    max-width: 260px;
    color: #f8fafc;
    font-size: clamp(22px, 2.3vw, 30px);
    line-height: 1.08;
}

.presence-controls {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.presence-controls button {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(56, 189, 248, 0.28);
    border-radius: 12px;
    background: rgba(2, 6, 23, 0.74);
    color: #e0f2fe;
    cursor: pointer;
    transition: 0.25s ease;
}

.presence-controls button:hover {
    background: rgba(14, 165, 233, 0.2);
    transform: translateY(-2px);
}

.presence-controls svg {
    width: 20px;
    height: 20px;
}

.presence-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.presence-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.34);
    transition: 0.25s ease;
}

.presence-dot.active {
    width: 24px;
    border-radius: 999px;
    background: #38bdf8;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.52);
}

@media (max-width: 1180px) {
    .presence-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .presence-showcase {
        grid-template-columns: 1fr;
    }

    .presence-block {
        grid-template-columns: 1fr;
    }

    .presence-copy {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .presence-block {
        padding: 18px;
        border-radius: 22px;
    }

    .presence-copy ul {
        grid-template-columns: 1fr;
    }

    .presence-carousel {
        min-height: 230px;
    }

    .presence-track {
        min-height: 184px;
    }

    .presence-slide {
        inset: 14px 14px 46px;
    }

    .presence-copy {
        min-height: 320px;
    }
}

/* ========================================================= */
/* DASHBOARD */
/* ========================================================= */

.dashboard-section {
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 32%),
        #f8fafc;
}

.dashboard-mockup {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 20px;
    background: #0f172a;
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 2;
}

.dashboard-sidebar {
    background: #08111f;
    border-radius: 22px;
    padding: 24px;
}

.dashboard-logo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #38bdf8;
    margin-bottom: 24px;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.45);
}

.dashboard-sidebar p {
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.dashboard-sidebar span {
    display: block;
    color: #cbd5e1;
    padding: 12px;
    border-radius: 12px;
}

.dashboard-sidebar span:hover {
    background: rgba(56, 189, 248, 0.1);
}

.dashboard-main {
    background: #08111f;
    border-radius: 22px;
    padding: 24px;
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-top h3 {
    color: #ffffff;
}

.dashboard-top button {
    background: #38bdf8;
    color: #06111f;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.dashboard-cards div {
    background: #0f172a;
    border-radius: 18px;
    padding: 20px;
    border: 1px solid rgba(56, 189, 248, 0.15);
}

.dashboard-cards p {
    color: #cbd5e1;
}

.dashboard-cards strong {
    font-size: 28px;
    color: #38bdf8;
}

.dashboard-table div {
    height: 46px;
    background: #0f172a;
    border-radius: 14px;
    margin-bottom: 12px;
}

@media (max-width: 600px) {
    .dashboard-section {
        padding-inline: 6%;
    }

    .dashboard-mockup {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px;
        border-radius: 22px;
        overflow: hidden;
    }

    .dashboard-sidebar {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 10px 12px;
        padding: 16px;
        border-radius: 18px;
    }

    .dashboard-logo {
        width: 34px;
        height: 34px;
        margin-bottom: 0;
    }

    .dashboard-sidebar p {
        margin-bottom: 0;
    }

    .dashboard-sidebar span {
        padding: 9px 10px;
        text-align: center;
        background: rgba(15, 23, 42, 0.78);
        border: 1px solid rgba(56, 189, 248, 0.14);
    }

    .dashboard-sidebar span:nth-of-type(odd) {
        grid-column: 1 / 2;
    }

    .dashboard-sidebar span:nth-of-type(even) {
        grid-column: 2 / 3;
    }

    .dashboard-main {
        padding: 16px;
        border-radius: 18px;
    }

    .dashboard-top {
        gap: 12px;
        margin-bottom: 16px;
    }

    .dashboard-top h3 {
        font-size: 18px;
        line-height: 1.25;
    }

    .dashboard-top button {
        padding: 8px 14px;
        flex: 0 0 auto;
    }

    .dashboard-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dashboard-cards div {
        padding: 16px;
    }
}

/* ========================================================= */
/* PLAN DE ACCIÓN HORIZONTAL */
/* Sección tecnológica con proceso en una sola línea */
/* ========================================================= */

.action-plan-section {

    background:

        radial-gradient(circle at top left,
            rgba(56, 189, 248, 0.10),
            transparent 30%),

        radial-gradient(circle at bottom right,
            rgba(14, 165, 233, 0.08),
            transparent 35%),

        linear-gradient(135deg,
            #08111f 0%,
            #0b1629 50%,
            #08111f 100%);

    position: relative;
    overflow: hidden;
}

/* Halo superior */

.action-plan-section::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -350px;
    right: -250px;

    background:
        radial-gradient(circle,
            rgba(56, 189, 248, 0.12),
            transparent 70%);

    filter: blur(50px);

    pointer-events: none;
}

/* Halo inferior */

.action-plan-section::after {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    bottom: -250px;
    left: -250px;

    background:
        radial-gradient(circle,
            rgba(14, 165, 233, 0.08),
            transparent 70%);

    filter: blur(60px);

    pointer-events: none;
}

/* Título */
.action-title {
    position: relative;
    z-index: 3;
}

.action-title h2 {
    width: fit-content;
    margin: 0 auto;
    padding: 14px 34px 16px;
    position: relative;
    font-size: clamp(36px, 4.6vw, 58px);
    line-height: 1.05;
    border: 2px solid rgba(56, 189, 248, 0.72);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.76), rgba(8, 17, 31, 0.9)),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 46%);
    box-shadow:
        0 0 0 1px rgba(56, 189, 248, 0.08) inset,
        0 20px 58px rgba(0, 0, 0, 0.34),
        0 0 34px rgba(56, 189, 248, 0.18);
}

.action-title h2 span {
    color: #38bdf8;
    text-shadow: 0 0 28px rgba(56, 189, 248, 0.55);
}

.action-subtitle {
    max-width: 680px;
    margin: 14px auto 0;
    color: #94a3b8 !important;
    font-size: 18px;
}

/* Contenedor horizontal */
.process-map {
    position: relative;
    z-index: 3;
    max-width: 1380px;
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 18px;
    flex-wrap: nowrap;
}

/* Oculta líneas antiguas si quedaron en HTML */
.process-line {
    display: none;
}

/* Cada etapa */
.process-step {
    width: 175px;
    flex: 0 0 175px;
    position: relative;
}

/* Card interna */
.process-card {
    min-height: 190px;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid currentColor;
    border-radius: 22px;
    padding: 32px 16px 20px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(16px);
    box-shadow:
        0 0 22px rgba(56, 189, 248, 0.14),
        0 20px 55px rgba(0, 0, 0, 0.34);
    transition: 0.35s ease;
    overflow: visible;
}

/* Glow interno */
.process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    opacity: 0.18;
    transition: 0.35s ease;
    pointer-events: none;
}

/* Marco interno */
.process-card::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    pointer-events: none;
}

.process-card:hover {
    transform: scale(1.07);
    box-shadow:
        0 0 36px currentColor,
        0 30px 90px rgba(0, 0, 0, 0.55);
}

.process-card:hover::before {
    opacity: 0.38;
}

/* Número superior */
.step-number {
    position: absolute;
    top: -23px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 64px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(8, 17, 31, 0.98);
    border: 1px solid currentColor;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 0 18px currentColor;
    z-index: 4;
}

/* Icono */
.process-card i {
    width: 34px;
    height: 34px;
    margin: 20px auto 14px;
    stroke-width: 1.8;
    color: currentColor;
    filter: drop-shadow(0 0 10px currentColor);
    position: relative;
    z-index: 3;
}

/* Texto */
.process-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #ffffff;
    position: relative;
    z-index: 3;
}

.process-card p {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.45;
    position: relative;
    z-index: 3;
}

/* Flechas entre etapas */
.process-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: -28px;
    transform: translateY(-50%);
    font-size: 34px;
    font-weight: 900;
    color: #38bdf8;
    text-shadow: 0 0 16px rgba(56, 189, 248, 0.8);
    z-index: 5;
}

/* Colores por etapa */
.step-blue {
    color: #38bdf8;
}

.step-orange {
    color: #f59e0b;
}

.step-green {
    color: #22c55e;
}

.step-purple {
    color: #8b5cf6;
}

.step-red {
    color: #ef4444;
}

.step-cyan {
    color: #06b6d4;
}

/* Glow interno por color */
.step-blue .process-card::before {
    background: radial-gradient(circle at top right, #38bdf8, transparent 48%);
}

.step-orange .process-card::before {
    background: radial-gradient(circle at top right, #f59e0b, transparent 48%);
}

.step-green .process-card::before {
    background: radial-gradient(circle at top right, #22c55e, transparent 48%);
}

.step-purple .process-card::before {
    background: radial-gradient(circle at top right, #8b5cf6, transparent 48%);
}

.step-red .process-card::before {
    background: radial-gradient(circle at top right, #ef4444, transparent 48%);
}

.step-cyan .process-card::before {
    background: radial-gradient(circle at top right, #06b6d4, transparent 48%);
}

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

@media (max-width: 1100px) {
    .process-map {
        flex-wrap: wrap;
        gap: 38px 30px;
    }

    .process-step {
        width: 220px;
        flex: 0 0 220px;
    }
}

@media (max-width: 900px) {
    .process-map {
        display: grid;
        grid-template-columns: 1fr;
        gap: 34px;
        max-width: 520px;
    }

    .process-step {
        width: 100%;
        flex: none;
    }

    .process-step:not(:last-child)::after {
        content: "↓";
        top: auto;
        right: 50%;
        bottom: -34px;
        transform: translateX(50%);
    }

    .process-card {
        min-height: auto;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .process-map {
        height: auto;
        display: grid;
        gap: 34px;
    }

    .process-step {
        position: relative;
        width: 100%;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
    }

    .pos-2,
    .pos-5 {
        transform: none;
    }

    .process-line {
        display: none;
    }
}

/* ========================================================= */
/* HERRAMIENTAS */
/* ========================================================= */

.tech {
    background:
        radial-gradient(circle at 50% 18%, rgba(56, 189, 248, 0.10), transparent 32%),
        radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.08), transparent 30%),
        #050b14;
}

.tools-section {
    text-align: center;
}

.tools-heading {
    max-width: 680px;
    margin: 0 auto 34px;
}

.tools-heading p {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 13px;
    color: #22d3ee;
}

.tools-heading h2 {
    margin-bottom: 10px;
    color: #f8fafc;
    text-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.tools-heading h2 span {
    color: #38bdf8;
    text-shadow: 0 0 28px rgba(56, 189, 248, 0.45);
}

.tools-heading > span {
    display: block;
    max-width: 560px;
    margin: 0 auto;
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
}

.tools-heading > span::first-letter {
    text-transform: uppercase;
}

.tools-heading-mark {
    width: 92px;
    height: 1px;
    margin: 18px auto 0;
    position: relative;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.8), transparent);
}

.tools-heading-mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 1px solid rgba(56, 189, 248, 0.9);
    background: #050b14;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.7);
}

.tools-bottom-mark {
    width: min(560px, 72vw);
    height: 1px;
    margin: 30px auto 0;
    position: relative;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.75), transparent);
    filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.35));
}

.tools-bottom-mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 1px solid rgba(56, 189, 248, 0.95);
    background: #050b14;
    box-shadow:
        0 0 0 3px rgba(56, 189, 248, 0.06),
        0 0 24px rgba(56, 189, 248, 0.7);
}

.tools-panel {
    max-width: 1220px;
    margin: 0 auto;
    padding: 28px 34px 26px;
    border: 1px solid rgba(56, 189, 248, 0.46);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(8, 17, 31, 0.9)),
        radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.12), transparent 45%);
    box-shadow:
        0 0 0 1px rgba(56, 189, 248, 0.08) inset,
        0 22px 70px rgba(0, 0, 0, 0.45),
        0 0 34px rgba(14, 165, 233, 0.28);
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 15px 12px;
}

.tool-card {
    width: 76px;
    min-height: 82px;
    padding: 8px 6px 6px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 8px;
    border-radius: 8px;
    color: #e2e8f0;
    transition:
        transform 0.28s ease,
        background 0.28s ease,
        box-shadow 0.28s ease;
}

.tool-card:hover {
    transform: translateY(-6px);
    background: rgba(56, 189, 248, 0.06);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.tool-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(2, 6, 23, 0.58);
    border: 1px solid rgba(148, 163, 184, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.tool-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.tool-icon-monochrome img {
    filter: invert(1);
}

.tool-icon-line {
    color: #38bdf8;
    background: rgba(14, 165, 233, 0.10);
    border-color: rgba(56, 189, 248, 0.22);
}

.tool-icon-line svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.9;
}

.tool-icon-gradient {
    color: #f472b6;
    background:
        radial-gradient(circle at 75% 25%, rgba(244, 114, 182, 0.26), transparent 42%),
        rgba(14, 165, 233, 0.10);
}

.tool-icon-hosting {
    color: #8b5cf6;
    background:
        radial-gradient(circle at 70% 25%, rgba(139, 92, 246, 0.28), transparent 42%),
        rgba(56, 189, 248, 0.08);
}

.tool-card strong {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    color: #dbeafe;
}

@media (max-width: 1024px) {
    .tools-panel {
        padding: 24px;
    }

    .tool-card {
        width: 76px;
    }
}

@media (max-width: 700px) {
    .tools-heading p {
        letter-spacing: 3px;
        font-size: 11px;
    }

    .tools-heading h2 {
        font-size: 32px;
    }

    .tools-panel {
        padding: 18px 14px;
        border-radius: 18px;
    }

    .tools-grid {
        gap: 10px;
    }

    .tool-card {
        width: 74px;
        min-height: 76px;
    }

    .tool-icon {
        width: 40px;
        height: 40px;
    }

    .tool-icon img {
        width: 27px;
        height: 27px;
    }

}

/* ========================================================= */
/* FAQ */
/* ========================================================= */

.faq-section {
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.08), transparent 30%),
        #0b1629;
}

.faq-grid {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.faq-column {
    background: #0f172a;
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 24px;
    padding: 32px 24px;
}

.faq-column h3 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 22px;
    text-align: center;
}

.faq-item {
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 18px;
    margin-bottom: 18px;
    overflow: hidden;
    background: #08111f;
}

.faq-question {
    width: 100%;
    background: transparent;
    color: #ffffff;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.faq-question span {
    color: #38bdf8;
    font-size: 24px;
    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #cbd5e1;
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

@media (max-width: 600px) {
    .faq-section {
        padding-inline: 6%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        width: 100%;
    }

    .faq-column {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .faq-column h3 {
        font-size: 21px;
        margin-bottom: 18px;
    }

    .faq-question {
        align-items: center;
        gap: 14px;
        padding: 16px;
        font-size: 16px;
        line-height: 1.25;
    }

    .faq-question span {
        flex: 0 0 auto;
    }

    .faq-answer p {
        padding: 0 16px 18px;
        line-height: 1.65;
        text-align: justify;
        text-align-last: left;
    }
}

/* ========================================================= */
/* FAQ - FONDO TECNOLÓGICO MIGRADO */
/* ========================================================= */

.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-background {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(56, 189, 248, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 18s linear infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.75;
}

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

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

.contact {
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 32%),
        #f8fafc;
    color: #0f172a;
}

.contact-shell {
    max-width: 1110px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 28px;
    position: relative;
    z-index: 2;
}

.contact-intro {
    padding: clamp(26px, 3.4vw, 40px);
    min-height: 520px;
    display: grid;
    align-content: center;
    border: 1px solid rgba(56, 189, 248, 0.22);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(15, 23, 42, 0.82), rgba(2, 6, 23, 0.74)),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 34%);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.contact-intro h2 {
    margin: 0 0 18px;
    max-width: none;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: 0;
    text-align: center;
}

.contact-intro h2 span {
    color: #38bdf8;
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.28);
}

.contact-intro p {
    max-width: none;
    width: 100%;
    margin-inline: auto;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.8;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
}

.contact-points {
    display: grid;
    gap: 12px;
    margin: 30px auto 0;
    width: min(100%, 390px);
}

.contact-points div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: auto;
    padding: 8px 12px;
    border: 0;
    border-radius: 999px;
    background:
        radial-gradient(circle at center, rgba(56, 189, 248, 0.08), transparent 70%);
}

.contact-points i {
    width: 19px;
    height: 19px;
    color: #38bdf8;
    stroke-width: 2.2;
    flex: 0 0 auto;
}

.contact-points span {
    color: #e2e8f0;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
}

.contact-form {
    margin: 0;
    padding: clamp(22px, 2.4vw, 28px);
    min-height: 520px;
    display: grid;
    align-content: start;
    gap: 16px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(56, 189, 248, 0.24);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(8, 17, 31, 0.92), rgba(2, 6, 23, 0.92)),
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.1), transparent 32%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 24px 80px rgba(0, 0, 0, 0.34);
}

.contact-form-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 4px 0 18px;
    border-bottom: 1px solid rgba(56, 189, 248, 0.14);
}

.contact-form-brand img {
    width: min(58%, 310px);
    height: auto;
    display: block;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 58px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(56, 189, 248, 0.18);
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.58), rgba(2, 6, 23, 0.72));
    color: #f8fafc;
    outline: none;
    font: inherit;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #64748b;
}

.contact-form textarea {
    min-height: 126px;
    padding-top: 16px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(56, 189, 248, 0.78);
    background: rgba(2, 6, 23, 0.82);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

.contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.contact-actions .btn-primary {
    min-height: 48px;
    min-width: 220px;
    border-radius: 14px;
}

@media (max-width: 1024px) {
    .contact-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact {
        padding: 54px 6% 28px;
    }

    .contact-intro,
    .contact-form {
        min-height: auto;
    }

    .contact-form {
        padding-bottom: 22px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-actions {
        align-items: stretch;
    }

    .contact-form-brand {
        align-items: center;
        justify-content: center;
    }

    .contact-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

.floating-whatsapp {
    position: fixed;
    right: clamp(18px, 3vw, 34px);
    bottom: clamp(18px, 3vw, 34px);
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(34, 197, 94, 0.42);
    background:
        linear-gradient(145deg, rgba(34, 197, 94, 0.95), rgba(22, 163, 74, 0.92));
    box-shadow:
        0 18px 42px rgba(34, 197, 94, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition:
        opacity 600ms ease,
        filter 600ms ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 24px 52px rgba(34, 197, 94, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.floating-whatsapp img {
    width: 27px;
    height: 27px;
    filter: brightness(0) invert(1);
}

@media (max-width: 600px) {
    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 46px;
        height: 46px;
        border-radius: 14px;
        z-index: 90;
    }

    .floating-whatsapp img {
        width: 22px;
        height: 22px;
    }
}

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

.premium-footer {
    position: relative;
    overflow: hidden;
    padding: 76px 8% 30px;
    background: linear-gradient(180deg, #050b14 0%, #020617 100%);
    color: #cbd5e1;
}

.premium-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(96, 165, 250, 0.65),
            transparent);
}

.premium-footer::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    background: rgba(96, 165, 250, 0.08);
    filter: blur(80px);
    pointer-events: none;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 34px;
    margin-bottom: 46px;
}

.footer-brand h3 {
    font-size: 30px;
    margin-bottom: 14px;
    color: #ffffff;
}

.footer-brand h3 span {
    color: #60a5fa;
}

.footer-brand p {
    max-width: 380px;
    color: #94a3b8;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-column a {
    display: block;
    color: #94a3b8;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

.footer-column a:hover {
    color: #60a5fa;
    transform: translateX(4px);
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.footer-contact a img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: block;
    border-radius: 7px;
}

.footer-contact a span {
    line-height: 1;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 14px;
}

@media (max-width: 600px) {
    .premium-footer {
        padding: 42px 8% 92px;
    }

    .footer-grid {
        display: block;
        margin-bottom: 0;
        text-align: center;
    }

    .footer-brand,
    .footer-column:not(.footer-contact) {
        display: none;
    }

    .footer-contact h4 {
        margin-bottom: 18px;
        color: #ffffff;
        font-size: 18px;
    }

    .footer-contact {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-contact::after {
        content: "ISM Developer";
        flex: 0 0 100%;
        margin-top: 22px;
        color: #ffffff;
        font-size: 22px;
        font-weight: 900;
        line-height: 1;
        letter-spacing: 0;
    }

    .footer-contact h4 {
        flex: 0 0 100%;
    }

    .footer-contact a {
        position: relative;
        width: 46px;
        height: 46px;
        min-height: 0;
        margin: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(96, 165, 250, 0.18);
        border-radius: 14px;
        background: rgba(15, 23, 42, 0.58);
        color: #cbd5e1;
        font-weight: 800;
    }

    .footer-contact a img {
        width: 28px;
        height: 28px;
        display: block;
        border-radius: 8px;
    }

    .footer-contact a span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .footer-bottom {
        display: none;
    }
}
