﻿:root {
    --ink-900: #050b1f;
    --ink-850: #0a1431;
    --ink-800: #111f46;
    --ink-700: #172a63;
    --ink-650: #203777;
    --text-100: #f4f7ff;
    --text-300: #b2c2e9;
    --text-400: #90a8d8;
    --text-500: #6e8ac0;
    --cyan-400: #36d2ff;
    --cyan-500: #0db8ff;
    --cyan-600: #0093dd;
    --violet-500: #6e66ff;
    --lime-400: #61df8d;
    --amber-400: #f7b144;
    --amber-500: #de8b1e;
    --rose-400: #ff6f91;
    --ok-green: #25d366;
    --gold-300: #ffd79b;
    --gold-400: #ffbe67;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(15, 184, 255, 0.3);
    color: #f7fdff;
}
body {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    color: var(--text-100);
    line-height: 1.6;
    background:
        radial-gradient(circle at 12% -2%, rgba(13, 184, 255, 0.18) 0%, rgba(13, 184, 255, 0) 34%),
        radial-gradient(circle at 88% 95%, rgba(110, 102, 255, 0.12) 0%, rgba(110, 102, 255, 0) 30%),
        linear-gradient(165deg, #040919 0%, var(--ink-850) 42%, #040919 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, black 24%, transparent 78%);
    opacity: 0.22;
    z-index: -1;
}

body::after {
    content: "";
    position: fixed;
    inset: -18vh -14vw;
    pointer-events: none;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 24%, rgba(54, 210, 255, 0.16) 0%, rgba(54, 210, 255, 0) 32%),
        radial-gradient(circle at 84% 14%, rgba(255, 190, 103, 0.16) 0%, rgba(255, 190, 103, 0) 34%),
        radial-gradient(circle at 70% 85%, rgba(97, 223, 141, 0.1) 0%, rgba(97, 223, 141, 0) 28%);
    filter: blur(22px) saturate(1.12);
    animation: ambientFloat 14s ease-in-out infinite alternate;
}

@keyframes ambientFloat {
    0% {
        transform: translate3d(-2%, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(2.5%, -1.5%, 0) scale(1.04);
    }
}

img {
    max-width: 100%;
}

.skip-link {
    position: absolute;
    left: 10px;
    top: -42px;
    background: #ffffff;
    color: #111;
    padding: 10px 12px;
    border-radius: 8px;
    z-index: 3000;
    text-decoration: none;
    font-weight: 700;
}

.skip-link:focus {
    top: 10px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 6%;
    background: linear-gradient(180deg, rgba(5, 11, 31, 0.9) 0%, rgba(5, 11, 31, 0.74) 100%);
    border-bottom: 1px solid rgba(54, 210, 255, 0.24);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(2, 7, 21, 0.34);
    isolation: isolate;
}

.header::after {
    content: "";
    position: absolute;
    left: 5.5%;
    right: 5.5%;
    bottom: -1px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(54, 210, 255, 0) 0%, rgba(54, 210, 255, 0.88) 36%, rgba(255, 215, 155, 0.94) 64%, rgba(255, 215, 155, 0) 100%);
    opacity: 0.88;
    pointer-events: none;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    display: block;
    transition: transform 0.25s ease, filter 0.25s ease;
    transform-style: preserve-3d;
    filter: drop-shadow(0 8px 20px rgba(255, 82, 120, 0.2));
}

.logo-img:hover {
    filter: drop-shadow(0 10px 24px rgba(255, 82, 120, 0.35));
}

.center-text {
    flex: 1;
    overflow: hidden;
    border: 1px solid rgba(54, 210, 255, 0.3);
    border-radius: 999px;
    padding: 8px 0;
    background: linear-gradient(90deg, rgba(54, 210, 255, 0.13), rgba(247, 177, 68, 0.1));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 10px 20px rgba(0, 0, 0, 0.22);
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    color: #bff4ff;
    font-size: 13px;
    font-weight: 700;
    animation: marqueeMove 22s linear infinite;
}

@keyframes marqueeMove {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(140, 228, 255, 0.18);
    background: rgba(8, 23, 52, 0.52);
    box-shadow: inset 0 0 0 1px rgba(162, 235, 255, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.socials svg {
    transition: transform 0.2s ease;
}

.socials a:hover {
    transform: translateY(-2px);
    border-color: rgba(140, 228, 255, 0.46);
    background: rgba(10, 30, 67, 0.72);
    box-shadow: 0 10px 20px rgba(15, 86, 168, 0.28);
}

.socials a:hover svg {
    transform: scale(1.05);
}

/* Sidebar */
.sidebar-nav {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateX(-110%) translateY(-50%);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.sidebar-nav.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) translateY(-50%);
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    padding: 14px 10px;
    border-radius: 0 16px 16px 0;
    border: 1px solid rgba(54, 210, 255, 0.03);
    border-left: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.sidebar-product-thumb {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(54, 210, 255, 0.45);
    background: rgba(255, 255, 255, 0.28);
    margin-bottom: 10px;
}

.sidebar-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-link {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(240, 249, 255, 0.96);
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 9px 12px;
    border-radius: 10px;
    transition: all 0.25s ease;
    background: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.72);
}

.sidebar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(178, 194, 233, 0.3);
    border: 1px solid rgba(178, 194, 233, 0.45);
}

.sidebar-link:hover,
.sidebar-link.active {
    color: #ffffff;
    background: rgba(54, 210, 255, 0.04);
}

