:root {
    --bg-900: #05091e;
    --bg-800: #0b1336;
    --surface: rgba(11, 19, 54, 0.62);
    --surface-strong: rgba(8, 14, 43, 0.92);
    --text: #e8f1ff;
    --muted: #b4c4df;
    --accent: #17d4ff;
    --accent-2: #2f7dff;
    --line: rgba(102, 187, 255, 0.22);
    --shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
}

/* iOS legacy safe-area support (iPhone X/XS era) */
@supports (top: constant(safe-area-inset-top)) {
    :root {
        --safe-top: constant(safe-area-inset-top);
        --safe-right: constant(safe-area-inset-right);
        --safe-bottom: constant(safe-area-inset-bottom);
        --safe-left: constant(safe-area-inset-left);
    }
}

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

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

html {
    width: 100%;
    background-color: #05091e;
    background:
        radial-gradient(circle at 18% 20%, rgba(47, 125, 255, 0.28), transparent 38%),
        radial-gradient(circle at 78% 12%, rgba(23, 212, 255, 0.22), transparent 35%),
        linear-gradient(140deg, #05091e, #0b1336);
    overflow-x: hidden;
    overflow-x: clip;
    overscroll-behavior: none;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text);
    line-height: 1.55;
    letter-spacing: 0.003em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background:
        radial-gradient(circle at 18% 20%, rgba(47, 125, 255, 0.28), transparent 38%),
        radial-gradient(circle at 78% 12%, rgba(23, 212, 255, 0.22), transparent 35%),
        linear-gradient(140deg, var(--bg-900), var(--bg-800));
    background-color: #05091e;
    overflow-x: hidden;
    overflow-x: clip;
    overscroll-behavior-x: none;
    touch-action: pan-y;
    position: relative;
}

@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

body::before {
    background-image:
        linear-gradient(rgba(116, 168, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(116, 168, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
    animation: gridDrift 28s linear infinite;
}

body::after {
    background: radial-gradient(circle at 50% 0%, rgba(23, 212, 255, 0.2), transparent 52%);
    animation: auroraBreath 11s ease-in-out infinite;
}

.page-slider {
    width: 200%;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: row-reverse;
    transform: translate3d(0, 0, 0);
    transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    touch-action: pan-y;
}

body.view-services .page-slider {
    transform: translate3d(-50%, 0, 0);
}

.page-view {
    width: 50%;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    flex-shrink: 0;
    contain: layout paint style;
    content-visibility: auto;
    contain-intrinsic-size: 100vh;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding:
        max(6px, calc(var(--safe-top) + 2px))
        max(10px, var(--safe-right))
        16px
        max(10px, var(--safe-left));
}

.header::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(var(--safe-top) + 8px);
    background: linear-gradient(180deg, rgba(5, 9, 30, 0.95), rgba(5, 9, 30, 0.72));
    pointer-events: none;
    z-index: -1;
}

.nav-container {
    width: min(1120px, 92%);
    margin: auto;
    background: var(--surface);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
}

.logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 9px 16px;
    border-radius: 13px;
    background:
        radial-gradient(circle at 14% 12%, rgba(172, 238, 255, 0.2), transparent 44%),
        linear-gradient(152deg, rgba(11, 25, 67, 0.9), rgba(8, 16, 46, 0.75));
    border: 1px solid rgba(140, 211, 255, 0.34);
    box-shadow:
        inset 0 0 0 1px rgba(175, 225, 255, 0.13),
        0 12px 24px rgba(1, 9, 28, 0.48),
        0 0 20px rgba(39, 182, 255, 0.16);
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    animation: logoAura 5.2s ease-in-out infinite;
}

.logo::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(175, 233, 255, 0.86), transparent);
    opacity: 0.9;
    pointer-events: none;
}

