   
   :root {
        --sirius-navy: #061826;
        --sirius-dark: #0f172a;
        --sirius-slate: #334155;
        --sirius-muted: #64748b;
        --sirius-blue: #0ea5e9;
        --sirius-cyan: #06b6d4;
        --sirius-green: #10b981;
        --sirius-lime: #84cc16;
        --sirius-soft: #f8fafc;
        --sirius-border: rgba(15, 23, 42, 0.08);
        --sirius-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
        --gradient-brand: linear-gradient(135deg, var(--sirius-blue), var(--sirius-cyan), var(--sirius-green));
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
        font-family: 'Inter', sans-serif;
        background: #ffffff;
        color: var(--sirius-dark);
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
    }
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        background:
            radial-gradient(circle at 12% 18%, rgba(14, 165, 233, .08), transparent 28%),
            radial-gradient(circle at 82% 12%, rgba(16, 185, 129, .08), transparent 30%);
        z-index: -1;
    }
    .section-spacer { padding: 96px 0; }
    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 13px;
        border: 1px solid rgba(14,165,233,.18);
        background: rgba(14,165,233,.08);
        color: #0369a1;
        border-radius: 999px;
        font-size: .78rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .08em;
    }
    .text-gradient {
        background: var(--gradient-brand);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    .navbar {
        backdrop-filter: blur(18px);
        background: rgba(255, 255, 255, 0.82);
        border-bottom: 1px solid rgba(255,255,255,0.35);
        box-shadow: 0 10px 35px rgba(15,23,42,.05);
        transition: all .25s ease;
    }
    .navbar.is-scrolled { background: rgba(255,255,255,.94); box-shadow: 0 18px 45px rgba(15,23,42,.09); }
    .navbar-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
    .brand-logo {
        width: 40px;
        height: 40px;
        display: block;
        object-fit: contain;
        flex: 0 0 40px;
        border-radius: 12px;
        filter: drop-shadow(0 10px 20px rgba(14, 165, 233, .22));
    }
    .brand-text { font-weight: 900; letter-spacing: -0.6px; }
    .brand-sub { font-weight: 300; color: var(--sirius-muted); }
    .nav-link { font-weight: 600; color: var(--sirius-slate) !important; }
    .nav-link:hover { color: var(--sirius-blue) !important; }

    .hero-section { position: relative; padding: 0; overflow: hidden; background: var(--sirius-navy); }
    .hero-carousel, .hero-carousel .carousel-inner, .hero-carousel .carousel-item { min-height: 92vh; }
    .hero-slide {
        min-height: 92vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        isolation: isolate;
    }
    .hero-bg-picture,
    .hero-bg-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
    .hero-bg-picture {
        display: block;
        z-index: 0;
        background: var(--sirius-navy);
    }
    .hero-bg-img {
        object-fit: cover;
        object-position: center right;
    }
    .carousel-item.active .hero-bg-img { animation: heroImageZoom 7s ease-out both; }
    .hero-slide::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
            linear-gradient(90deg, rgba(6,24,38,.96) 0%, rgba(6,24,38,.88) 38%, rgba(6,24,38,.56) 62%, rgba(6,24,38,.20) 100%),
            radial-gradient(circle at 20% 20%, rgba(14,165,233,.22), transparent 32%);
        z-index: 1;
    }
    .hero-slide::after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 160px;
        pointer-events: none;
        background: linear-gradient(to bottom, transparent, rgba(255,255,255,.98));
        z-index: 1;
    }
    .hero-slide .container { position: relative; z-index: 2; }
    .hero-content { position: relative; z-index: 2; padding-top: 145px; padding-bottom: 90px; }
    .hero-kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255,255,255,.10);
        color: #e0faff;
        border: 1px solid rgba(255,255,255,.18);
        backdrop-filter: blur(14px);
        border-radius: 999px;
        padding: 9px 16px;
        font-size: .84rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .08em;
    }
    .hero-title { font-weight: 900; letter-spacing: -2.2px; color: #ffffff; line-height: .98; }
    .hero-description { color: rgba(255,255,255,.84); max-width: 680px; font-size: 1.15rem; }
    .hero-stat {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: rgba(255,255,255,.84);
        font-weight: 600;
    }
    .hero-stat i { color: #67e8f9; }
    .btn-sirius {
        background: var(--gradient-brand);
        color: white;
        padding: 13px 30px;
        border-radius: 999px;
        font-weight: 800;
        border: none;
        box-shadow: 0 16px 38px rgba(14,165,233,.28);
        transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
    }
    .btn-sirius:hover { color: white; transform: translateY(-2px); filter: saturate(1.08); box-shadow: 0 22px 48px rgba(14,165,233,.34); }
    .btn-hero-outline {
        color: #ffffff;
        border: 1px solid rgba(255,255,255,.34);
        background: rgba(255,255,255,.08);
        backdrop-filter: blur(10px);
        padding: 13px 26px;
        border-radius: 999px;
        font-weight: 800;
        transition: all .25s ease;
    }
    .btn-hero-outline:hover { color: var(--sirius-dark); background: #ffffff; border-color: #ffffff; transform: translateY(-2px); }
    .hero-slide-1 .hero-bg-img { object-position: center right; }
    .hero-slide-2 .hero-bg-img { object-position: 68% center; }
    .hero-slide-3 .hero-bg-img { object-position: center right; }
    .hero-carousel .carousel-indicators { bottom: 32px; z-index: 4; }
    .hero-carousel .carousel-indicators [data-bs-target] { width: 10px; height: 10px; border-radius: 50%; border: 0; margin: 0 7px; opacity: .5; }
    .hero-carousel .carousel-indicators .active { width: 32px; border-radius: 999px; opacity: 1; }
    .hero-carousel .carousel-control-prev, .hero-carousel .carousel-control-next { width: 7%; z-index: 4; }
    .hero-carousel .carousel-control-prev-icon, .hero-carousel .carousel-control-next-icon { background-color: rgba(255,255,255,.16); border-radius: 50%; padding: 22px; background-size: 55% 55%; backdrop-filter: blur(12px); }

    .trust-strip { margin-top: -42px; position: relative; z-index: 5; }
    .trust-panel { background: rgba(255,255,255,.88); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.62); border-radius: 28px; box-shadow: var(--sirius-shadow); padding: 26px; }
    .client-logo { min-width: 160px; min-height: 58px; padding: 14px 20px; border-radius: 18px; background: #fff; border: 1px solid var(--sirius-border); color: var(--sirius-muted); font-weight: 800; text-align:center; transition: all .25s ease; display: inline-flex; align-items: center; justify-content: center; }
    .client-logo:hover { transform: translateY(-4px); color: var(--sirius-blue); box-shadow: 0 16px 35px rgba(15,23,42,.08); }
    .client-logo-img { min-width: 190px; padding: 9px 18px; }
    .client-logo-img img { display: block; max-width: 180px; height: auto; object-fit: contain; }

    .bento-card {
        border: 1px solid rgba(15,23,42,.07);
        border-radius: 30px;
        padding: 2rem;
        transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
        background: rgba(255,255,255,.86);
        box-shadow: 0 8px 28px rgba(15,23,42,.045);
        height: 100%;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .bento-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 86% 20%, rgba(14,165,233,.16), transparent 34%); opacity: 0; transition: opacity .35s ease; }
    .bento-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(15,23,42,.12); border-color: rgba(14,165,233,.18); }
    .bento-card:hover::before { opacity: 1; }
    .bg-icon { position: absolute; right: -18px; bottom: -22px; font-size: 8.5rem; opacity: .055; transform: rotate(-14deg); }
    .card-tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 900; margin-bottom: 1rem; display: inline-block; padding: 6px 13px; border-radius: 999px; }
    .tag-blue { background: #e0f2fe; color: #0284c7; }
    .tag-cyan { background: #cffafe; color: #0891b2; }
    .tag-green { background: #d1fae5; color: #059669; }
    .card-factory { background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%); }
    .card-medical { background: linear-gradient(135deg, #fff 0%, #ecfeff 100%); }
    .card-factura { background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%); }
    .mini-feature { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.74); border: 1px solid rgba(15,23,42,.06); }
    .tech-pill {
        padding: 12px 20px;
        border: 1px solid #e2e8f0;
        border-radius: 999px;
        background: rgba(255,255,255,.86);
        font-weight: 700;
        font-size: .92rem;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        transition: all .25s ease;
        box-shadow: 0 6px 20px rgba(15,23,42,.035);
    }
    .tech-pill:hover { border-color: rgba(14,165,233,.35); color: var(--sirius-blue); transform: translateY(-3px); box-shadow: 0 14px 28px rgba(15,23,42,.08); }
    .process-card { padding: 24px; border-radius: 28px; border: 1px solid var(--sirius-border); background: #fff; height: 100%; box-shadow: 0 10px 30px rgba(15,23,42,.04); }
    .process-number { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 16px; color: #fff; background: var(--gradient-brand); font-weight: 900; margin-bottom: 18px; }
    .contact-box { background: rgba(255,255,255,.88); border-radius: 30px; padding: 3rem; box-shadow: var(--sirius-shadow); border: 1px solid rgba(255,255,255,.75); }
    .form-control { border-radius: 16px; padding: 13px 16px; border: 1px solid #e2e8f0; background: #f8fafc; }
    .form-control:focus { background: #fff; border-color: var(--sirius-blue); box-shadow: 0 0 0 5px rgba(14,165,233,.12); }
    .btn-whatsapp { background: #25D366; color: white; padding: 13px 30px; border-radius: 999px; font-weight: 800; border: none; transition: all .25s ease; }
    .btn-whatsapp:hover { background: #1ebc57; transform: translateY(-2px); color: white; }
    .hp-field { display: none; }
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1); }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }
    .float-soft { animation: floatSoft 6s ease-in-out infinite; }
    @keyframes heroImageZoom { from { transform: scale(1.04); } to { transform: scale(1); } }
    @keyframes floatSoft { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
    @media (max-width: 991.98px) {
        .section-spacer { padding: 72px 0; }
        .hero-carousel, .hero-carousel .carousel-inner, .hero-carousel .carousel-item, .hero-slide { min-height: 82vh; }
        .hero-content { padding-top: 120px; padding-bottom: 68px; text-align: center; }
        .hero-title { font-size: 2.75rem; letter-spacing: -1.3px; }
        .hero-description { font-size: 1rem; margin-left: auto; margin-right: auto; }
        .hero-bg-img { object-position: 70% center; }
        .hero-slide::before {
            background:
                linear-gradient(180deg, rgba(6,24,38,.94) 0%, rgba(6,24,38,.86) 52%, rgba(6,24,38,.68) 100%),
                radial-gradient(circle at 50% 18%, rgba(14,165,233,.18), transparent 34%);
        }
        .client-logo { width: 100%; max-width: 260px; }
        .client-logo-img img { max-width: 170px; }
        .trust-strip { margin-top: -24px; }
        .contact-box { padding: 2rem; }
    }
    @media (max-width: 575.98px) {
        .hero-carousel, .hero-carousel .carousel-inner, .hero-carousel .carousel-item, .hero-slide { min-height: 760px; }
        .hero-bg-img { object-position: 72% center; }
        .hero-content { padding-top: 116px; padding-bottom: 76px; }
        .hero-title { font-size: 2.35rem; }
    }
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
        .reveal { opacity: 1; transform: none; }
    }

    @media (max-width: 575.98px) {
        .brand-logo { width: 34px; height: 34px; flex-basis: 34px; }
        .brand-sub { display: none; }
    }

    .form-status {
        padding: 12px 16px;
        border-radius: 16px;
        margin-bottom: 1rem;
        font-size: .92rem;
        font-weight: 700;
        border: 1px solid transparent;
    }
    .form-status-success {
        color: #065f46;
        background: #d1fae5;
        border-color: #a7f3d0;
    }
    .form-status-error {
        color: #991b1b;
        background: #fee2e2;
        border-color: #fecaca;
    }
