:root {
    --fx-primary: #00b4ff;
    --fx-primary-2: #6ee7ff;
    --fx-secondary: #7c3aed;
    --fx-dark: #051226;
    --fx-dark-2: #071a36;
    --fx-dark-3: #0d274d;
    --fx-text: #eaf6ff;
    --fx-muted: #9fb4cc;
    --fx-white: #ffffff;
    --fx-light: #f8fafc;
    --fx-light-text: #0f172a;
    --fx-light-muted: #475569;
    --fx-border: rgba(255, 255, 255, .12);
    --fx-light-border: rgba(15, 23, 42, .10);
    --fx-glass: rgba(8, 24, 49, .74);
    --fx-shadow: 0 24px 70px rgba(0, 0, 0, .32);
    --fx-light-shadow: 0 14px 42px rgba(15, 23, 42, .08);
    --fx-radius: 24px;
    --fx-transition: all .28s ease;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--fx-text);
    background: radial-gradient(circle at 14% 5%, rgba(0, 180, 255, .18), transparent 32%), radial-gradient(circle at 85% 12%, rgba(124, 58, 237, .18), transparent 30%), linear-gradient(180deg, #041022 0%, #071a36 48%, #030916 100%);
    overflow-x: hidden;
}

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
        background-size: 44px 44px;
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent 88%);
        z-index: -1;
    }

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--fx-transition);
}

    a:hover {
        color: var(--fx-primary);
    }

::selection {
    color: #03101f;
    background: var(--fx-primary-2);
}

.container {
    max-width: 1180px;
}

/* PAGE LOADER */

.fx-page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #ffffff;
    transition: opacity .45s ease, visibility .45s ease;
}

    .fx-page-loader.is-hidden {
        opacity: 0;
        visibility: hidden;
    }

.fx-loader-mark {
    width: min(260px, 72vw);
    padding: 28px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: var(--fx-radius);
    background: #ffffff;
    box-shadow: var(--fx-light-shadow);
    animation: fxPulse 1.3s ease-in-out infinite alternate;
}

    .fx-loader-mark img {
        width: 100%;
        height: auto;
    }

@keyframes fxPulse {
    from {
        transform: scale(.96);
        opacity: .78;
    }

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

/* HEADER CLARO EXECUTIVO */

.fx-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 34px rgba(15, 23, 42, .06);
    transition: var(--fx-transition);
}

    .fx-header.fx-scrolled {
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 18px 48px rgba(15, 23, 42, .10);
    }

.fx-navbar {
    min-height: 92px;
    padding: 12px 0;
}

.fx-brand-image {
    display: inline-flex;
    align-items: center;
    max-width: 224px;
}

    .fx-brand-image img {
        width: 210px;
        height: auto;
        filter: none;
    }

.fx-menu {
    gap: 18px;
}

.fx-nav-link {
    position: relative;
    padding: 10px 12px !important;
    color: #1e293b !important;
    font-size: .94rem;
    font-weight: 700;
    letter-spacing: -.01em;
}

    .fx-nav-link::after {
        content: "";
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 4px;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--fx-primary), var(--fx-secondary));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .28s ease;
    }

    .fx-nav-link:hover,
    .fx-nav-link:focus {
        color: #0284c7 !important;
    }

        .fx-nav-link:hover::after,
        .fx-nav-link:focus::after {
            transform: scaleX(1);
        }

.fx-language {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px !important;
    color: #0f172a !important;
    font-weight: 700;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 999px;
    background: #f8fafc;
}

    .fx-language:hover,
    .fx-language:focus {
        color: #0284c7 !important;
        border-color: rgba(0, 180, 255, .35);
        background: #ffffff;
    }

.fx-dropdown {
    padding: 10px;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .14);
}

    .fx-dropdown .dropdown-item {
        color: #334155;
        border-radius: 12px;
        padding: 10px 14px;
        font-weight: 600;
    }

        .fx-dropdown .dropdown-item:hover,
        .fx-dropdown .dropdown-item:focus {
            color: #0284c7;
            background: #ecfeff;
        }

.fx-header-btn,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 20px;
    color: #03101f !important;
    font-weight: 900;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--fx-primary), var(--fx-primary-2));
    box-shadow: 0 14px 34px rgba(0, 180, 255, .26);
}

    .fx-header-btn:hover,
    .btn-primary:hover {
        transform: translateY(-2px);
        color: #03101f !important;
        box-shadow: 0 18px 44px rgba(0, 180, 255, .36);
    }