.sidebar-link.active .sidebar-dot {
    background: var(--cyan-400);
    border-color: var(--cyan-400);
    box-shadow: 0 0 14px rgba(54, 210, 255, 0.7);
}

.sidebar-scroll-hint {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(54, 210, 255, 0.18);
    color: rgba(230, 244, 255, 0.94);
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.72);
}

/* Hero */
.hero {
    position: relative;
    padding: 96px 6% 70px;
    border-bottom: 1px solid rgba(117, 214, 255, 0.22);
    overflow: hidden;
    background:
        radial-gradient(circle at 5% 10%, rgba(255, 214, 143, 0.22) 0%, rgba(255, 214, 143, 0) 34%),
        radial-gradient(circle at 88% 24%, rgba(128, 237, 255, 0.24) 0%, rgba(128, 237, 255, 0) 34%),
        linear-gradient(130deg, var(--hero-tone-1, #103f87) 0%, var(--hero-tone-2, #1c5fd1) 45%, var(--hero-tone-3, #0e1631) 100%);
    transition: background 0.9s ease;
    box-shadow: inset 0 -90px 120px rgba(3, 8, 20, 0.42);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(112deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 38%),
        radial-gradient(circle at 84% 76%, rgba(255, 148, 84, 0.2) 0%, rgba(255, 148, 84, 0) 31%),
        radial-gradient(circle at 18% 74%, rgba(116, 255, 228, 0.16) 0%, rgba(116, 255, 228, 0) 28%);
    background-size: 120% 120%, 100% 100%, 100% 100%;
    animation: heroSheenMove 12s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    right: -180px;
    top: -240px;
    background: radial-gradient(circle, rgba(130, 228, 255, 0.2) 0%, rgba(130, 228, 255, 0.04) 44%, rgba(130, 228, 255, 0) 70%);
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.95fr);
    gap: 44px;
    align-items: center;
}

.hero-content {
    max-width: 720px;
    padding: 8px 0;
    animation: heroCopyIn 0.55s ease-out both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.54);
    background: linear-gradient(95deg, rgba(7, 26, 61, 0.64) 0%, rgba(10, 38, 86, 0.72) 100%);
    box-shadow: inset 0 0 0 1px rgba(181, 248, 255, 0.2), 0 16px 26px rgba(0, 0, 0, 0.22);
    padding: 9px 18px;
    font-size: 0.78rem;
    letter-spacing: 0.65px;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-weight: 800;
}

.hero-badge::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(120deg, #ffd596 0%, #7bf2ff 100%);
    box-shadow: 0 0 14px rgba(123, 242, 255, 0.75);
}

.hero-title {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 800;
    line-height: 1.04;
    max-width: 700px;
    font-size: clamp(2.2rem, 3.8vw, 3.7rem);
    text-wrap: balance;
    letter-spacing: -0.02em;
}

.hero-title-line {
    display: block;
    text-shadow: 0 14px 28px rgba(2, 11, 39, 0.42);
}