.logo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, transparent 24%, rgba(168, 232, 255, 0.3) 52%, transparent 78%);
    transform: translateX(-130%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.logo img {
    display: block;
    height: 35px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    filter: saturate(1.14) brightness(1.08) drop-shadow(0 0 10px rgba(90, 210, 255, 0.36));
    transition: filter 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
    border-color: rgba(175, 232, 255, 0.6);
    box-shadow:
        inset 0 0 0 1px rgba(175, 225, 255, 0.2),
        0 16px 30px rgba(1, 9, 28, 0.58),
        0 0 28px rgba(39, 182, 255, 0.26);
}

.logo:hover::after {
    transform: translateX(130%);
}

.logo:hover img {
    filter: saturate(1.2) brightness(1.12) drop-shadow(0 0 14px rgba(118, 220, 255, 0.5));
}

.logo:focus-visible {
    outline: 2px solid rgba(167, 232, 255, 0.72);
    outline-offset: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a,
.nav-trigger {
    position: relative;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.96rem;
    letter-spacing: 0.03em;
    transition: color 0.25s ease;
}

.nav-trigger {
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.nav-links > li > a::after,
.nav-trigger::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 12px rgba(23, 212, 255, 0.8);
    transition: width 0.25s ease;
}

.nav-links > li > a:hover,
.nav-links > li > a.active,
.nav-trigger:hover,
.has-submenu.open > .nav-trigger,
.has-submenu:focus-within > .nav-trigger {
    color: var(--accent);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after,
.nav-trigger:hover::after,
.has-submenu.open > .nav-trigger::after,
.has-submenu:focus-within > .nav-trigger::after {
    width: 100%;
}

.nav-caret {
    margin-left: 7px;
    font-size: 0.8em;
    transition: transform 0.25s ease;
    display: inline-block;
}

.has-submenu:hover .nav-caret,
.has-submenu:focus-within .nav-caret,
.has-submenu.open .nav-caret {
    transform: rotate(180deg);
}

.nav-submenu {
    list-style: none;
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(395px, 50vw);
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(138, 208, 255, 0.34);
    background:
        radial-gradient(circle at 10% 0%, rgba(120, 219, 255, 0.22), transparent 42%),
        linear-gradient(164deg, rgba(10, 22, 58, 0.98), rgba(7, 16, 45, 0.95));
    backdrop-filter: blur(18px);
    box-shadow:
        0 22px 42px rgba(2, 10, 34, 0.66),
        inset 0 0 0 1px rgba(166, 228, 255, 0.08);
    display: grid;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 20;
}

.nav-submenu::before {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(186, 236, 255, 0.85), transparent);
    opacity: 0.8;
    pointer-events: none;
}

.nav-submenu li + li {
    border-top: 1px solid rgba(123, 197, 255, 0.18);
    margin-top: 6px;
    padding-top: 6px;
}

.nav-submenu a {
    display: block;
    text-decoration: none;
    color: #d9edff;
    font-size: 0.9rem;
    line-height: 1.35;
    font-weight: 500;
    padding: 10px 11px 10px 14px;
    border-radius: 9px;
    border: 1px solid transparent;
    position: relative;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-submenu a::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    width: 3px;
    height: 12px;
    transform: translateY(-50%);
    border-radius: 4px;
    background: rgba(146, 221, 255, 0.64);
    box-shadow: 0 0 9px rgba(146, 221, 255, 0.5);
    opacity: 0.8;
}

.nav-submenu a:hover {
    color: #ffffff;
    background: linear-gradient(112deg, rgba(25, 67, 145, 0.5), rgba(29, 126, 193, 0.28));
    border-color: rgba(130, 208, 255, 0.42);
    transform: translateX(3px);
}

.has-submenu:hover .nav-submenu,
.has-submenu:focus-within .nav-submenu,
.has-submenu.open .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(132, 206, 255, 0.38);
    border-radius: 12px;
    background: rgba(8, 21, 58, 0.76);
    cursor: pointer;
    color: var(--text);
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #dff3ff;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.menu-toggle:hover {
    border-color: rgba(169, 227, 255, 0.62);
    background: rgba(10, 27, 70, 0.88);
    box-shadow: 0 0 14px rgba(79, 190, 255, 0.28);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn-contacto {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    background-size: 160% 160%;
    color: white;
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 24px rgba(23, 212, 255, 0.3);
    animation: ctaShift 6s ease-in-out infinite;
}

.btn-contacto:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(23, 212, 255, 0.45);
}

.services {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: 150px;
    padding-bottom: 80px;
    display: flex;
    align-items: flex-start;
    background: transparent;
}

.services-container {
    position: relative;
    z-index: 1;
    width: min(1120px, 92%);
    margin: auto;
}

.services-top {
    margin-bottom: 28px;
}

.services-top h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(2.35rem, 5vw, 3.6rem);
    line-height: 1.1;
    color: #f4fbff;
    text-shadow: 0 4px 18px rgba(7, 175, 255, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 26px;
}

.service-card {
    position: relative;
    min-height: 248px;
    border: 1px solid rgba(167, 223, 255, 0.35);
    border-radius: 8px;
    background: linear-gradient(168deg, rgba(40, 63, 154, 0.95) 0%, rgba(59, 168, 230, 0.93) 100%);
    background-size: 180% 180%;
    box-shadow: 0 18px 26px rgba(2, 8, 33, 0.36);
    padding: 14px 14px 16px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    overflow: hidden;
    animation: cardGradientShift 9s ease-in-out infinite;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 32px rgba(2, 8, 33, 0.5);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 34%, rgba(206, 245, 255, 0.22) 50%, transparent 66%);
    transform: translateX(-130%);
    pointer-events: none;
    animation: sheenSlide 6.6s ease-in-out infinite;
}

.service-card:nth-child(2)::after {
    animation-delay: 0.8s;
}

.service-card:nth-child(3)::after {
    animation-delay: 1.4s;
}

.service-card:nth-child(4)::after {
    animation-delay: 2s;
}

.service-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.02rem;
    line-height: 1.35;
    margin-bottom: 12px;
    color: #f5fbff;
    text-align: center;
    min-height: 2.4em;
}

.service-list {
    list-style: none;
    display: grid;
    gap: 8px;
}

.service-list li {
    position: relative;
    padding-left: 12px;
    color: #eef8ff;
    font-size: 0.82rem;
    line-height: 1.6;
    text-decoration: none;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(224, 246, 255, 0.95);
    box-shadow: 0 0 6px rgba(212, 242, 255, 0.95);
}

.volver-home {
    width: fit-content;
    background: rgba(10, 23, 68, 0.64);
}

.solutions {
    position: relative;
    padding: 58px 0 120px;
    scroll-margin-top: 120px;
    content-visibility: auto;
    contain-intrinsic-size: 920px;
}

.solutions-container {
    width: min(980px, 92%);
    margin: auto;
}

.solutions-head {
    text-align: center;
    margin-bottom: 30px;
}

.solutions-head h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(3rem, 6.6vw, 4.8rem);
    line-height: 1.04;
    color: #f3fbff;
    margin-bottom: 14px;
    text-wrap: balance;
    letter-spacing: 0.01em;
}