.fx-toggler {
    width: 46px;
    height: 42px;
    padding: 8px;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 14px;
    box-shadow: none !important;
    background: #ffffff;
}

    .fx-toggler span {
        display: block;
        width: 100%;
        height: 2px;
        margin: 5px 0;
        border-radius: 999px;
        background: #0f172a;
    }

/* MAIN */

.fx-main {
    min-height: 62vh;
}

/* HERO / SECTIONS */

.fx-hero,
.fx-section {
    position: relative;
    padding: 108px 0;
}

.fx-hero {
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.fx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 20px;
    color: var(--fx-primary-2);
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 180, 255, .28);
    border-radius: 999px;
    background: rgba(0, 180, 255, .08);
}

.fx-title {
    max-width: 920px;
    color: var(--fx-white);
    font-size: clamp(2.55rem, 7vw, 5.8rem);
    line-height: .96;
    font-weight: 900;
    letter-spacing: -.07em;
}

.fx-gradient-text {
    color: transparent;
    background: linear-gradient(120deg, var(--fx-white), var(--fx-primary-2), #bda8ff);
    -webkit-background-clip: text;
    background-clip: text;
}

.fx-lead {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--fx-muted);
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.75;
}

.fx-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.fx-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 18px;
    font-weight: 800;
    color: var(--fx-white);
    border: 1px solid var(--fx-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
}

    .fx-btn-outline:hover {
        color: var(--fx-white);
        border-color: rgba(0, 180, 255, .42);
        background: rgba(0, 180, 255, .12);
        transform: translateY(-2px);
    }

/* CARDS */

.fx-card,
.fx-hover-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
    box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
    transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

    .fx-card::before,
    .fx-hover-card::before {
        content: "";
        position: absolute;
        inset: -1px;
        opacity: 0;
        pointer-events: none;
        background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 180, 255, .24), transparent 36%);
        transition: opacity .25s ease;
    }

    .fx-card:hover,
    .fx-hover-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 180, 255, .34);
        box-shadow: 0 26px 76px rgba(0, 0, 0, .32);
    }

        .fx-card:hover::before,
        .fx-hover-card:hover::before {
            opacity: 1;
        }

.fx-card-body {
    position: relative;
    z-index: 1;
    padding: 28px;
}

.fx-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: #03101f;
    font-size: 1.4rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--fx-primary), var(--fx-primary-2));
}

/* CAROUSEL */

.fx-carousel,
.carousel,
.carousel-inner,
.carousel-item {
    border-radius: 30px;
}

.fx-carousel {
    overflow: hidden;
    border: 1px solid var(--fx-border);
    background: rgba(255, 255, 255, .05);
    box-shadow: var(--fx-shadow);
}

    .fx-carousel img {
        width: 100%;
        min-height: 420px;
        object-fit: cover;
    }

.fx-carousel-caption {
    left: 32px;
    right: 32px;
    bottom: 32px;
    text-align: left;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    background: rgba(3, 12, 27, .72);
    backdrop-filter: blur(14px);
}

    .fx-carousel-caption h2,
    .fx-carousel-caption h3 {
        font-weight: 900;
        letter-spacing: -.04em;
    }

/* FOOTER */

.fx-footer {
    position: relative;
    overflow: hidden;
    padding: 82px 0 30px;
    color: var(--fx-text);
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: radial-gradient(circle at 12% 12%, rgba(0, 180, 255, .18), transparent 32%), radial-gradient(circle at 88% 22%, rgba(124, 58, 237, .16), transparent 30%), linear-gradient(180deg, rgba(3, 12, 27, .86), #020813 100%);
}

.fx-footer-glow {
    position: absolute;
    width: 560px;
    height: 560px;
    left: 50%;
    top: -320px;
    transform: translateX(-50%);
    pointer-events: none;
    background: radial-gradient(circle, rgba(0, 180, 255, .22), transparent 62%);
    filter: blur(4px);
}

.fx-footer-top {
    display: grid;
    grid-template-columns: 1.45fr .75fr .75fr .9fr;
    gap: 42px;
    align-items: start;
    padding-bottom: 42px;
}

.fx-footer-brand p {
    max-width: 430px;
    margin: 18px 0 0;
    color: var(--fx-muted);
    line-height: 1.75;
}

.fx-footer-logo-image {
    display: inline-flex;
    align-items: center;
}

.footer-logo {
    width: min(260px, 70vw);
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(0, 180, 255, .22));
    transition: transform .3s ease, filter .3s ease;
}