.hero-title-line--accent {
    color: #ffffff;
    background: linear-gradient(94deg, #ffffff 0%, #d2f8ff 44%, #ffdca6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-title-line--brand {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.2em;
    color: #ffffff;
}

.hero-title-logo {
    width: clamp(150px, 18vw, 240px);
    height: auto;
    display: inline-block;
    transform: translateY(0.08em);
    filter: drop-shadow(0 12px 18px rgba(2, 11, 39, 0.36));
}

.hero-copy {
    margin: 16px 0 20px;
    max-width: 620px;
    color: rgba(244, 251, 255, 0.96);
    font-size: clamp(1.02rem, 1.38vw, 1.2rem);
    line-height: 1.62;
}

.hero-points {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.hero-points li {
    position: relative;
    padding-left: 28px;
    font-size: 0.93rem;
    color: #ecf8ff;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(120deg, #9dffca 0%, #7ce7ff 100%);
    box-shadow: 0 0 12px rgba(124, 231, 255, 0.65);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 20px;
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

.hero-btn--primary {
    color: #08122d;
    border: 1px solid rgba(255, 234, 190, 0.82);
    background: linear-gradient(110deg, #ffe6b2 0%, #6ad7ff 40%, #8af3df 100%);
    box-shadow: 0 18px 36px rgba(37, 191, 255, 0.4);
}

.hero-btn::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -18%;
    width: 38%;
    height: 340%;
    transform: rotate(20deg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.58) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.18s ease;
}

.hero-btn:hover::after {
    opacity: 1;
    animation: sweepLight 0.95s ease forwards;
}

.hero-btn--ghost {
    color: #ebf6ff;
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: rgba(9, 20, 48, 0.55);
    box-shadow: inset 0 0 0 1px rgba(177, 246, 255, 0.2);
}

.hero-btn--ghost:hover {
    border-color: rgba(196, 247, 255, 0.84);
    background: rgba(13, 31, 72, 0.72);
}

.hero-signal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 10px;
    margin: 0 0 14px;
}

.hero-signal {
    border-radius: 14px;
    padding: 10px 11px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(145deg, rgba(4, 17, 45, 0.52) 0%, rgba(4, 17, 45, 0.3) 100%);
    box-shadow: inset 0 0 0 1px rgba(148, 241, 255, 0.1);
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.hero-signal:hover {
    transform: translateY(-2px);
    border-color: rgba(196, 247, 255, 0.7);
    background: linear-gradient(145deg, rgba(4, 17, 45, 0.72) 0%, rgba(4, 17, 45, 0.42) 100%);
    box-shadow: 0 16px 24px rgba(2, 11, 34, 0.25);
}

.hero-signal strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.86rem;
    color: #f1fbff;
}

.hero-signal span {
    display: block;
    margin-top: 3px;
    color: #c3dcff;
    font-size: 0.76rem;
    line-height: 1.32;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.hero-proof-item {
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    background: rgba(8, 20, 46, 0.62);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25px;
}

.hero-visual {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    perspective: 1300px;
    transform-style: preserve-3d;
}

.hero-visual::before,
.hero-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-visual::before {
    width: 260px;
    height: 260px;
    right: -64px;
    top: -30px;
    border: 1px solid rgba(198, 250, 255, 0.36);
    opacity: 0.7;
    animation: heroOrbSpin 16s linear infinite;
}

.hero-visual::after {
    width: 200px;
    height: 200px;
    left: -70px;
    bottom: -42px;
    border: 1px dashed rgba(255, 214, 143, 0.42);
    opacity: 0.66;
    animation: heroOrbSpinReverse 12s linear infinite;
}

.hero-floating {
    position: absolute;
    z-index: 3;
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.25px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 24px rgba(4, 14, 39, 0.3);
}

.hero-floating--one {
    top: 6%;
    left: -8px;
    background: rgba(21, 42, 85, 0.72);
    transform: translateY(0);
}

.hero-floating--two {
    bottom: 6%;
    right: -6px;
    background: rgba(8, 24, 58, 0.88);
    color: #fef3dc;
    border-color: rgba(255, 209, 133, 0.75);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
    transform: translateY(0);
}

.carousel {
    position: relative;
    width: 100%;
    border-radius: 30px;
    padding: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.16));
    box-shadow: 0 40px 78px rgba(5, 15, 45, 0.54), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    transform: translateY(0) rotateY(-4deg) rotateX(1.2deg);
    transform-origin: center;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
    overflow: hidden;
    animation: heroFloatCard 6.2s ease-in-out infinite;
}

.hero-visual:hover .carousel {
    animation: none;
    transform: translateY(-5px) rotateY(-2deg) rotateX(0.8deg);
    box-shadow: 0 46px 82px rgba(6, 18, 52, 0.58), inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.carousel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.02) 38%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.carousel::after {
    content: "";
    position: absolute;
    width: 220%;
    height: 70%;
    left: -62%;
    top: -52%;
    transform: rotate(18deg);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.28) 45%, rgba(255, 255, 255, 0) 75%);
    animation: glassSweep 8.5s ease-in-out infinite;
    pointer-events: none;
}

.carousel:focus-visible {
    outline: 2px solid rgba(173, 247, 255, 0.86);
    outline-offset: 4px;
}

.slide {
    display: none;
    width: 100%;
    animation: fadeSlide 0.58s ease;
    position: relative;
}

.carousel .slide:first-child {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.slide img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    border-radius: 20px;
    border: 1px solid rgba(7, 41, 116, 0.2);
    background: linear-gradient(150deg, #ffffff 0%, #f6faff 52%, #edf6ff 100%);
    padding: 10px;
    transform: none;
}

.hero-kpis {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 12px;
    max-width: 100%;
}

.hero-kpi {
    background: linear-gradient(145deg, rgba(8, 18, 43, 0.62) 0%, rgba(7, 21, 49, 0.72) 100%);
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 16px;
    padding: 12px 12px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 18px 32px rgba(1, 8, 28, 0.32);
    transition: transform 0.24s ease, border-color 0.24s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-kpi:hover {
    transform: translateY(-3px);
    border-color: rgba(175, 250, 255, 0.8);
}

.hero-kpi:nth-child(2) {
    border-color: rgba(255, 214, 146, 0.52);
}

.hero-kpi:nth-child(3) {
    border-color: rgba(149, 255, 202, 0.52);
}

@keyframes heroCopyIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.hero-kpi strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.22rem;
}

.hero-kpi span {
    color: #e2eeff;
    font-size: 0.84rem;
    display: block;
    text-align: center;
}

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

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

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

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

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

    100% {
        background-position: 100% 100%, 100% 100%, 25% 0%;
    }
}

@keyframes sweepLight {
    0% {
        transform: translateX(-120%) rotate(20deg);
    }

    100% {
        transform: translateX(340%) rotate(20deg);
    }
}

@keyframes heroFloatCard {
    0%,
    100% {
        transform: translateY(0) rotateY(-4deg) rotateX(1.2deg);
    }

    50% {
        transform: translateY(-5px) rotateY(-1.8deg) rotateX(1deg);
    }
}

@keyframes glassSweep {
    0%,
    65%,
    100% {
        transform: translateX(0) rotate(18deg);
    }

    30% {
        transform: translateX(25%) rotate(18deg);
    }
}

.services-section,
.repuestos-section,
.content,
.location {
    position: relative;
}

.services-title,
.repuestos-title,
.ventajas-title,
.location h3 {
    letter-spacing: -0.02em;
}

/* Services */
.services-section {
    margin: 8px 8% 0;
    padding: 88px 8%;
    border-radius: 30px;
    border: 1px solid rgba(146, 233, 255, 0.24);
    background:
        radial-gradient(circle at 10% 14%, rgba(133, 239, 255, 0.11) 0%, rgba(133, 239, 255, 0) 32%),
        radial-gradient(circle at 90% 84%, rgba(255, 201, 148, 0.1) 0%, rgba(255, 201, 148, 0) 34%),
        linear-gradient(150deg, rgba(9, 21, 54, 0.96) 0%, rgba(6, 15, 43, 0.98) 100%);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 36%);
}