.solutions-head p {
    max-width: 46ch;
    margin-inline: auto;
    color: #bfd9ff;
    font-size: clamp(1.02rem, 1.5vw, 1.22rem);
    font-weight: 500;
    line-height: 1.55;
}

.solutions-map {
    position: relative;
    min-height: 1040px;
}

.solutions-note {
    margin-top: 26px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid rgba(130, 202, 255, 0.24);
    background: rgba(10, 24, 66, 0.45);
}

.solutions-note h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.08rem, 1.5vw, 1.3rem);
    color: #eaf7ff;
    margin-bottom: 8px;
}

.solutions-note p {
    color: #b8d4f7;
    font-size: clamp(0.95rem, 1.25vw, 1.05rem);
    line-height: 1.65;
    max-width: 80ch;
}

.solutions-map::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.42;
    background-image:
        radial-gradient(circle at 28% 36%, rgba(207, 245, 255, 0.8) 0 1.2px, transparent 1.8px),
        radial-gradient(circle at 64% 64%, rgba(207, 245, 255, 0.7) 0 1.2px, transparent 1.8px),
        radial-gradient(circle at 44% 48%, rgba(207, 245, 255, 0.72) 0 1.2px, transparent 1.8px),
        radial-gradient(circle at 72% 38%, rgba(207, 245, 255, 0.62) 0 1.2px, transparent 1.8px);
    background-size: 180px 180px, 220px 220px, 200px 200px, 240px 240px;
}

.solutions-map::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 56%;
    width: min(560px, 72vw);
    height: min(560px, 72vw);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(41, 150, 255, 0.3) 0%, rgba(17, 92, 198, 0.12) 42%, transparent 74%);
}

.solutions-network {
    position: absolute;
    left: 50%;
    top: 56%;
    width: min(700px, 78vw);
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 18px rgba(66, 189, 255, 0.42));
    opacity: 0.9;
    animation: networkPulse 7s ease-in-out infinite;
    will-change: transform, opacity;
}

.solution-card {
    position: absolute;
    width: clamp(190px, 22vw, 240px);
    min-height: 168px;
    border-radius: 8px;
    border: 1px solid rgba(168, 225, 255, 0.35);
    background: linear-gradient(158deg, rgba(56, 188, 227, 0.96) 0%, rgba(58, 72, 150, 0.92) 100%);
    background-size: 180% 180%;
    box-shadow: 0 18px 26px rgba(2, 8, 33, 0.45);
    padding: 14px 11px 12px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    will-change: transform;
    overflow: hidden;
    animation: cardGradientShift 11s ease-in-out infinite;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 34px rgba(2, 8, 33, 0.6);
}

.solution-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 35%, rgba(221, 248, 255, 0.2) 50%, transparent 65%);
    transform: translateX(-130%);
    pointer-events: none;
    animation: sheenSlide 7.8s ease-in-out infinite;
}

.solution-card-2::after {
    animation-delay: 0.9s;
}

.solution-card-3::after {
    animation-delay: 1.4s;
}

.solution-card-4::after {
    animation-delay: 1.9s;
}

.solution-card-5::after {
    animation-delay: 2.4s;
}

.solution-card-6::after {
    animation-delay: 2.9s;
}

.solution-card h3 {
    color: #f4fbff;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.15rem, 1.65vw, 1.55rem);
    line-height: 1.22;
    max-width: 12ch;
    position: relative;
    padding-left: 9px;
}

.solution-card h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 3px;
    height: 1.06em;
    border-radius: 3px;
    background: rgba(206, 247, 255, 0.85);
    box-shadow: 0 0 10px rgba(206, 247, 255, 0.8);
}

.solution-card-1 {
    top: 78px;
    left: 2%;
}

.solution-card-2 {
    top: 190px;
    right: 2%;
}

.solution-card-3 {
    top: 382px;
    left: 2%;
}

.solution-card-4 {
    top: 566px;
    right: 2%;
}

.solution-card-5 {
    bottom: 214px;
    left: 2%;
}

.solution-card-6 {
    bottom: 52px;
    right: 2%;
}

.industries {
    position: relative;
    padding: 44px 0 86px;
    scroll-margin-top: 120px;
    content-visibility: auto;
    contain-intrinsic-size: 860px;
}

.industries-container {
    width: min(1120px, 92%);
    margin: auto;
}

.industries-head p {
    color: #67aeff;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.industries-head h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(2.3rem, 5.5vw, 4.2rem);
    line-height: 1.08;
    color: #f3fbff;
    margin-bottom: 22px;
}

.industries-layout {
    position: relative;
    min-height: 510px;
    display: grid;
    grid-template-columns: 1fr 0.52fr;
    gap: 28px;
    align-items: end;
}

.industries-network {
    position: absolute;
    right: 10px;
    top: 24px;
    width: min(610px, 62vw);
    opacity: 0.86;
    filter: drop-shadow(0 0 16px rgba(60, 188, 255, 0.38));
    pointer-events: none;
    z-index: 0;
    animation: networkPulse 8.5s ease-in-out infinite;
}

.industries-media {
    position: relative;
    z-index: 1;
    min-height: 390px;
    border-radius: 2px;
    border: 1px solid rgba(154, 221, 255, 0.34);
    background: linear-gradient(145deg, rgba(61, 183, 224, 0.95), rgba(63, 72, 151, 0.9));
    display: grid;
    place-items: center;
    box-shadow: 0 18px 30px rgba(2, 10, 34, 0.4);
}