.fx-footer-logo-image:hover .footer-logo {
    transform: scale(1.045) translateY(-2px);
    filter: drop-shadow(0 24px 42px rgba(0, 180, 255, .34));
}

.fx-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

    .fx-footer-badges span {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        padding: 8px 12px;
        color: var(--fx-primary-2);
        font-size: .82rem;
        font-weight: 800;
        border: 1px solid rgba(0, 180, 255, .22);
        border-radius: 999px;
        background: rgba(0, 180, 255, .08);
    }

.fx-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

    .fx-social-links a {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--fx-white);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 50%;
        background: rgba(255, 255, 255, .06);
    }

        .fx-social-links a:hover {
            color: #03101f;
            background: linear-gradient(135deg, var(--fx-primary), var(--fx-primary-2));
            border-color: transparent;
            transform: translateY(-4px);
            box-shadow: 0 16px 30px rgba(0, 180, 255, .22);
        }

.fx-footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .fx-footer-col h6 {
        margin: 0 0 8px;
        color: var(--fx-white);
        font-size: .92rem;
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .fx-footer-col a,
    .fx-footer-col span {
        color: var(--fx-muted);
        font-size: .96rem;
        line-height: 1.55;
    }

        .fx-footer-col a:hover {
            color: var(--fx-primary-2);
            transform: translateX(4px);
        }

.fx-footer-contact a:first-of-type {
    color: var(--fx-white);
    font-weight: 700;
}

.fx-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 26px;
    color: rgba(234, 246, 255, .68);
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .92rem;
}

.fx-footer-mini-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .fx-footer-mini-links a {
        color: rgba(234, 246, 255, .7);
    }

        .fx-footer-mini-links a:hover {
            color: var(--fx-primary-2);
        }

/* BACK TO TOP */

.fx-back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1020;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    color: #03101f;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fx-primary), var(--fx-primary-2));
    box-shadow: 0 18px 38px rgba(0, 180, 255, .28);
    transition: var(--fx-transition);
}

    .fx-back-top.is-visible {
        opacity: 1;
        visibility: visible;
    }

    .fx-back-top:hover {
        transform: translateY(-4px);
    }

/* ASP.NET DEFAULT HELPERS */

.border-top {
    border-top: 1px solid rgba(255, 255, 255, .1) !important;
}

.border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, .1) !important;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .08);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* RESPONSIVE */

@media (max-width: 991.98px) {
    .fx-navbar {
        min-height: 78px;
    }

    .fx-brand-image img {
        width: 176px;
    }

    .fx-menu {
        margin-top: 16px;
        padding: 18px;
        border: 1px solid rgba(15, 23, 42, .08);
        border-radius: 22px;
        background: #ffffff;
        box-shadow: 0 20px 50px rgba(15, 23, 42, .12);
    }

    .fx-nav-link {
        padding: 12px 0 !important;
        color: #1e293b !important;
    }

        .fx-nav-link::after {
            left: 0;
            right: 0;
        }

    .fx-language,
    .fx-header-btn {
        width: 100%;
        justify-content: center;
    }

    .fx-language {
        margin-top: 8px;
    }

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

@media (max-width: 767.98px) {
    .fx-hero,
    .fx-section {
        padding: 74px 0;
    }

    .fx-title {
        letter-spacing: -.045em;
    }

    .fx-carousel img {
        min-height: 320px;
    }

    .fx-carousel-caption {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 18px;
    }

    .fx-footer {
        padding-top: 62px;
    }

    .fx-footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fx-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .fx-brand-image img {
        width: 158px;
    }

    .footer-logo {
        width: min(220px, 76vw);
    }

    .fx-actions {
        flex-direction: column;
    }

        .fx-actions .btn,
        .fx-btn-outline {
            width: 100%;
        }

    .fx-footer-mini-links {
        flex-wrap: wrap;
    }
}