.services-title {
    margin: 0;
    text-align: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    color: #e6f9ff;
    letter-spacing: 0.4px;
    text-shadow: 0 12px 28px rgba(4, 14, 38, 0.32);
}

.section-title-line {
    display: block;
    line-height: 1.02;
    -webkit-text-fill-color: currentColor;
}

.section-title-line--accent {
    color: #9ff3ff;
    text-shadow: 0 0 18px rgba(136, 219, 255, 0.32);
}

.section-title-line--sub {
    color: #d9e8ff;
    font-size: clamp(1rem, 1.7vw, 1.35rem);
    margin-top: 6px;
    letter-spacing: 0.3px;
}

.services-subtitle {
    max-width: 760px;
    text-align: center;
    margin: 14px auto 48px;
    color: #cbdcfb;
    font-size: 1.06rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    perspective: 1200px;
}

.service-card {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    color: inherit;
    transform-style: preserve-3d;
}

.service-card-inner {
    background: linear-gradient(160deg, rgba(16, 30, 70, 0.96) 0%, rgba(13, 25, 58, 0.98) 100%);
    border: 1px solid rgba(137, 232, 255, 0.34);
    border-radius: 22px;
    padding: 20px;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    box-shadow: 0 18px 36px rgba(2, 10, 30, 0.36);
    position: relative;
    overflow: hidden;
}

.service-card-inner::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(113, 232, 255, 0) 0%, rgba(113, 232, 255, 0.75) 45%, rgba(255, 198, 139, 0.7) 85%, rgba(255, 198, 139, 0) 100%);
    pointer-events: none;
}

.service-card-inner::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 240, 255, 0.24) 0%, rgba(138, 240, 255, 0.02) 60%, rgba(138, 240, 255, 0) 74%);
    pointer-events: none;
}

.service-card-inner:hover {
    transform: translateY(-9px) scale(1.012);
    border-color: rgba(169, 241, 255, 0.74);
    box-shadow: 0 26px 50px rgba(11, 80, 167, 0.38);
    background: linear-gradient(160deg, rgba(20, 38, 84, 0.98) 0%, rgba(16, 29, 67, 0.98) 100%);
}

.service-card:focus-visible .service-card-inner {
    outline: 2px solid #5ce1e6;
    outline-offset: 4px;
}

.service-img-wrapper {
    border-radius: 16px;
    background: linear-gradient(150deg, #ffffff 0%, #f4f9ff 56%, #eaf4ff 100%);
    border: 1px solid rgba(26, 68, 158, 0.18);
    padding: 12px;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: saturate(1.12) contrast(1.02) brightness(1.03) drop-shadow(0 10px 18px rgba(21, 63, 144, 0.18));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.service-img-wrapper:hover img {
    transform: scale(1.03);
    filter: saturate(1.14) contrast(1.03) drop-shadow(0 14px 24px rgba(19, 72, 166, 0.22));
}

.is-hidden {
    display: none;
}

.service-emoji {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: linear-gradient(140deg, rgba(92, 225, 230, 0.22), rgba(255, 187, 118, 0.26));
    border: 1px solid rgba(155, 236, 255, 0.56);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.service-card-inner h3 {
    margin: 12px 0 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.24rem;
    color: #eaf8ff;
}

.service-card-inner p {
    margin: 0;
    color: #c2d3f4;
    font-size: 0.93rem;
}

/* Repuestos */
.repuestos-section {
    margin: 6px 8% 0;
    padding: 38px 26px;
    border-radius: 26px;
    border: 1px solid rgba(247, 177, 68, 0.28);
    background:
        radial-gradient(circle at 82% 18%, rgba(247, 177, 68, 0.12) 0%, rgba(247, 177, 68, 0) 34%),
        radial-gradient(circle at 10% 82%, rgba(97, 223, 141, 0.08) 0%, rgba(97, 223, 141, 0) 38%),
        linear-gradient(165deg, rgba(15, 17, 40, 0.96) 0%, rgba(21, 20, 42, 0.96) 100%);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.repuestos-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 211, 153, 0.08) 0%, rgba(255, 211, 153, 0) 30%, rgba(117, 232, 185, 0.06) 70%, rgba(117, 232, 185, 0) 100%);
}

.repuestos-title {
    margin: 0;
    text-align: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    color: #ffe8be;
}

.repuestos-subtitle {
    margin: 10px auto 24px;
    text-align: center;
    max-width: 860px;
    color: #f4e9d4;
}

.catalogo-pdf-card {
    display: grid;
    grid-template-columns: 1.3fr auto;
    gap: 18px;
    align-items: center;
    padding: 20px;
    margin: 0 0 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 212, 146, 0.48);
    background:
        radial-gradient(circle at 92% 10%, rgba(255, 212, 146, 0.2) 0%, rgba(255, 212, 146, 0) 30%),
        linear-gradient(135deg, rgba(43, 33, 53, 0.94) 0%, rgba(28, 24, 47, 0.98) 100%);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: border-color 0.22s ease, transform 0.22s ease;
}

.catalogo-pdf-card:hover {
    border-color: rgba(255, 212, 146, 0.58);
    transform: translateY(-2px);
}