.industries-media span {
    font-family: 'Exo 2', sans-serif;
    color: #d4ebff;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.industries-info {
    position: relative;
    z-index: 1;
    align-self: center;
    padding-top: 12px;
}

.industries-info ul {
    list-style: none;
    display: grid;
    gap: 14px;
}

.industries-info li {
    color: #f1f8ff;
    font-size: clamp(1.12rem, 1.55vw, 1.45rem);
    font-weight: 500;
    line-height: 1.32;
    padding-left: 18px;
    position: relative;
}

.industries-info li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    color: #89d3ff;
}

.industries-slider-ui {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.industries-slider-ui button {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 2px;
    font-size: 1.85rem;
    color: #c7e7ff;
    background: rgba(48, 109, 202, 0.82);
    box-shadow: 0 10px 18px rgba(2, 10, 34, 0.36);
}

.industries-slider-ui span {
    color: #f3fbff;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.industries-footnote {
    margin-top: 16px;
    color: #69adff;
    font-size: clamp(1.02rem, 1.35vw, 1.28rem);
    font-weight: 500;
    line-height: 1.45;
}

.value-proposal {
    position: relative;
    padding: 48px 0 90px;
    scroll-margin-top: 120px;
    content-visibility: auto;
    contain-intrinsic-size: 860px;
}

.value-container {
    width: min(1120px, 92%);
    margin: auto;
}

.value-head {
    margin-bottom: 24px;
}

.value-head h2 {
    font-family: 'Exo 2', sans-serif;
    text-align: right;
    color: #f3fbff;
    font-size: clamp(2.4rem, 5.6vw, 4.6rem);
    line-height: 1.05;
    margin-bottom: 8px;
}

.value-head p {
    text-align: right;
    color: #68b5ff;
    font-size: clamp(1.05rem, 1.55vw, 1.4rem);
    font-weight: 500;
    line-height: 1.5;
}

.value-layout {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 20px;
    align-items: center;
}

.value-text ul {
    list-style: none;
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.value-text li {
    color: #f1f8ff;
    font-size: clamp(1.08rem, 1.55vw, 1.42rem);
    font-weight: 600;
    line-height: 1.45;
    padding-left: 18px;
    position: relative;
}

.value-text li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    color: #9ad8ff;
}

.value-text h3 {
    color: #5ca5ff;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(2.1rem, 4vw, 3.7rem);
    line-height: 1.1;
}

.value-globe {
    justify-self: end;
    width: min(500px, 48vw);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    position: relative;
    background:
        radial-gradient(circle at 45% 42%, rgba(36, 122, 255, 0.34), rgba(9, 20, 71, 0.12) 72%, transparent 74%),
        radial-gradient(circle, rgba(43, 174, 255, 0.1), transparent 66%);
    box-shadow: inset 0 0 0 1px rgba(74, 154, 255, 0.2), 0 22px 44px rgba(2, 10, 34, 0.36);
    overflow: hidden;
}

.value-globe::before,
.value-globe::after {
    content: "";
    position: absolute;
    inset: 8%;
    border-radius: 50%;
}

.value-globe::before {
    background-image:
        repeating-linear-gradient(0deg, rgba(56, 199, 255, 0.7) 0 2px, transparent 2px 28px),
        repeating-linear-gradient(90deg, rgba(56, 199, 255, 0.5) 0 2px, transparent 2px 34px);
    opacity: 0.55;
    transform: rotate(8deg);
    animation: globeSpin 18s linear infinite;
}

.value-globe::after {
    border: 1px solid rgba(91, 190, 255, 0.42);
    box-shadow:
        0 0 0 28px rgba(32, 122, 232, 0.08),
        0 0 0 56px rgba(32, 122, 232, 0.06);
    animation: globePulse 7s ease-in-out infinite;
}

.about-us {
    position: relative;
    padding: 42px 0 110px;
    scroll-margin-top: 120px;
    content-visibility: auto;
    contain-intrinsic-size: 860px;
}

.about-container {
    width: min(1120px, 92%);
    margin: auto;
}

.about-title {
    text-align: center;
    color: #f3fbff;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(2.8rem, 5.4vw, 4.8rem);
    line-height: 1.06;
    margin-bottom: 26px;
}

.about-intro {
    max-width: 86ch;
    margin: 0 auto 24px;
    color: #bcd6f5;
    font-size: clamp(0.98rem, 1.35vw, 1.12rem);
    line-height: 1.7;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    grid-template-areas:
        "brand mission"
        "vision values";
    gap: 28px 34px;
}

.about-brand {
    grid-area: brand;
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 10px 0 10px 8px;
    overflow: visible;
    isolation: isolate;
}

.about-brand img {
    width: min(450px, 86%);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: saturate(1.08) brightness(1.06) drop-shadow(0 0 14px rgba(88, 180, 255, 0.35));
    transform-origin: left center;
    will-change: transform, filter;
    transition: transform 0.3s ease, filter 0.3s ease;
    animation: aboutLogoFloat 4.3s cubic-bezier(0.4, 0, 0.2, 1) infinite, aboutLogoGlow 4.8s ease-in-out infinite;
}

.about-brand::before {
    content: none;
}

.about-brand::after {
    content: none;
}

.about-brand:hover img {
    transform: translateY(-2px) scale(1.02);
    filter: saturate(1.15) brightness(1.11) drop-shadow(0 0 18px rgba(101, 194, 255, 0.5));
}

.about-block h3 {
    font-family: 'Exo 2', sans-serif;
    color: #f4fbff;
    font-size: clamp(2.2rem, 3.8vw, 3.3rem);
    line-height: 1.08;
    margin-bottom: 14px;
}

.about-block p,
.about-block li {
    color: #68adff;
    font-size: clamp(1rem, 1.25vw, 1.2rem);
    line-height: 1.55;
    font-weight: 500;
}

.about-block p {
    max-width: 34ch;
}

.about-block ul {
    list-style: none;
    display: grid;
    gap: 6px;
}

.about-block li {
    position: relative;
    padding-left: 14px;
}

.about-block li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    color: #8fd0ff;
}

