        :root {
            --bg: #050505;
            --bg-soft: #0f0f0f;
            --bg-panel: #171717;
            --surface: #0b1018;
            --text: #f6f7fb;
            --muted: #c4cad2;
            --line: rgba(255, 255, 255, .08);
            --blue: #15a9e8;
            --blue-dark: #0f8bc0;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--bg);
            color: var(--text);
            font-family: 'Sora', sans-serif;
            overflow-x: hidden;
        }

        a {
            color: inherit;
        }

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

        .topbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 72px;
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 0 24px 0 140px;
            background: rgba(4, 8, 18, .92);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            backdrop-filter: blur(16px);
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            min-width: 180px;
        }

        .brand img {
            width: 38px;
            height: 38px;
            object-fit: contain;
        }

        .brand span {
            font-size: 13px;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: #f8fafc;
        }

        .topnav {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .topnav a {
            text-decoration: none;
            color: #cbd5e1;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .04em;
            text-transform: uppercase;
            transition: color .2s ease;
        }

        .topnav a:hover {
            color: var(--blue);
        }

        .top-btn {
            background: var(--blue);
        }

        .shell {
            padding-left: 120px;
        }

        .sidebar {
            position: fixed;
            left: 0;
            top: 72px;
            width: 120px;
            height: calc(100vh - 72px);
            background: rgba(4, 8, 18, .92);
            border-right: 1px solid rgba(255, 255, 255, .08);
            z-index: 999;
            display: flex;
            flex-direction: column;
            backdrop-filter: blur(16px);
        }

        .rail-logo {
            min-height: 76px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            background: rgba(255, 255, 255, .02);
        }

        .rail-logo img {
            width: 56px;
            height: auto;
        }

        .rail-categories {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .rail-item {
            flex: 1 1 auto;
            min-height: 110px;
            padding: 14px 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            color: #e2e8f0;
            text-decoration: none;
            text-align: center;
            transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
        }

        .rail-item:hover {
            background: rgba(21, 169, 232, .10);
            transform: translateY(-1px);
            box-shadow: inset 4px 0 0 var(--blue);
        }

        .rail-item:hover i,
        .rail-item:hover span {
            color: #ffffff !important;
            fill: #ffffff !important;
        }

        .rail-item.is-active {
            background: rgba(21, 169, 232, .12);
            box-shadow: inset 4px 0 0 var(--blue);
        }

        .rail-item i {
            color: var(--blue);
            font-size: 20px;
        }

        .rail-item img {
            width: 42px;
            height: 42px;
            object-fit: contain;
            filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .35));
        }

        .rail-item span {
            font-size: 11px;
            font-weight: 700;
            line-height: 1.25;
            color: #e2e8f0;
        }

        .rail-item.rail-category {
            flex: 0 0 auto;
            min-height: 96px;
            padding: 12px 8px;
        }

        .rail-item.rail-category img {
            width: 40px;
            height: 40px;
        }

        .content {
            min-height: 100vh;
        }

        .hero {
            position: relative;
            min-height: calc(100vh - 72px);
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, .06);
        }

        .hero-video {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            background: #000;
        }

        .hero-video::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .74));
            z-index: 2;
        }

        .hero-video iframe,
        .hero-video video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
            object-fit: cover;
            transform: scale(1.05);
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .12), transparent 24%), linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .74));
            z-index: 1;
        }

        .hero-inner {
            position: relative;
            z-index: 3;
            width: min(100%, 980px);
            padding: 60px 24px 88px;
            text-align: center;
        }

        .section-light {
            background:
                radial-gradient(circle at top left, rgba(15, 162, 231, .12), transparent 32%),
                radial-gradient(circle at bottom right, rgba(36, 200, 226, .10), transparent 28%),
                linear-gradient(180deg, #070b12 0%, #0b1018 100%);
            color: #e5e7eb;
            padding: 96px 0;
        }

        .container {
            width: min(1280px, calc(100% - 48px));
            margin: 0 auto;
        }

        .light-grid {
            display: grid;
            grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
            gap: 40px;
            align-items: stretch;
        }

        .feature-stage {
            display: grid;
            grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
            gap: 28px;
            align-items: stretch;
        }

        .feature-copy {
            background: rgba(8, 12, 22, .92);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 30px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
            padding: 44px;
            backdrop-filter: blur(14px);
        }

        .feature-side {
            display: grid;
            gap: 18px;
        }

        .feature-blue {
            background: linear-gradient(180deg, rgba(12, 20, 36, .98), rgba(9, 16, 30, .98));
            border: 1px solid rgba(51, 198, 255, .35);
            border-radius: 30px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
            padding: 24px;
            overflow: hidden;
        }

        .feature-red {
            background: linear-gradient(180deg, rgba(24, 10, 14, .98), rgba(18, 8, 10, .98));
            border: 1px solid rgba(255, 91, 91, .32);
            border-radius: 30px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
            padding: 24px;
        }

        .feature-blue-head {
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 12px;
            margin-bottom: 18px;
        }

        .feature-badge {
            display: inline-flex;
            align-items: center;
            padding: 10px 16px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .06);
            box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
            color: #8fd3ff;
            font-size: 13px;
            font-weight: 900;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

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

        .feature-mod-card {
            background: rgba(8, 12, 22, .95);
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 16px 36px rgba(0, 0, 0, .28);
            border: 1px solid rgba(255, 255, 255, .08);
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }

        .feature-mod-card img {
            width: 100%;
            height: 145px;
            object-fit: cover;
            display: block;
        }

        .feature-mod-card .mod-body {
            padding: 14px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            min-height: 100%;
        }

        .feature-mod-card .mod-body strong {
            color: #f8fafc;
            font-size: 16px;
            line-height: 1.25;
        }

        .feature-mod-card .mod-body span {
            color: #aab4c3;
            font-size: 13px;
            line-height: 1.55;
        }

        .feature-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 24px;
        }

        .feature-metric {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .05);
            color: #dbeafe;
            font-size: 13px;
            font-weight: 800;
            border: 1px solid rgba(255, 255, 255, .07);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
        }

        .feature-metric i {
            color: #8fd3ff;
        }

        .feature-red .light-kicker {
            margin-bottom: 14px;
        }

        .feature-red .light-title {
            max-width: 12ch;
        }

        .feature-red .light-desc {
            max-width: none;
            margin-top: 16px;
        }

        .feature-red .light-points {
            margin-top: 18px;
        }

        .feature-copy .light-desc {
            max-width: 58ch;
        }

        .feature-copy .light-rule {
            margin-top: 24px;
        }

        .light-panel {
            background: rgba(8, 12, 22, .92);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 30px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
            padding: 44px;
            backdrop-filter: blur(14px);
        }

        .light-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #7cc8ff;
            font-size: 13px;
            letter-spacing: .18em;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .light-kicker::before {
            content: "";
            width: 34px;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, #0fa2e7, #24c8e2);
        }

        .light-title {
            margin: 0;
            color: #f8fafc;
            font-size: clamp(34px, 3.8vw, 60px);
            line-height: .98;
            font-weight: 800;
            letter-spacing: -.05em;
            max-width: 10ch;
        }

        .light-desc {
            max-width: 540px;
            margin: 18px 0 0;
            color: #b7c1cf;
            font-size: clamp(17px, 1.45vw, 22px);
            line-height: 1.45;
            font-weight: 400;
        }

        .light-rule {
            width: 74px;
            height: 4px;
            margin-top: 28px;
            background: linear-gradient(90deg, #0fa2e7, #24c8e2);
            border-radius: 999px;
        }

        .light-copy-right {
            color: #d7deea;
            font-size: 17px;
            line-height: 1.8;
            padding-top: 4px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 14px;
        }

        .light-copy-right p {
            margin: 0;
            max-width: 60ch;
        }

        .light-points {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 8px;
        }

        .light-points span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(21, 169, 232, .10);
            color: #d8f2ff;
            font-size: 13px;
            font-weight: 700;
        }

        .light-showcase {
            margin-top: 72px;
            position: relative;
        }

        .light-gallery {
            display: flex;
            gap: 0;
            align-items: stretch;
            min-height: 380px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            scrollbar-width: none;
            box-shadow: 0 18px 32px rgba(0, 0, 0, .34);
            background: #05070d;
        }

        .light-gallery::-webkit-scrollbar {
            display: none;
        }

        .light-gallery-card {
            position: relative;
            overflow: hidden;
            background: #0b1220;
            flex: 0 0 auto;
            border-radius: 24px;
        }

        .light-gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .25s ease, filter .25s ease;
        }

        .light-gallery-card:hover img {
            transform: scale(1.03);
        }

        .light-gallery-card.large::after,
        .light-gallery-card.medium::after,
        .light-gallery-card.small::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.42));
        }

        .light-gallery-card.large .caption {
            position: absolute;
            left: 30px;
            bottom: 26px;
            z-index: 2;
            max-width: 380px;
            color: #fff;
        }

        .light-gallery-card.large .caption strong {
            display: block;
            font-size: 18px;
            line-height: 1.2;
            margin-bottom: 8px;
        }

        .light-gallery-card.large .caption span {
            font-size: 15px;
            line-height: 1.45;
            color: rgba(255,255,255,.92);
        }

        .light-gallery-card.medium .caption,
        .light-gallery-card.small .caption {
            display: none;
        }

        .light-gallery-card.medium {
            border-left: 2px solid rgba(255,255,255,.18);
            border-right: 2px solid rgba(255,255,255,.18);
        }

        .light-gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border: 0;
            border-radius: 999px;
            background: #11a2e0;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 16px 24px rgba(17, 162, 224, .28);
            z-index: 3;
        }

        .light-gallery-nav.prev {
            left: -24px;
        }

        .light-gallery-nav.next {
            right: -24px;
        }

        .light-gallery-nav:hover {
            filter: brightness(1.04);
        }

        .light-bullet i {
            color: var(--blue);
        }

        .search-card {
            background: rgba(8, 12, 22, .95);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 22px;
            padding: 24px;
            box-shadow: 0 24px 52px rgba(0, 0, 0, .24);
        }

        .search-card h3 {
            margin: 0 0 10px;
            color: #f8fafc;
            font-size: 18px;
            font-weight: 800;
        }

        .search-card p {
            margin: 0 0 18px;
            color: #b7c1cf;
            line-height: 1.7;
        }

        .fake-select {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 14px;
            padding: 13px 16px;
            margin-bottom: 12px;
            color: #f8fafc;
            font-size: 13px;
            font-weight: 800;
        }

        .fake-select small {
            color: #94a3b8;
            font-weight: 700;
        }

        .search-card .cta {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            background: #050505;
            border-radius: 14px;
            color: #fff;
            text-decoration: none;
            padding: 14px 16px;
            font-weight: 800;
        }

        .banner-section {
            background: #0d0d0d;
            padding: 0 0 78px;
        }

        .video-feature {
            display: grid;
            grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
            gap: 24px;
            align-items: stretch;
        }

        .video-copy {
            min-height: 430px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 42px 0 42px 28px;
        }

        .video-copy .eyebrow {
            color: var(--blue);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .28em;
            text-transform: uppercase;
        }

        .video-copy h2 {
            margin: 12px 0 14px;
            color: #fff;
            font-size: clamp(36px, 5vw, 74px);
            line-height: .93;
            font-weight: 900;
            letter-spacing: -.06em;
            max-width: 620px;
        }

        .video-copy p {
            margin: 0;
            max-width: 560px;
            color: #d7dce4;
            font-size: 17px;
            line-height: 1.8;
        }

        .video-copy .banner-text {
            margin: 12px 0 0;
            max-width: 650px;
            color: #ffffff;
            font-size: clamp(34px, 4.8vw, 70px);
            line-height: .95;
            font-weight: 900;
            letter-spacing: -.06em;
            text-transform: none;
            text-wrap: balance;
            text-shadow: 0 12px 28px rgba(0, 0, 0, .35);
        }

        .video-copy .banner-cta-inline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width: fit-content;
            margin-top: 26px;
            background: var(--blue);
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            padding: 14px 20px;
            font-weight: 800;
            box-shadow: 0 18px 32px rgba(21, 169, 232, .22);
        }

        .video-player {
            position: relative;
            min-height: 430px;
            border-radius: 24px;
            overflow: hidden;
            background: #060606;
            box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
        }

        .video-player iframe,
        .video-player video {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
            object-fit: cover;
            background: #000;
        }

        .video-fallback {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 430px;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 28px;
            background: center/cover no-repeat;
        }

        .video-fallback::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .34) 48%, rgba(0, 0, 0, .12) 100%);
        }

        .video-fallback-inner {
            position: relative;
            z-index: 1;
            max-width: 320px;
            color: #fff;
        }

        .video-fallback-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(21, 169, 232, .96);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            box-shadow: 0 14px 34px rgba(21, 169, 232, .28);
        }

        .video-fallback-icon i {
            font-size: 24px;
            color: #fff;
            margin-left: 3px;
        }

        .video-fallback-inner strong {
            display: block;
            font-size: 24px;
            line-height: 1.1;
            margin-bottom: 10px;
        }

        .video-fallback-inner span {
            display: block;
            font-size: 14px;
            line-height: 1.7;
            color: #d7dce4;
        }

        .banner {
            position: relative;
            min-height: 430px;
            border-radius: 24px;
            overflow: hidden;
            background: #111 center/cover no-repeat;
            box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
        }

        .banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .42) 45%, rgba(0, 0, 0, .12) 100%);
        }

        .banner-content {
            position: relative;
            z-index: 1;
            padding: 44px;
            max-width: 660px;
        }

        .banner-content .eyebrow {
            color: var(--blue);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .28em;
            text-transform: uppercase;
        }

        .banner-content h2 {
            margin: 12px 0 10px;
            color: #fff;
            font-size: clamp(36px, 5vw, 72px);
            line-height: .92;
            font-weight: 900;
            letter-spacing: -.06em;
        }

        .banner-content p {
            margin: 0;
            max-width: 540px;
            color: #d7dce4;
            font-size: 17px;
            line-height: 1.8;
        }

        .banner-cta {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--blue);
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            padding: 14px 20px;
            font-weight: 800;
            box-shadow: 0 18px 32px rgba(21, 169, 232, .22);
        }

        .news-section {
            position: relative;
            background:
                radial-gradient(circle at top, rgba(21, 169, 232, .14), transparent 30%),
                radial-gradient(circle at 85% 10%, rgba(15, 76, 129, .10), transparent 26%),
                linear-gradient(180deg, #06090f 0%, #0b1018 100%);
            padding: 88px 0 128px;
            overflow: hidden;
        }

        .news-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255, 255, 255, .05), transparent 22%, rgba(255, 255, 255, .02));
            pointer-events: none;
        }

        .section-kicker {
            text-align: center;
            color: #7cc8ff;
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .26em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .section-title {
            text-align: center;
            margin: 0 0 34px;
            color: #f8fafc;
            font-size: clamp(28px, 3.2vw, 42px);
            line-height: 1.12;
            font-weight: 900;
            letter-spacing: -.04em;
            text-wrap: balance;
        }

        .news-grid {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 20px;
        }

        .catalogo-section {
            display: none;
        }

        .cat-drawer-overlay {
            position: fixed;
            inset: 0;
            left: 120px;
            background: rgba(4, 8, 18, .52);
            opacity: 0;
            visibility: hidden;
            transition: opacity .22s ease, visibility .22s ease;
            z-index: 998;
        }

        .cat-drawer-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .cat-drawer {
            position: fixed;
            top: 72px;
            left: 120px;
            width: calc(100vw - 120px);
            height: calc(100vh - 72px);
            background: linear-gradient(180deg, #070b12 0%, #0b1018 100%);
            border-right: 1px solid rgba(255, 255, 255, .08);
            box-shadow: 20px 0 72px rgba(0, 0, 0, .40);
            transform: translateX(-100%);
            transition: transform .42s cubic-bezier(.16, 1, .3, 1), box-shadow .42s ease;
            z-index: 998;
            display: grid;
            grid-template-columns: 1fr;
        }

        .cat-drawer.open {
            transform: translateX(0);
        }

        .cat-drawer-nav {
            display: none !important;
        }

        .cat-drawer-header {
            min-height: 84px;
            padding: 18px 22px;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
        }

        .cat-drawer-title {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .cat-drawer-title strong {
            font-size: 22px;
            color: #f8fafc;
        }

        .cat-drawer-title span {
            color: #b7c1cf;
            font-size: 13px;
            line-height: 1.5;
        }

        .cat-drawer-close {
            width: 42px;
            height: 42px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .08);
            background: rgba(255, 255, 255, .04);
            color: #f8fafc;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .cat-drawer-body {
            padding: 22px 26px 26px;
            overflow: auto;
            background: linear-gradient(180deg, #0b1018, #070b12);
            flex: 1;
        }

        .cat-drawer-main {
            display: flex;
            flex-direction: column;
            min-width: 0;
            width: 100%;
        }

        .cat-drawer-nav {
            display: none !important;
        }

        .cat-drawer-main .cat-drawer-body {
            flex: 1;
            padding-top: 26px;
        }

        .catalogo-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 18px;
            margin-bottom: 22px;
            flex-wrap: wrap;
        }

        .catalogo-head .section-kicker,
        .catalogo-head .section-title {
            text-align: left;
        }

        .catalogo-head .section-title {
            color: #f8fafc;
            margin-bottom: 0;
        }

        .catalogo-head p {
            color: #b7c1cf;
            max-width: 760px;
            margin: 0;
            line-height: 1.7;
        }

        .catalogo-reset {
            padding: 11px 16px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .08);
            background: rgba(255, 255, 255, .04);
            color: #f8fafc;
            font-size: 13px;
            font-weight: 800;
            white-space: nowrap;
        }

        .catalogo-produtos {
            min-height: 180px;
        }

        .catalogo-loading,
        .cat-empty {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 170px;
            border: 1px dashed rgba(255, 255, 255, .12);
            border-radius: 24px;
            background: rgba(255, 255, 255, .03);
            color: #cbd5e1;
            font-weight: 700;
            gap: 10px;
            text-align: center;
            padding: 24px;
        }

        .cat-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .cat-card {
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 24px;
            background: rgba(8, 12, 22, .95);
            overflow: hidden;
            box-shadow: 0 14px 28px rgba(0, 0, 0, .25);
            display: flex;
            flex-direction: column;
        }

        .cat-card-media {
            height: 220px;
            padding: 0;
            background: linear-gradient(180deg, #0f172a, #06090f);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

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

        .cat-card-body {
            padding: 18px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 1;
        }

        .cat-card-top {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 8px;
        }

        .cat-tag {
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(21, 169, 232, .12);
            color: #8fd3ff;
            font-size: 11px;
            font-weight: 900;
            letter-spacing: .18em;
        }

        .cat-tag.alt {
            background: rgba(255, 255, 255, .04);
            color: #cbd5e1;
        }

        .cat-card h3 {
            margin: 0;
            font-size: 20px;
            line-height: 1.15;
            color: #f8fafc;
        }

        .cat-card p {
            margin: 0;
            color: #b7c1cf;
            font-size: 13px;
            line-height: 1.4;
            min-height: 36px;
            max-height: 36px;
            overflow: hidden;
        }

        .cat-category {
            color: #8fd3ff;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .08em;
        }

        .cat-footer {
            margin-top: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .cat-footer strong {
            font-size: 18px;
            color: #f8fafc;
            font-weight: 800;
        }

        .news-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            background: linear-gradient(180deg, rgba(8, 12, 22, .98) 0%, rgba(11, 16, 24, .98) 100%);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 26px;
            overflow: hidden;
            box-shadow: 0 20px 48px rgba(0, 0, 0, .28);
            color: #f8fafc;
            text-decoration: none;
            transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
            position: relative;
        }

        .news-card:hover {
            transform: translateY(-6px);
            border-color: rgba(21, 169, 232, .34);
            box-shadow: 0 30px 60px rgba(0, 0, 0, .38);
        }

        .news-media {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: linear-gradient(135deg, #0f172a, #1d4ed8);
        }

        .news-media::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(15, 23, 42, .08), rgba(15, 23, 42, .42)),
                linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(0, 0, 0, .08));
            pointer-events: none;
            z-index: 1;
        }

        .news-media::after {
            content: '';
            position: absolute;
            inset: auto 0 0;
            height: 34%;
            background: linear-gradient(180deg, transparent, rgba(15, 23, 42, .36));
            pointer-events: none;
            z-index: 1;
        }

        .news-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: brightness(1.02) saturate(1.08);
            transition: transform .32s ease, filter .32s ease;
        }

        .news-card:hover .news-media img {
            transform: scale(1.06);
            filter: brightness(1.08) saturate(1.12);
        }

        .news-body {
            padding: 14px 16px 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
        }

        .news-body h4 {
            margin: 0;
            font-size: 18px;
            line-height: 1.2;
            color: #f8fafc;
            font-weight: 600;
            letter-spacing: -.03em;
            min-height: 0;
        }

        .news-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            color: #94a3b8;
            font-size: 11px;
            letter-spacing: .16em;
            text-transform: uppercase;
            font-weight: 700;
        }

        .news-pill {
            padding: 7px 11px;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(21, 169, 232, .16), rgba(36, 200, 226, .20));
            color: #a6e3ff;
            border: 1px solid rgba(21, 169, 232, .18);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
        }

        .news-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .news-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 36px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .04);
            color: #dbe5f1;
            font-size: 12px;
            font-weight: 800;
            line-height: 1;
        }

        .news-chip i {
            color: #0f84bf;
        }

        .news-chip.is-price {
            background: linear-gradient(135deg, rgba(15, 132, 191, .14), rgba(36, 200, 226, .18));
            color: #ccefff;
        }

        .news-body p {
            margin: 0;
            color: #b7c1cf;
            line-height: 1.7;
            font-size: 14px;
        }

        .news-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #8fd3ff;
            font-size: 13px;
            font-weight: 600;
            margin-top: auto;
            letter-spacing: .02em;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transform: translateY(8px);
            transition: opacity .22s ease, transform .22s ease, max-height .22s ease;
        }

        .news-link i {
            transition: transform .22s ease;
        }

        .news-card:hover .news-link i {
            transform: translateX(4px);
        }

        .news-card:hover .news-link {
            opacity: 1;
            max-height: 40px;
            transform: translateY(0);
        }

        .news-card:hover .news-body {
            padding-bottom: 18px;
        }

        .news-empty {
            grid-column: 1 / -1;
        }

        .news-empty .news-body {
            padding: 26px 24px 24px;
        }

        .site-footer {
            background: #05070d;
            border-top: 1px solid rgba(255, 255, 255, .06);
            padding: 34px 0 50px;
        }

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

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
        }

        .footer-brand img {
            width: 42px;
            height: 42px;
        }

        .footer-brand strong {
            font-size: 14px;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: #f8fafc;
        }

        .footer-meta {
            color: #b7c1cf;
            font-size: 13px;
            line-height: 1.6;
        }

        .footer-cta {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .footer-partners {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
            margin-top: 24px;
        }

        .footer-partner {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            min-height: 160px;
            padding: 18px 14px 16px;
            border-radius: 20px;
            background:
                radial-gradient(circle at top, rgba(21, 169, 232, .08), transparent 58%),
                rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            text-decoration: none;
            transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
        }

        .footer-partner:hover {
            transform: translateY(-4px);
            background:
                radial-gradient(circle at top, rgba(21, 169, 232, .12), transparent 58%),
                rgba(255, 255, 255, .06);
            border-color: rgba(255, 255, 255, .16);
            box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
        }

        .footer-partner img {
            width: 100%;
            max-width: 132px;
            height: 84px;
            object-fit: contain;
            display: block;
            opacity: .98;
            filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .28));
        }

        .footer-partner-name {
            color: #fff;
            font-size: 13px;
            line-height: 1.35;
            font-weight: 600;
            text-align: center;
            letter-spacing: .02em;
            min-height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            margin-top: 24px;
        }

        .footer-col h5 {
            margin: 0 0 12px;
            color: #fff;
            font-size: 13px;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .footer-col a {
            display: block;
            color: #cbd5e1;
            text-decoration: none;
            font-size: 13px;
            line-height: 1.9;
        }

        .footer-bottom {
            margin-top: 26px;
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            color: #94a3b8;
            font-size: 12px;
            line-height: 1.6;
        }

        .whats-float {
            position: fixed;
            right: 18px;
            bottom: 18px;
            z-index: 1001;
            width: 50px;
            height: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #25d366;
            box-shadow: 0 18px 36px rgba(37, 211, 102, .28);
        }

        .whats-float img {
            width: 28px;
            height: 28px;
        }

        .light-section-spacer {
            height: 1px;
            background: rgba(255, 255, 255, .03);
        }

        @media (max-width: 1199px) {
            .news-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .cat-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .cat-drawer {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 991px) {
            .topbar {
                padding-left: 16px;
                padding-right: 16px;
            }

            .topnav {
                display: none;
            }

            .shell {
                padding-left: 0;
            }

            .cat-drawer-overlay {
                left: 0;
            }

            .sidebar {
                position: static;
                width: 100%;
                height: auto;
                flex-direction: row;
                overflow-x: auto;
                overflow-y: hidden;
                border-right: 0;
                border-bottom: 1px solid var(--line);
                padding: 0;
            }

            .rail-logo {
                min-width: 96px;
                border-bottom: 0;
                border-right: 1px solid var(--line);
            }

            .rail-item {
                min-width: 100px;
                min-height: 82px;
                border-bottom: 0;
                border-right: 1px solid var(--line);
            }

            .rail-item img {
                width: 42px;
                height: 42px;
                object-fit: cover;
            }

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

            .light-panel {
                padding: 28px;
                border-radius: 24px;
            }

            .light-gallery {
                min-height: auto;
            }

            .light-gallery-nav {
                display: none;
            }

            .light-gallery-card {
                min-height: 240px;
            }

            .light-gallery-card[style*="42%"] {
                flex-basis: 84% !important;
            }

            .light-gallery-card[style*="29%"] {
                flex-basis: 64% !important;
            }

            .video-feature {
                grid-template-columns: 1fr;
            }

            .video-copy {
                min-height: auto;
                padding: 0 0 18px;
            }

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

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

        @media (max-width: 767px) {
            .container {
                width: min(100%, calc(100% - 24px));
            }

            .section-light {
                padding: 64px 0;
            }

            .hero {
                min-height: auto;
            }

            .hero-inner {
                width: 100%;
                padding: 56px 18px 72px;
            }

            .hero-video iframe,
            .hero-video video {
                transform: scale(1.12);
            }

            .hero h1 {
                font-size: clamp(34px, 10vw, 48px);
                max-width: 100%;
            }

            .hero p {
                font-size: 15px;
            }

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

            .sidebar {
                padding: 0;
            }

            .rail-logo {
                min-width: 92px;
            }

            .rail-item {
                min-width: 94px;
                min-height: 80px;
                padding: 10px 8px;
            }

            .rail-item img {
                width: 42px;
                height: 42px;
                object-fit: cover;
            }

            .section-light,
            .banner-section,
            .news-section {
                padding-left: 0;
                padding-right: 0;
            }

            .light-grid {
                gap: 22px;
            }

            .light-panel {
                padding: 24px;
            }

            .light-title {
                max-width: 100%;
                font-size: clamp(30px, 9.2vw, 44px);
            }

            .light-desc {
                margin-top: 14px;
                font-size: 16px;
            }

            .light-rule {
                margin-top: 22px;
            }

            .light-copy-right {
                font-size: 15px;
                line-height: 1.6;
                padding-top: 0;
            }

            .feature-metrics {
                margin-top: 18px;
            }

            .feature-metric {
                width: 100%;
                justify-content: center;
            }

            .feature-blue-grid {
                grid-template-columns: 1fr;
            }

            .light-showcase {
                margin-top: 34px;
            }

            .light-gallery {
                min-height: 240px;
            }

            .light-gallery-card {
                min-height: 240px;
            }

            .light-gallery-card.large .caption {
                left: 16px;
                bottom: 14px;
                max-width: 70%;
            }

            .light-gallery-card.large .caption strong {
                font-size: 15px;
            }

            .light-gallery-card.large .caption span {
                font-size: 12px;
            }

            .light-gallery-card[style*="42%"] {
                flex-basis: 82% !important;
            }

            .light-gallery-card[style*="29%"] {
                flex-basis: 62% !important;
            }

            .light-section-spacer {
                display: none;
            }

            .video-player,
            .video-fallback {
                min-height: 320px;
            }

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

            .news-card {
                border-radius: 22px;
            }

            .news-body {
                padding: 16px;
            }

            .news-body h4 {
                min-height: auto;
                font-size: 18px;
            }

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

            .cat-drawer {
                left: 0;
                top: 0;
                width: 100vw;
                height: 100vh;
                transform: translateX(-100%);
                border-right: 0;
            }

            .cat-drawer.open {
                transform: translateX(0);
            }

            .cat-drawer-header {
                min-height: 68px;
                padding: 14px 16px;
            }

            .cat-drawer-body {
                padding: 16px;
            }

            .cat-grid-mini {
                grid-template-columns: 1fr;
            }

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

        @media (max-width: 991px) {
            .cat-drawer {
                left: 0;
                top: 72px;
                width: 100vw;
                height: calc(100vh - 72px);
                grid-template-columns: 1fr;
                transform: translateX(-100%);
            }
            .cat-drawer-main {
                min-height: 0;
            }
            .cat-grid {
                grid-template-columns: 1fr;
            }
        }