.catalogo-pdf-card:focus-visible {
    outline: 2px solid rgba(255, 220, 170, 0.85);
    outline-offset: 3px;
}

.catalogo-pdf-copy h3 {
    margin: 2px 0 6px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    color: #fff1d5;
    line-height: 1.2;
}

.catalogo-pdf-copy p {
    margin: 0;
    color: #eadbc0;
    font-size: 0.9rem;
}

.catalogo-pdf-kicker {
    display: inline-block;
    border-radius: 999px;
    padding: 4px 10px;
    border: 1px solid rgba(255, 212, 146, 0.5);
    background: rgba(255, 212, 146, 0.12);
    color: #ffe9be;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.catalogo-pdf-actions {
    display: grid;
    gap: 8px;
    justify-items: end;
}

.catalogo-pdf-btn {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 0.84rem;
    font-weight: 800;
    color: #111e3f;
    background: linear-gradient(110deg, #ffd79b 0%, #8cf2cd 100%);
    box-shadow: 0 12px 26px rgba(255, 193, 108, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalogo-pdf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(255, 193, 108, 0.32);
}

.catalogo-pdf-link {
    color: #ffdba8;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.catalogo-pdf-link:hover {
    color: #fff2d8;
    text-decoration: underline;
}

.repuestos-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.repuestos-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 920px;
}

.repuestos-filter-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 215, 145, 0.5);
    color: #ffebcc;
    border-radius: 999px;
    padding: 8px 15px;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow: inset 0 0 0 1px rgba(255, 241, 219, 0.08);
}

.repuestos-filter-btn:hover {
    background: rgba(247, 177, 68, 0.16);
    transform: translateY(-1px);
}

.repuestos-filter-btn.is-active {
    background: linear-gradient(120deg, rgba(247, 177, 68, 0.24), rgba(97, 223, 141, 0.24));
    color: #fff9ea;
    border-color: rgba(247, 177, 68, 0.85);
    box-shadow: 0 10px 24px rgba(247, 177, 68, 0.25), inset 0 0 0 1px rgba(255, 244, 224, 0.24);
}

.repuestos-count {
    margin: 0;
    color: #ffe3b6;
    font-size: 0.9rem;
}

.repuestos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}

.repuesto-card {
    background: linear-gradient(165deg, rgba(31, 23, 43, 0.96) 0%, rgba(21, 17, 35, 0.98) 100%);
    border: 1px solid rgba(255, 214, 147, 0.26);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    position: relative;
    cursor: pointer;
}

.repuesto-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 214, 147, 0.56);
    box-shadow: 0 18px 36px rgba(247, 177, 68, 0.2);
}

.repuesto-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0);
    transition: border-color 0.28s ease;
}

.repuesto-card:hover::after {
    border-color: rgba(255, 230, 180, 0.35);
}

.repuesto-media {
    height: 156px;
    background: linear-gradient(145deg, #ffffff 0%, #eef4ff 100%);
    padding: 10px;
}

.repuesto-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.repuesto-body {
    padding: 13px;
}

.repuesto-tag {
    display: inline-block;
    border-radius: 999px;
    padding: 3px 9px;
    font-size: 0.68rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(120deg, #cf8a25 0%, #6fcf87 100%);
}

.repuesto-body h3 {
    margin: 8px 0 6px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    color: #fff8ec;
}

.repuesto-body p {
    margin: 0;
    color: #efd8b6;
    font-size: 0.88rem;
}

.repuesto-spec {
    margin-top: 8px;
    color: #eecf9f;
    font-size: 0.82rem;
}

.repuesto-toggle {
    margin-top: 10px;
    background: linear-gradient(125deg, rgba(255, 193, 92, 0.18), rgba(110, 220, 154, 0.2));
    border: 1px solid rgba(255, 214, 147, 0.72);
    color: #fff5de;
    border-radius: 9px;
    padding: 6px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.22s ease, background 0.22s ease;
}

.repuesto-toggle:hover {
    border-color: rgba(255, 241, 215, 0.95);
    background: linear-gradient(125deg, rgba(255, 193, 92, 0.3), rgba(110, 220, 154, 0.3));
}

.repuesto-details {
    margin-top: 8px;
    border-top: 1px dashed rgba(255, 214, 147, 0.32);
    padding-top: 8px;
    display: none;
}

.repuesto-card.is-expanded .repuesto-details {
    display: block;
}

.repuesto-details ul {
    margin: 0;
    padding-left: 16px;
    color: #ffe9ca;
    font-size: 0.81rem;
}

.repuesto-modal-content {
    grid-template-columns: 1.12fr 0.88fr;
}

.repuesto-modal-left {
    display: flex;
    flex-direction: column;
}

.repuesto-modal-carousel {
    min-height: 340px;
}

.repuesto-modal-nav {
    margin-top: 10px;
}

.repuesto-angle-indicator {
    margin: 8px 0 0;
    text-align: center;
    color: #ffddb1;
    font-size: 0.82rem;
    letter-spacing: 0.35px;
}

.repuesto-modal-right {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.repuesto-modal-tag {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    background: linear-gradient(120deg, #cf8a25 0%, #6fcf87 100%);
}

.repuesto-modal-spec {
    margin: 0;
    color: #ffd7a3;
    font-size: 0.9rem;
    font-weight: 700;
}

.repuesto-modal-source {
    margin-top: 4px;
    border-top: 1px dashed rgba(255, 214, 147, 0.35);
    padding-top: 10px;
}

.repuesto-modal-source h3 {
    margin: 0 0 7px;
    font-size: 0.88rem;
    color: #ffe9c7;
}

.repuesto-modal-source ul {
    margin: 0 0 10px;
    padding-left: 17px;
    color: #d5efff;
    font-size: 0.84rem;
}

.repuesto-modal-source-note {
    margin: 0 0 10px;
    color: #b8cae8;
    font-size: 0.75rem;
}

#repuestoModalWhatsappLink {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border-radius: 9px;
    border: 1px solid rgba(112, 238, 156, 0.6);
    background: rgba(67, 181, 107, 0.15);
    color: #d9ffe7;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 7px 10px;
}

#repuestoModalWhatsappLink:hover {
    background: rgba(67, 181, 107, 0.24);
}

/* Highlights */
.content {
    margin: 74px auto;
    max-width: 1160px;
    padding: 68px 6%;
    border-radius: 32px;
    border: 1px solid rgba(126, 235, 255, 0.28);
    background:
        radial-gradient(circle at 10% 16%, rgba(99, 228, 255, 0.16) 0%, rgba(99, 228, 255, 0) 34%),
        radial-gradient(circle at 90% 84%, rgba(255, 185, 121, 0.14) 0%, rgba(255, 185, 121, 0) 36%),
        linear-gradient(145deg, rgba(10, 23, 57, 0.98) 0%, rgba(11, 19, 44, 0.98) 100%);
    box-shadow: 0 28px 58px rgba(0, 0, 0, 0.36);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.content::before,
.content::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.content::selection {
    background: rgba(255, 229, 181, 0.3);
}

.content::before {
    width: 320px;
    height: 320px;
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(148, 239, 255, 0.24) 0%, rgba(148, 239, 255, 0.02) 54%, rgba(148, 239, 255, 0) 70%);
}

.content::after {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -70px;
    background: radial-gradient(circle, rgba(255, 200, 143, 0.2) 0%, rgba(255, 200, 143, 0.02) 56%, rgba(255, 200, 143, 0) 72%);
}

.content > * {
    position: relative;
    z-index: 1;
}

.content-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
}

.content-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    border: 1px solid rgba(157, 239, 255, 0.5);
    background: rgba(116, 224, 255, 0.14);
    color: #d6f7ff;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 7px 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.content-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #73efff;
    box-shadow: 0 0 12px rgba(115, 239, 255, 0.9);
}