.about-block {
    position: relative;
    padding-left: 18px;
}

.about-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(171, 231, 255, 0.86), rgba(171, 231, 255, 0));
}

.mission {
    grid-area: mission;
}

.vision {
    grid-area: vision;
}

.values {
    grid-area: values;
}

.site-footer {
    position: relative;
    padding:
        62px
        max(10px, var(--safe-right))
        calc(26px + var(--safe-bottom))
        max(10px, var(--safe-left));
    border-top: 1px solid rgba(115, 195, 255, 0.26);
    background:
        radial-gradient(circle at 0% 0%, rgba(56, 154, 255, 0.16), transparent 46%),
        radial-gradient(circle at 100% 0%, rgba(26, 206, 255, 0.12), transparent 42%),
        linear-gradient(160deg, rgba(8, 16, 46, 0.82), rgba(5, 11, 34, 0.9));
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(1120px, 92%);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(171, 232, 255, 0.72), transparent);
    pointer-events: none;
}

.footer-container {
    width: min(1120px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 26px;
}

.footer-brand img {
    width: min(220px, 78%);
    margin-bottom: 14px;
    filter: saturate(1.1) brightness(1.08) drop-shadow(0 0 12px rgba(92, 193, 255, 0.35));
}

.footer-brand p {
    color: #b5d2f3;
    font-size: 0.96rem;
    line-height: 1.7;
    max-width: 44ch;
}

.footer-pill {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(132, 210, 255, 0.3);
    background: rgba(9, 25, 66, 0.56);
    color: #9ecfff;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-col h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.02rem;
    color: #eaf7ff;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.footer-col ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-col li,
.footer-col a {
    color: #b8d4f7;
    font-size: 0.92rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-col a:hover {
    color: #dff5ff;
}

.footer-bottom {
    width: min(1120px, 92%);
    margin: 28px auto 0;
    padding-top: 14px;
    border-top: 1px solid rgba(114, 188, 255, 0.2);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.footer-bottom p,
.footer-bottom span {
    color: #91bcf0;
    font-size: 0.84rem;
    line-height: 1.45;
}

.whatsapp-float {
    position: fixed;
    right: max(18px, calc(var(--safe-right) + 12px));
    bottom: max(18px, calc(var(--safe-bottom) + 12px));
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #25d366, #1cb457);
    border: 1px solid rgba(200, 255, 220, 0.5);
    box-shadow:
        0 16px 26px rgba(0, 0, 0, 0.35),
        0 0 22px rgba(37, 211, 102, 0.45);
    z-index: 1200;
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
    animation: whatsappPulse 2.8s ease-in-out infinite;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 2px solid rgba(67, 230, 124, 0.35);
    opacity: 0;
    transform: scale(0.8);
    animation: whatsappRing 2.8s ease-out infinite;
    pointer-events: none;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 20px 30px rgba(0, 0, 0, 0.4),
        0 0 28px rgba(37, 211, 102, 0.6);
    filter: saturate(1.06);
}

.hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: 160px;
    padding-bottom: 90px;
    display: flex;
    align-items: center;
}

.hero-container {
    width: min(1120px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
}

.hero-text {
    max-width: 680px;
    opacity: 0;
    transform: translateY(36px);
    animation: fadeUp 1s ease forwards;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(113, 185, 255, 0.4);
    border-radius: 999px;
    padding: 7px 14px;
    margin-bottom: 20px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #b9e8ff;
    background: rgba(27, 61, 128, 0.35);
}

.hero-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(23, 212, 255, 1);
}

.hero-text h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(2rem, 4.7vw, 3.7rem);
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-wrap: balance;
}

.hero-line {
    width: 130px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin: 30px 0 24px;
}

.hero-text p {
    color: var(--muted);
    font-size: clamp(1.02rem, 1.45vw, 1.14rem);
    line-height: 1.8;
    max-width: 60ch;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.explorar,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.explorar {
    color: white;
    background: linear-gradient(90deg, #0dc1ff, #2f7dff);
    background-size: 160% 160%;
    box-shadow: 0 14px 26px rgba(15, 184, 255, 0.3);
    animation: ctaShift 6s ease-in-out infinite;
}

.explorar:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(15, 184, 255, 0.45);
}

.btn-ghost {
    color: var(--text);
    border: 1px solid rgba(140, 192, 255, 0.36);
    background: rgba(14, 27, 67, 0.55);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    background: rgba(20, 37, 84, 0.75);
}

.hero-image {
    position: relative;
    display: grid;
    place-items: center;
    width: min(560px, 96vw);
    aspect-ratio: 1 / 1;
    margin-inline: auto;
    isolation: isolate;
    will-change: transform;
    transform: translateZ(0);
}

.hero-image::before {
    content: "";
    position: absolute;
    width: min(420px, 88vw);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(23, 212, 255, 0.28), transparent 65%);
    filter: blur(8px);
    animation: pulseGlow 4.2s ease-in-out infinite;
}

.tech-panel {
    position: absolute;
    inset: 20% 12%;
    border-radius: 18px;
    border: 1px solid rgba(112, 201, 255, 0.3);
    background:
        linear-gradient(145deg, rgba(21, 43, 98, 0.52), rgba(9, 19, 52, 0.52));
    backdrop-filter: blur(8px);
    box-shadow:
        inset 0 0 0 1px rgba(138, 216, 255, 0.14),
        0 24px 40px rgba(5, 8, 26, 0.6);
    z-index: 1;
    overflow: hidden;
    animation: panelFloat 6s ease-in-out infinite;
}

.panel-head {
    display: flex;
    gap: 8px;
    padding: 12px 14px 6px;
}

.panel-head span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(148, 220, 255, 0.75);
    box-shadow: 0 0 8px rgba(57, 203, 255, 0.7);
}

.panel-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 50%;
    width: 80%;
    margin: 8% auto 0;
}