.content h2,
.ventajas-title {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    color: #dff6ff;
}

.content > p {
    margin: 12px auto 22px;
    max-width: 780px;
    color: #d2e3ff;
}

.why-layout {
    display: grid;
    grid-template-columns: minmax(300px, 1.05fr) minmax(260px, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.why-spotlight {
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(139, 238, 255, 0.34);
    background:
        linear-gradient(160deg, rgba(10, 35, 71, 0.76) 0%, rgba(18, 33, 74, 0.66) 100%),
        linear-gradient(120deg, rgba(115, 239, 255, 0.08) 0%, rgba(255, 194, 137, 0.1) 100%);
    box-shadow: 0 16px 34px rgba(1, 10, 33, 0.25);
}

.why-spotlight h3 {
    margin: 0 0 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.3rem, 2.1vw, 1.8rem);
    line-height: 1.2;
    color: #ecf9ff;
}

.why-spotlight p {
    margin: 0 0 16px;
    color: #cae1ff;
    font-size: 0.95rem;
}

.why-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.why-badges span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #ebfaff;
    border: 1px solid rgba(130, 238, 255, 0.45);
    background: rgba(115, 232, 255, 0.16);
}

.why-badges span:nth-child(2) {
    border-color: rgba(255, 204, 137, 0.52);
    background: rgba(255, 204, 137, 0.16);
}

.why-badges span:nth-child(3) {
    border-color: rgba(155, 255, 197, 0.55);
    background: rgba(155, 255, 197, 0.14);
}

.why-list {
    display: grid;
    gap: 10px;
}

.why-list-item {
    border-radius: 14px;
    padding: 14px 14px 14px 38px;
    background: rgba(34, 54, 96, 0.28);
    border: 1px solid rgba(129, 180, 255, 0.2);
    position: relative;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.why-list-item:hover {
    transform: translateY(-2px);
    border-color: rgba(153, 203, 255, 0.42);
    background: rgba(42, 64, 110, 0.32);
}

.why-list-item::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    left: 14px;
    top: 18px;
    background: linear-gradient(120deg, #8fffe4 0%, #66ddff 100%);
    box-shadow: 0 0 14px rgba(102, 221, 255, 0.56);
}

.why-list-item h3 {
    margin: 0 0 6px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    color: #ebf7ff;
}

.why-list-item p {
    margin: 0;
    color: #c1d8ff;
    font-size: 0.86rem;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.highlight-card {
    border-radius: 18px;
    padding: 18px;
    text-align: left;
    background: linear-gradient(150deg, rgba(86, 138, 255, 0.12) 0%, rgba(86, 138, 255, 0.05) 100%);
    border: 1px solid rgba(154, 191, 255, 0.3);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.highlight-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(150, 225, 255, 0.42);
    box-shadow: 0 12px 24px rgba(7, 18, 45, 0.24);
}

.highlight-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #f6fdff;
    border: 1px solid rgba(149, 239, 255, 0.54);
    background: linear-gradient(130deg, rgba(85, 204, 255, 0.3) 0%, rgba(255, 183, 118, 0.34) 100%);
    margin-bottom: 10px;
}

.highlight-card h3 {
    margin: 0 0 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.04rem;
    color: #dff7ff;
}

.highlight-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #bdd0f4;
}