.panel-bars i {
    display: block;
    width: 16%;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, rgba(46, 213, 255, 0.95), rgba(43, 110, 255, 0.25));
    box-shadow: 0 0 12px rgba(56, 181, 255, 0.5);
    animation: barsPulse 2.6s ease-in-out infinite;
}

.panel-bars i:nth-child(1) {
    height: 35%;
    animation-delay: 0.1s;
}

.panel-bars i:nth-child(2) {
    height: 70%;
    animation-delay: 0.4s;
}

.panel-bars i:nth-child(3) {
    height: 50%;
    animation-delay: 0.2s;
}

.panel-bars i:nth-child(4) {
    height: 82%;
    animation-delay: 0.6s;
}

.panel-line {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 16%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(112, 225, 255, 0.95), transparent);
    box-shadow: 0 0 10px rgba(64, 214, 255, 0.75);
    animation: lineScan 3.2s linear infinite;
}

.brain-visual {
    position: relative;
    width: 76%;
    aspect-ratio: 1 / 1;
    z-index: 3;
    animation: brainFloat 4.2s ease-in-out infinite;
}

.brain-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.brain-outline {
    fill: rgba(19, 68, 138, 0.26);
    stroke: url(#brainStroke);
    stroke-width: 4;
    filter: url(#brainGlow);
}

.brain-mid {
    stroke: rgba(142, 228, 255, 0.85);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 8 9;
    animation: dashMove 5s linear infinite;
}

.brain-groove {
    fill: none;
    stroke: rgba(130, 201, 255, 0.75);
    stroke-width: 2.5;
    stroke-linecap: round;
}

.brain-link {
    stroke: rgba(122, 220, 255, 0.55);
    stroke-width: 1.4;
    stroke-dasharray: 7 8;
    animation: dashMove 4s linear infinite;
}

.brain-node {
    fill: #c6f6ff;
    filter: drop-shadow(0 0 10px rgba(110, 223, 255, 0.95));
    animation: nodePulse 2.2s ease-in-out infinite;
}

.node-2,
.node-5 {
    animation-delay: 0.3s;
}

.node-3,
.node-6 {
    animation-delay: 0.6s;
}

.node-4,
.node-7 {
    animation-delay: 0.9s;
}

.node-8 {
    animation-delay: 1.2s;
}

.tech-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(111, 198, 255, 0.4);
    box-shadow: inset 0 0 16px rgba(35, 190, 255, 0.18);
    z-index: 1;
    transform-origin: center;
}

.tech-link {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(116, 214, 255, 0.95), transparent);
    box-shadow: 0 0 9px rgba(116, 214, 255, 0.65);
    z-index: 2;
    transform-origin: left center;
}

.link-a {
    width: 110px;
    top: 34%;
    left: 18%;
    transform: rotate(16deg);
}

.link-b {
    width: 100px;
    bottom: 30%;
    right: 18%;
    transform: rotate(-22deg);
}

.ring-1 {
    width: 62%;
    aspect-ratio: 1 / 1;
    animation: orbitA 8s linear infinite;
}

.ring-2 {
    width: 78%;
    aspect-ratio: 1 / 1;
    border-style: dashed;
    border-color: rgba(75, 169, 255, 0.45);
    animation: orbitB 11s linear infinite;
}

.ring-3 {
    width: 94%;
    aspect-ratio: 1 / 1;
    border-color: rgba(32, 220, 255, 0.3);
    animation: orbitA 14s linear infinite reverse;
}