.trust-row {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 12px;
}

.trust-pill {
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(13, 29, 66, 0.44);
    border: 1px solid rgba(120, 226, 255, 0.24);
}

.trust-pill strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.06rem;
    color: #f6fdff;
}

.trust-pill span {
    display: block;
    margin-top: 3px;
    color: #c1d8ff;
    font-size: 0.78rem;
}

/* Location */
.location {
    margin: 0 auto 64px;
    max-width: 920px;
    padding: 32px;
    border-radius: 26px;
    background: linear-gradient(160deg, rgba(9, 20, 46, 0.95) 0%, rgba(8, 16, 39, 0.96) 100%);
    border: 1px solid rgba(54, 210, 255, 0.2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.location::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(159, 243, 255, 0.08) 0%, rgba(159, 243, 255, 0) 34%, rgba(255, 204, 137, 0.08) 76%, rgba(255, 204, 137, 0) 100%);
}

.location h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.8rem;
    color: #e9f6ff;
}

.location > p {
    margin: 8px 0 22px;
    color: #bfd3f7;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.location-info {
    display: grid;
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(54, 210, 255, 0.14);
    padding: 12px;
    border-radius: 14px;
}

.info-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(54, 210, 255, 0.18);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.8rem;
}

.info-item strong {
    display: block;
    color: #ebf8ff;
    font-size: 0.9rem;
}

.info-item p {
    margin: 4px 0 0;
    color: #bdd0f4;
    font-size: 0.88rem;
}

.location-map iframe {
    border: 0;
    border-radius: 14px;
    width: 100%;
}

/* Footer */
.site-footer {
    margin-top: 34px;
    border-top: 1px solid rgba(54, 210, 255, 0.14);
    background: linear-gradient(180deg, rgba(5, 11, 31, 0.85) 0%, rgba(5, 10, 24, 0.98) 100%);
}

.footer-content {
    max-width: 1160px;
    margin: 0 auto;
    padding: 30px 6% 18px;
    display: grid;
    gap: 16px;
    grid-template-columns: 1.1fr 1fr 1fr;
}

.footer-col h4 {
    margin: 0 0 8px;
    font-family: "Space Grotesk", sans-serif;
    color: #e7f9ff;
}

.footer-col p,
.footer-col a {
    margin: 0 0 8px;
    color: #a9c1ed;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(54, 210, 255, 0.12);
    text-align: center;
    padding: 12px 10px 16px;
    color: #8fa6d7;
    font-size: 0.85rem;
}

/* WhatsApp */
.whatsapp {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
    z-index: 980;
    transition: transform 0.2s ease;
}

.whatsapp img {
    width: 100%;
    height: 100%;
    display: block;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2200;
    background: rgba(5, 8, 18, 0.8);
    backdrop-filter: blur(4px);
}

.pdf-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2300;
    background: rgba(3, 9, 20, 0.86);
    backdrop-filter: blur(5px);
    padding: 3.5vh 2vw;
}

.pdf-modal-content {
    position: relative;
    width: min(1180px, 96vw);
    height: min(90vh, 900px);
    margin: 0 auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 214, 147, 0.35);
    background: linear-gradient(160deg, rgba(23, 18, 36, 0.98) 0%, rgba(17, 16, 32, 0.98) 100%);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.46);
    padding: 18px 18px 14px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 10px;
}

.pdf-modal-content h2 {
    margin: 0;
    padding-right: 44px;
    font-family: "Space Grotesk", sans-serif;
    color: #ffe9be;
    font-size: clamp(1.05rem, 2vw, 1.4rem);
}

.pdf-close-btn {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: #f4f8ff;
    font-size: 1.4rem;
    cursor: pointer;
}

.pdf-close-btn:hover {
    background: rgba(255, 214, 147, 0.18);
}

.catalogo-visual-content {
    grid-template-rows: auto 1fr auto;
}

.catalogo-visual-stage-wrap {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 10px;
    min-height: 0;
}