.tech-grid {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background-image:
        linear-gradient(rgba(130, 190, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(130, 190, 255, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 72%);
    z-index: 0;
    animation: gridSpin 16s linear infinite;
}

.reveal-on-scroll {
    --reveal-offset: 26px;
    opacity: 0;
    transform: translate3d(0, var(--reveal-offset), 0);
    filter: blur(2px);
    transition:
        opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.78s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity, filter;
}

.reveal-on-scroll.is-visible {
    --reveal-offset: 0px;
    opacity: 1;
    filter: blur(0);
}

@media (max-width: 992px) {
    .page-view,
    .solutions,
    .industries,
    .value-proposal,
    .about-us {
        content-visibility: visible;
        contain-intrinsic-size: auto;
    }

    .nav-links {
        position: absolute;
        top: calc(86px + (var(--safe-top) * 0.35));
        right: max(4%, calc(var(--safe-right) + 8px));
        min-width: 210px;
        background: var(--surface-strong);
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 18px;
        flex-direction: column;
        gap: 14px;
        display: flex;
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px) scale(0.98);
        transform-origin: top right;
        transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .nav-submenu {
        position: static;
        width: 100%;
        margin-top: 10px;
        padding: 10px;
        border-radius: 12px;
        border: 1px solid rgba(132, 203, 255, 0.32);
        background:
            radial-gradient(circle at 10% 0%, rgba(120, 219, 255, 0.18), transparent 45%),
            rgba(10, 21, 56, 0.82);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        display: none;
    }

    .nav-submenu::before {
        display: none;
    }

    .nav-submenu li + li {
        margin-top: 5px;
        padding-top: 5px;
    }

    .has-submenu.open .nav-submenu {
        display: grid;
    }

    .nav-submenu a {
        font-size: 0.84rem;
        padding: 9px 10px 9px 13px;
        transform: none;
    }

    .nav-submenu a:hover {
        transform: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero {
        padding-top: calc(140px + (var(--safe-top) * 0.35));
    }

    .services {
        padding-top: calc(140px + (var(--safe-top) * 0.35));
    }

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

    .service-card {
        min-height: 206px;
    }

    .solutions {
        padding-top: 34px;
        padding-bottom: 92px;
    }

    .solutions-head h2 {
        font-size: clamp(2.7rem, 8vw, 4rem);
    }

    .solutions-map {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        padding-top: 250px;
    }

    .solutions-map::before {
        opacity: 0.28;
    }

    .solutions-map::after {
        width: min(500px, 88vw);
        height: min(500px, 88vw);
        top: 180px;
        transform: translate(-50%, -50%);
    }

    .solutions-note {
        margin-top: 18px;
        padding: 14px 14px;
    }

    .solutions-network {
        width: min(620px, 96vw);
        top: 190px;
        transform: translate(-50%, -50%);
    }

    .solution-card {
        position: relative;
        width: 100%;
        min-height: 132px;
    }

    .solution-card-1,
    .solution-card-2,
    .solution-card-3,
    .solution-card-4,
    .solution-card-5,
    .solution-card-6 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .industries {
        padding-top: 34px;
        padding-bottom: 64px;
    }

    .industries-layout {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .industries-network {
        width: min(560px, 92vw);
        right: 0;
        left: auto;
        top: 120px;
    }

    .industries-media {
        min-height: 300px;
    }

    .industries-info {
        padding-top: 0;
    }

    .industries-info li {
        font-size: clamp(1.05rem, 2.7vw, 1.26rem);
    }

    .industries-footnote {
        font-size: clamp(1rem, 2.4vw, 1.14rem);
    }

    .value-proposal {
        padding-top: 36px;
        padding-bottom: 62px;
    }

    .value-head h2,
    .value-head p {
        text-align: left;
    }

    .value-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-globe {
        justify-self: start;
        width: min(440px, 82vw);
    }

    .about-us {
        padding-top: 30px;
        padding-bottom: 80px;
    }

    .about-intro {
        text-align: left;
        margin-bottom: 18px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "mission"
            "vision"
            "values";
        gap: 20px;
    }

    .about-brand {
        min-height: 178px;
    }

    .about-brand img {
        width: min(360px, 80vw);
    }

    .site-footer {
        padding-top: 48px;
        padding-bottom: 22px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        margin-top: 22px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-line {
        margin-inline: auto;
    }

    .hero-text p {
        margin-inline: auto;
    }

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

    .hero-image {
        margin-top: 14px;
        width: min(500px, 96vw);
    }

    .brain-visual {
        width: 82%;
    }

    .nav-container {
        backdrop-filter: blur(10px);
    }

    .tech-panel {
        backdrop-filter: blur(4px);
    }
}

@media (max-width: 768px) {
    .nav-container {
        width: min(1120px, 94%);
        padding: 12px 14px;
    }

    .nav-links > li > a,
    .nav-trigger {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
    }

    .btn-contacto,
    .explorar,
    .btn-ghost {
        min-height: 44px;
    }

    .hero {
        padding-top: calc(132px + (var(--safe-top) * 0.4));
    }

    .services {
        padding-top: calc(132px + (var(--safe-top) * 0.4));
    }

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

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

    .hero-text p {
        max-width: 44ch;
    }

    .solution-card h3 {
        max-width: 14ch;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-brand img {
        width: min(190px, 62vw);
    }

    .footer-col h3 {
        margin-bottom: 8px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        right: max(14px, calc(var(--safe-right) + 10px));
        bottom: max(14px, calc(var(--safe-bottom) + 10px));
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 12px 16px;
    }

    .logo {
        padding: 6px 10px;
        border-radius: 10px;
    }

    .logo img {
        height: 30px;
        max-width: 140px;
    }

    .btn-contacto {
        display: none;
    }

    .hero-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.11em;
    }

    .services {
        padding-top: calc(126px + (var(--safe-top) * 0.45));
    }

    .services-top h2 {
        font-size: 2.2rem;
    }

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

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

    .solutions {
        padding-top: 20px;
        padding-bottom: 70px;
    }

    .solutions-head h2 {
        font-size: 2.5rem;
    }

    .solutions-head p {
        font-size: 0.98rem;
        max-width: 320px;
    }

    .solutions-map {
        grid-template-columns: 1fr;
        padding-top: 220px;
        gap: 12px;
    }

    .solutions-network {
        width: 100%;
        top: 172px;
        margin-bottom: 0;
    }

    .solutions-map::before {
        display: none;
    }

    .solutions-map::after {
        width: 92vw;
        height: 92vw;
        top: 170px;
    }

    .solutions-note h3 {
        font-size: 1.02rem;
    }

    .solutions-note p {
        font-size: 0.94rem;
        line-height: 1.6;
    }

    .solution-card {
        width: 100%;
        min-height: 118px;
    }

    .solution-card h3 {
        font-size: 1.62rem;
        max-width: 13ch;
    }

    .industries-head p {
        font-size: 1.35rem;
    }

    .industries-head h2 {
        font-size: 2.5rem;
    }

    .industries-media {
        min-height: 220px;
    }

    .industries-media span {
        font-size: 2.1rem;
    }

    .industries-network {
        position: absolute;
        width: 94vw;
        right: 0;
        top: 132px;
        opacity: 0.5;
    }

    .industries-info ul {
        gap: 10px;
    }

    .industries-info li {
        font-size: 1.03rem;
    }

    .industries-slider-ui {
        margin-top: 16px;
        gap: 8px;
    }

    .industries-slider-ui button {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .industries-slider-ui span {
        font-size: 1.2rem;
    }

    .industries-footnote {
        margin-top: 14px;
        font-size: 1rem;
    }

    .value-head h2 {
        font-size: 2.42rem;
    }

    .value-head p {
        font-size: 1.08rem;
    }

    .value-text li {
        font-size: 1.08rem;
    }

    .value-text h3 {
        font-size: 2.55rem;
    }

    .value-globe {
        width: 92vw;
    }

    .about-title {
        font-size: 2.6rem;
    }

    .about-intro {
        font-size: 0.96rem;
        line-height: 1.62;
    }

    .about-brand {
        min-height: 146px;
    }

    .about-brand img {
        width: min(260px, 78vw);
    }

    .about-block h3 {
        font-size: 2.05rem;
    }

    .about-block p,
    .about-block li {
        font-size: 1.04rem;
    }

    .site-footer {
        padding-top: 40px;
        padding-bottom: calc(18px + var(--safe-bottom));
    }

    .footer-brand p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-col h3 {
        font-size: 0.95rem;
    }

    .footer-col li,
    .footer-col a {
        font-size: 0.88rem;
    }

    .footer-bottom p,
    .footer-bottom span {
        font-size: 0.78rem;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        right: max(12px, calc(var(--safe-right) + 8px));
        bottom: max(12px, calc(var(--safe-bottom) + 8px));
    }

    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}

@media (hover: none) {
    .btn-contacto:hover,
    .explorar:hover,
    .btn-ghost:hover,
    .service-card:hover,
    .solution-card:hover,
    .about-brand:hover img {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    body::before,
    body::after,
    .btn-contacto,
    .explorar,
    .service-card,
    .service-card::after,
    .solution-card,
    .solution-card::after,
    .industries-network,
    .value-globe::before,
    .value-globe::after,
    .about-brand img {
        animation: none;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .whatsapp-float,
    .whatsapp-float::before {
        animation: none;
    }
}

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

@keyframes aboutLogoFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

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

@keyframes aboutLogoGlow {
    0%,
    100% {
        filter: saturate(1.08) brightness(1.06) drop-shadow(0 0 14px rgba(88, 180, 255, 0.35));
    }

    50% {
        filter: saturate(1.14) brightness(1.1) drop-shadow(0 0 20px rgba(101, 194, 255, 0.52));
    }
}

@keyframes gridDrift {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 0 50px, 50px 0;
    }
}

@keyframes auroraBreath {
    0%,
    100% {
        opacity: 0.82;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes ctaShift {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes cardGradientShift {
    0%,
    100% {
        background-position: 0% 40%;
    }

    50% {
        background-position: 100% 60%;
    }
}

@keyframes sheenSlide {
    0%,
    20% {
        transform: translateX(-130%);
        opacity: 0;
    }

    35% {
        opacity: 1;
    }

    55% {
        transform: translateX(130%);
        opacity: 0;
    }

    100% {
        transform: translateX(130%);
        opacity: 0;
    }
}

@keyframes globeSpin {
    from {
        transform: rotate(8deg);
    }

    to {
        transform: rotate(368deg);
    }
}

@keyframes globePulse {
    0%,
    100% {
        opacity: 0.85;
    }

    50% {
        opacity: 1;
    }
}

@keyframes whatsappPulse {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-2px) scale(1.035);
    }
}

@keyframes whatsappRing {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    35% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
        transform: scale(1.28);
    }
}

@keyframes logoAura {
    0%,
    100% {
        box-shadow:
            inset 0 0 0 1px rgba(175, 225, 255, 0.13),
            0 12px 24px rgba(1, 9, 28, 0.48),
            0 0 20px rgba(39, 182, 255, 0.16);
    }

    50% {
        box-shadow:
            inset 0 0 0 1px rgba(175, 225, 255, 0.19),
            0 14px 26px rgba(1, 9, 28, 0.53),
            0 0 24px rgba(39, 182, 255, 0.23);
    }
}

@keyframes brainFloat {
    0%,
    100% {
        transform: translateY(0) scale(0.98);
    }

    50% {
        transform: translateY(-6px) scale(1.03);
    }
}

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

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

@keyframes barsPulse {
    0%,
    100% {
        opacity: 0.8;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.08);
    }
}

@keyframes lineScan {
    from {
        opacity: 0.4;
        transform: translateX(-12px);
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0.4;
        transform: translateX(12px);
    }
}

@keyframes nodePulse {
    0%,
    100% {
        opacity: 0.72;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.28);
    }
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -120;
    }
}

@keyframes orbitA {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitB {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes gridSpin {
    from {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.04);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes networkPulse {
    0%,
    100% {
        opacity: 0.72;
    }

    50% {
        opacity: 0.92;
    }
}