.catalogo-visual-stage {
    border-radius: 12px;
    border: 1px solid rgba(255, 214, 147, 0.2);
    background: linear-gradient(150deg, #fefefe 0%, #f5f7fb 100%);
    padding: 10px;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#catalogoVisualImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.catalogo-visual-nav {
    display: flex;
    gap: 10px;
}

.catalogo-nav-btn {
    flex: 1;
    border: 1px solid rgba(255, 214, 147, 0.36);
    background: rgba(255, 214, 147, 0.12);
    color: #ffe9be;
    border-radius: 10px;
    padding: 8px 10px;
    font-weight: 700;
    font-size: 0.86rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.catalogo-nav-btn:hover {
    border-color: rgba(255, 214, 147, 0.64);
    background: rgba(255, 214, 147, 0.2);
}

.catalogo-visual-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.catalogo-thumb {
    border: 1px solid rgba(255, 214, 147, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffe9be;
    padding: 8px;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.catalogo-thumb:hover {
    border-color: rgba(255, 214, 147, 0.56);
    transform: translateY(-2px);
}

.catalogo-thumb.is-active {
    border-color: rgba(255, 214, 147, 0.74);
    background: rgba(255, 214, 147, 0.12);
}

.catalogo-thumb img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-bottom: 6px;
}

.catalogo-thumb span {
    display: block;
    font-size: 0.76rem;
    line-height: 1.25;
    font-weight: 700;
}

.modal-content {
    width: min(1020px, 92vw);
    margin: 7vh auto;
    background: linear-gradient(160deg, #0f1f45 0%, #0c1736 100%);
    border: 1px solid rgba(92, 225, 230, 0.28);
    border-radius: 20px;
    display: flex;
    gap: 20px;
    padding: 22px;
    position: relative;
    box-shadow: 0 28px 66px rgba(0, 0, 0, 0.45);
}

.close-modal {
    position: absolute;
    right: 14px;
    top: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    color: #d8ebff;
    font-size: 1.4rem;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus-visible {
    background: rgba(92, 225, 230, 0.2);
}

.modal-left,
.modal-right {
    flex: 1;
}

.modal-carousel {
    border-radius: 14px;
    background: linear-gradient(150deg, #ffffff 0%, #ecf4ff 100%);
    border: 1px solid rgba(24, 72, 168, 0.24);
    padding: 14px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-carousel img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.modal-nav-btns {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}

.modal-btn {
    flex: 1;
    border-radius: 10px;
    border: 1px solid rgba(92, 225, 230, 0.28);
    background: rgba(92, 225, 230, 0.12);
    color: #e6f8ff;
    font-weight: 700;
    padding: 8px 10px;
    cursor: pointer;
}

.modal-btn:hover {
    background: rgba(92, 225, 230, 0.2);
}

.modal-right h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-family: "Space Grotesk", sans-serif;
}

.modal-right p {
    margin-top: 0;
    color: #c1d7ff;
}

.modal-right ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: #e3f1ff;
}

.modal-right li {
    margin-bottom: 7px;
}

/* Reveal animations */
.reveal-up {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Lazy images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.35s ease;
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
    opacity: 1;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #050b1f;
}

::-webkit-scrollbar-thumb {
    background: rgba(92, 225, 230, 0.4);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(92, 225, 230, 0.66);
}

/* Responsive */
@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        margin-top: 6px;
    }

    .hero .carousel {
        max-width: 760px;
        transform: none;
        min-height: 500px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .hero-kpis {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

    .why-layout {
        grid-template-columns: 1fr;
    }

    .trust-row {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
    }
}

@media (max-width: 860px) {
    .sidebar-nav {
        display: none;
    }

    .header {
        padding: 12px 4%;
    }

    .center-text {
        display: none;
    }

    .hero {
        padding: 56px 4% 44px;
    }

    .hero-title {
        font-size: clamp(1.7rem, 6vw, 2.3rem);
    }

    .hero-copy {
        font-size: 1rem;
    }

    .hero-actions {
        gap: 8px;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-signal-grid {
        grid-template-columns: 1fr;
    }

    .hero-floating {
        display: none;
    }

    .carousel,
    .hero-visual:hover .carousel {
        transform: none;
        animation: none;
    }

    .services-section {
        margin: 0 4%;
        padding: 58px 4%;
    }

    .repuestos-section {
        margin: 0 4%;
        padding: 24px 16px;
    }

    .catalogo-pdf-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }

    .catalogo-pdf-actions {
        justify-items: start;
    }

    .content {
        padding: 46px 4%;
        margin: 54px 4%;
    }

    .content-head {
        text-align: left;
        margin-bottom: 22px;
    }

    .content > p {
        margin-left: 0;
        margin-right: 0;
    }

    .why-spotlight {
        padding: 20px;
    }

    .location {
        margin: 0 4% 48px;
        padding: 22px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        padding: 28px 4% 14px;
    }

    .modal-content {
        display: block;
        margin: 4vh auto;
        padding: 18px;
    }

    .pdf-modal {
        padding: 2.5vh 2vw;
    }

    .pdf-modal-content {
        width: min(1200px, 98vw);
        height: min(92vh, 900px);
        padding: 14px 12px 10px;
    }

    .catalogo-visual-thumbs {
        grid-template-columns: 1fr;
        max-height: 220px;
        overflow: auto;
    }

    .catalogo-thumb {
        display: grid;
        grid-template-columns: 84px 1fr;
        gap: 10px;
        align-items: center;
    }

    .catalogo-thumb img {
        height: 56px;
        margin-bottom: 0;
    }

    .modal-left {
        margin-bottom: 16px;
    }

    .modal-carousel {
        min-height: 250px;
    }

    .modal-carousel img {
        max-height: 220px;
    }
}

@media (max-width: 580px) {
    .hero-kpis {
        grid-template-columns: 1fr;
    }

    .slide img {
        height: 270px;
        border-radius: 0;
        padding: 0;
    }

    .repuestos-filter-btn {
        font-size: 0.76rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .hero-points li {
        font-size: 0.88rem;
    }

    .hero-signal strong {
        font-size: 0.82rem;
    }

    .hero-signal span {
        font-size: 0.74rem;
    }

    .carousel {
        min-height: 270px;
        padding: 0;
    }

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

    .trust-row {
        grid-template-columns: 1fr;
    }

    .whatsapp {
        width: 62px;
        height: 62px;
        right: 18px;
        bottom: 18px;
    }

    .catalogo-pdf-btn {
        width: 100%;
    }

    .catalogo-visual-nav {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    body::after,
    .hero::before,
    .carousel::after,
    .hero-content,
    .hero-floating,
    .carousel,
    .hero-btn::after {
        animation: none !important;
    }

    .reveal-up,
    .reveal-up.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

}



