/* --- VIVA ARCHITECTURE DESIGN SYSTEM --- */

:root {
    --viva-neuro: #d4af37;
    /* Gold */
    --viva-bio: #10b981;
    /* Emerald */
    --viva-global: #2196f3;
    /* Blue */
    --viva-void: #000000;
    /* Black */
    --accent-gold: #d4af37;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --sidebar-width: 280px;
    --viva-ease-premium: cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Glassmorphism Variations */
.glass-viva {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-viva:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
}

/* V4 SIDEBAR RECONSTRUCTION (Anti-Glitch) */
.desktop-sidebar {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: var(--sidebar-width) !important;
    background: rgba(5, 5, 5, 0.98) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    z-index: 10000 !important;
    backdrop-filter: blur(20px) !important;
}

.viva-shell-desktop-header {
    display: none !important;
}

/* Hard hide mobile elements on desktop outside their media query */
@media (min-width: 1025px) {
    .viva-header-mobile, 
    #mobile-viva-header,
    .viva-hamburger-elite, 
    .viva-sidebar-elite, 
    .viva-sidebar-overlay-elite,
    .viva-obsidian-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

.desktop-shell-brand,
.desktop-shell-link,
.desktop-shell-cta {
    text-decoration: none;
}

@media (min-width: 1025px) {
    .viva-shell-desktop-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 25px;
        position: fixed;
        top: 20px;
        left: 50%;
        width: 95%;
        max-width: 1100px;
        min-height: 64px;
        padding: 0 30px;
        border-radius: 999px;
        border: 1px solid rgba(212, 175, 55, 0.2);
        background: rgba(5, 10, 20, 0.85);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        box-shadow: 
            0 15px 45px rgba(0, 0, 0, 0.45),
            inset 0 1px 1px rgba(255, 255, 255, 0.05);
        z-index: 10020;
        transform: translateX(-50%);
        transition: all 0.5s var(--viva-ease-premium);
    }

    .desktop-shell-brand {
        display: inline-flex;
        flex-direction: column;
        text-decoration: none;
    }

    .desktop-shell-brand strong {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.25rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #fff;
        line-height: 1;
    }

    .desktop-shell-brand-kicker {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.62rem;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        color: var(--accent-gold);
    }

    .viva-shell-desktop-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex: 1;
    }

    .desktop-shell-link {
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.5px;
        padding: 8px 16px;
        border-radius: 999px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .desktop-shell-link:hover {
        color: #fff;
        background: rgba(212, 175, 55, 0.15);
    }

    .desktop-shell-link.is-current {
        color: #000 !important;
        background: var(--accent-gold) !important;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }

    .desktop-shell-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 144px;
        min-height: 46px;
        padding: 0 20px;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.96), rgba(236, 197, 126, 0.9));
        color: #090909;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        box-shadow: 0 14px 30px rgba(212, 175, 55, 0.18);
        transition: transform 0.24s ease, box-shadow 0.24s ease;
    }

    .desktop-shell-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 36px rgba(212, 175, 55, 0.24);
    }

    .desktop-shell-cta.is-current {
        box-shadow: 0 18px 38px rgba(212, 175, 55, 0.28);
    }
}

@media (min-width: 1025px) and (max-width: 1260px) {
    .viva-shell-desktop-header {
        gap: 14px;
        padding: 12px 14px;
    }

    .desktop-shell-brand {
        min-width: 148px;
    }

    .desktop-shell-link {
        padding: 0 12px;
        letter-spacing: 0.14em;
    }
}

.sidebar-logo {
    padding: 60px 20px 40px !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    flex-shrink: 0 !important;
}

.sidebar-logo h2 {
    font-size: 1.2rem !important;
    letter-spacing: 6px !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    font-family: var(--font-serif) !important;
    text-transform: uppercase !important;
    color: #fff !important;
    display: block !important;
}

.sidebar-logo h2 span {
    color: var(--accent-gold) !important;
    font-size: inherit !important;
    letter-spacing: inherit !important;
}

.sidebar-logo p {
    font-size: 0.45rem !important;
    color: #c8bfaf !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
    margin: 10px 0 0 0 !important;
    padding: 0 !important;
    display: block !important;
}

/* Eliminados duplicados obsoletos de sidebar-nav que causaban conflictos de Layout */

.sidebar-link.active {
    background: rgba(212, 175, 55, 0.1) !important;
    color: #fff !important;
    border-left: 3px solid var(--accent-gold) !important;
}

.sidebar-footer {
    padding: 30px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    flex-shrink: 0 !important;
}

.sidebar-footer a {
    display: block !important;
    font-size: 0.6rem !important;
    color: #c8bfaf !important;
    text-decoration: none !important;
    margin-bottom: 12px !important;
    letter-spacing: 1px !important;
}

/* V4 ELITE BUTTONS */
.btn-gold,
.btn-outline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    font-family: var(--font-sans);
}

.btn-gold {
    background: var(--accent-gold);
    color: #000;
    border: 1px solid var(--accent-gold);
}

.btn-gold:hover {
    background: #fff;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Advanced VIVA Animations */
@keyframes scanLine {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

.viva-scan-container {
    position: relative;
    overflow: hidden;
}

.viva-scan-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    animation: scanLine 3s infinite linear;
    pointer-events: none;
}

#viva-nexus h1 {
    animation: echoBreathing 10s infinite ease-in-out;
}

/* VIVA TOTAL IMMERSION (SCAN LINE) */
@keyframes laserScan {
    0% {
        top: 0%;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.immersive-scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    box-shadow: 0 0 15px var(--accent-gold);
    pointer-events: none;
    z-index: 50;
    animation: laserScan 4s infinite linear;
}

.node-network-bg {
    background-color: #000;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px;
    position: relative;
    overflow: hidden;
}

.node-network-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    pointer-events: none;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.33);
        opacity: 0;
    }

    80%,
    100% {
        opacity: 0;
    }
}

.network-pulse {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: pulse-ring 4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    pointer-events: none;
}

/* THE CRUX CIRCLE UI ENHANCEMENT */
.crux-circle-card {
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.6s var(--viva-ease-premium);
}

.crux-circle-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    animation: scanLineH 4s infinite;
}

@keyframes scanLineH {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.crux-circle-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 80px rgba(212, 175, 55, 0.15);
    transform: translateY(-8px) scale(1.01);
}

.crux-input {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 18px !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.crux-input:focus {
    background: rgba(0, 0, 0, 0.6) !important;
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1), inset 0 0 10px rgba(212, 175, 55, 0.05);
}


/* CERTIFIED MEMBERS UI */
.certified-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.certified-card:hover {
    background: rgba(212, 175, 55, 0.03);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
}

.cert-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--emerald-viva);
    color: #000;
    font-size: 0.5rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.cert-hash {
    font-family: 'monospace';
    font-size: 0.5rem;
    color: #444;
    letter-spacing: 1px;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
}

.certified-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    margin-bottom: 20px;
    object-fit: cover;
    filter: grayscale(1);
    transition: 0.5s;
}

.certified-card:hover .certified-avatar {
    filter: grayscale(0);
}

/* VIVA CORPORATE CONFIGURATOR (BLOQUE 66) */
.configurator-v4 {
    display: grid;
    grid-template-columns: 1fr 350px;
    background: #000;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 600px;
}

.configurator-preview {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.configurator-frame {
    width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    border: 15px solid #000;
    /* Default Frame */
    position: relative;
}

.configurator-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.configurator-controls {
    background: #0a0a0a;
    padding: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.config-btn-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 10px;
}

.config-item {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 1px solid #222;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: all 0.3s;
}

.config-item.active {
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

.price-tag-dynamic {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-top: auto;
}

@media (max-width: 1024px) {
    .configurator-v4 {
        grid-template-columns: 1fr;
        height: auto;
    }

    .configurator-preview {
        height: 400px;
    }
}

/* V4 MASTER CORE ENHANCEMENTS */
.viva-os-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 30px !important;
}

.glass-viva.neuro {
    position: relative;
    overflow: hidden;
    background: rgba(10, 10, 15, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-viva.neuro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.glass-viva.neuro:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
}

.glass-viva.neuro:hover::before {
    opacity: 1;
}

.v4-header h1 {
    font-size: 4rem !important;
    background: linear-gradient(to right, #fff, var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

#master-core-dashboard {
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.02) 0%, transparent 70%);
    border-radius: 60px;
    padding: 20px;
}

@media (max-width: 1024px) {
    .viva-os-grid {
        grid-template-columns: 1fr !important;
    }

    .v4-header h1 {
        font-size: 2.8rem !important;
    }
}

@media (max-width: 767px) {
    .viva-shell-desktop-header {
        display: none !important;
    }
}



/* Elite Tooltip / Status Display */
.viva-status-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--viva-bio);
    color: #000;
    font-size: 0.5rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* --- VIVA OBSIDIAN ELITE MOBILE NAV (GLOBAL CORE) --- */
.viva-obsidian-nav {
    display: none !important;
}

@media (max-width: 1024px) {
    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom)) !important;
        position: relative !important;
        min-height: 100% !important;
        transform: none !important;
        /* Prevent breaking fixed children */
    }

    /* GLOBAL MOBILE HEADER (RE-BORN NOIR) */
    .viva-header-mobile {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 60px !important;
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        z-index: 100000 !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
        transform: translateZ(0) !important;
        will-change: transform !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
    }

    #spring-promo:not([style*="display: none"])~.viva-header-mobile {
        top: 40px !important;
    }

    .header-mobile-center {
        color: #fff;
        font-family: 'Playfair Display', serif;
        font-size: 0.85rem;
        letter-spacing: 5px;
        text-transform: uppercase;
        font-weight: 300;
        text-align: center;
        flex: 1;
    }

    .header-mobile-icon {
        color: #fff;
        font-size: 1.2rem;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
    }

    #header-notif-dot {
        position: absolute;
        width: 6px;
        height: 6px;
        background: #d4af37;
        border-radius: 50%;
        top: 14px;
        right: 12px;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    }

    /* GLOBAL MOBILE HEADER (TOP) */


    /* GLOBAL SPRING BANNER (ABSOLUTE TOP) */
    .spring-banner {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 40px !important;
        z-index: 100001 !important;
        background: linear-gradient(90deg, #000, #061910, #000) !important;
        border-bottom: 1px solid rgba(16, 185, 129, 0.4) !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        transform: translateZ(0) !important;
    }

    .viva-obsidian-nav {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        top: auto !important;
        /* BLOQUEO TOTAL DE SALTO AL TECHO */
        left: 0 !important;
        right: 0 !important;
        height: 44px !important;
        background: #000 !important;
        border-top: 1px solid rgba(212, 175, 55, 0.15) !important;
        z-index: 1000000 !important;
        align-items: center !important;
        justify-content: space-around !important;
        padding-top: 0 !important;
        padding-bottom: env(safe-area-inset-bottom) !important;
        margin: 0 !important;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.9) !important;
        transform: translateZ(0) !important;
        will-change: transform !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
        contain: paint layout !important;
    }

    .obsidian-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.6);
        transition: all 0.3s ease;
        width: 100%;
        height: 100%;
        position: relative;
    }

    .obsidian-item i {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }

    .obsidian-item .mobile-svg-icon {
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.9;
        width: 20px;
        height: 20px;
        display: block;
        flex-shrink: 0;
    }

    .obsidian-item.active {
        color: #ffffff;
    }

    .obsidian-item.active::after {
        content: '';
        position: absolute;
        bottom: 1px;
        width: 3px;
        height: 3px;
        background: #ffffff;
        border-radius: 50%;
        box-shadow: 0 0 10px #ffffff;
    }
}


/* --- VIVA OBSIDIAN NAV (BOTTOM BAR FIXED) --- */
.viva-obsidian-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100005;
    /* On top of everything */
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
}

.viva-obsidian-nav a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    padding: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.viva-obsidian-nav a.active {
    color: var(--accent-gold);
}

/* Hide on desktop */
@media (min-width: 1025px) {
    .viva-obsidian-nav {
        display: none !important;
    }
}

/* --- GLOBAL MOBILE HEADER (PROFESSIONAL NOIR) --- */
.viva-header-mobile {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 60px !important;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    z-index: 100000 !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
}

#spring-promo:not([style*="display: none"])~.viva-header-mobile {
    top: 40px !important;
}

.header-mobile-center {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
    flex: 1;
}

.header-mobile-icon {
    color: #fff;
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    background: none;
    border: 0;
    padding: 0;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

#header-notif-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    top: 14px;
    right: 12px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* --- ELITE NOIR HAMBURGER BUTTON --- */
.viva-hamburger-elite {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    z-index: 1000012 !important;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger-bars-noir {
    width: 28px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.bar-noir {
    height: 1.5px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.bar-1 {
    width: 100%;
}

.bar-2 {
    width: 60%;
}

/* Staggered effect: shorter middle line */
.bar-3 {
    width: 100%;
}

.menu-label-noir {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0.8;
    transition: all 0.4s ease;
}

/* --- ANIMATION TO X --- */
.viva-hamburger-elite.is-active .bar-1 {
    transform: translateY(8.5px) rotate(45deg);
    width: 100%;
}

.viva-hamburger-elite.is-active .bar-2 {
    opacity: 0;
    transform: translateX(-10px);
}

.viva-hamburger-elite.is-active .bar-3 {
    transform: translateY(-8.5px) rotate(-45deg);
    width: 100%;
}

.viva-hamburger-elite.is-active .menu-label-noir {
    opacity: 0;
    transform: translateX(5px);
}

.viva-hamburger-elite:active {
    transform: scale(0.92);
}

/* --- ELITE NOIR SIDEBAR (ULTIMATE EDITION) --- */
.viva-sidebar-overlay-elite {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 1000010 !important;
    visibility: hidden;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.viva-sidebar-overlay-elite.is-active {
    visibility: visible;
    opacity: 1;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: radial-gradient(circle at left, rgba(212, 175, 55, 0.05), rgba(0, 0, 0, 0.6));
}

.viva-sidebar-elite {
    position: fixed;
    top: 0; 
    left: 0;
    width: 65%;
    max-width: 200px;
    height: 100vh;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    z-index: 1000011 !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 60px 10px 30px;
    transform: translateX(-110%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s linear;
    box-shadow: 0 0 50px rgba(0, 0, 0, 1);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
    backface-visibility: hidden;
}

/* Custom Gold Scrollbar for Webkit */
.viva-sidebar-elite::-webkit-scrollbar {
    width: 2px;
}

.viva-sidebar-elite::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 10px;
}

.viva-sidebar-elite.is-active {
    transform: translateX(0);
}

.sidebar-nav-elite {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Sin gap para controlar todo con padding del link */
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.nav-item-elite {
    opacity: 0;
    transform: translateY(20px);
    /* Upward entrance for better flow */
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: calc(var(--i) * 0.05s);
}

.viva-sidebar-elite.is-active .nav-item-elite {
    opacity: 1;
    transform: translateY(0);
}

.nav-link-elite {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.52rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 0;
    /* Padding reducido para que quepan todos */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    width: 100%;
}

.nav-link-elite i {
    font-size: 0.8rem;
    color: rgba(212, 175, 55, 0.4);
    transition: all 0.4s ease;
}

.nav-link-elite:hover {
    color: #fff;
    letter-spacing: 5px;
    background: rgba(212, 175, 55, 0.05);
}

.nav-link-elite:hover i {
    color: var(--accent-gold);
    transform: scale(1.2);
}

.nav-link-elite.is-current {
    color: #fff;
    letter-spacing: 4px;
    background: rgba(212, 175, 55, 0.05);
}

.nav-link-elite.is-current i {
    color: var(--accent-gold);
}

/* SPECIAL BUTTONS */
.btn-reserve-elite {
    width: 90%;
    max-width: 160px;
    margin: 15px auto 5px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #d4af37 !important;
    text-align: center;
    border-radius: 4px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
    padding: 14px 0 !important;
    font-weight: 600;
    font-size: 0.55rem !important;
    letter-spacing: 3px !important;
}

.btn-jarvis-elite {
    width: 90%;
    max-width: 160px;
    margin: 20px auto 0 !important;
    background: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid rgba(34, 211, 238, 0.4) !important;
    color: #22d3ee !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 14px !important;
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.1);
    animation: jarvisPulse 3s infinite;
    font-size: 0.5rem !important;
    font-weight: 800;
}

@keyframes jarvisPulse {
    0% {
        box-shadow: 0 0 15px rgba(34, 211, 238, 0.05);
    }

    50% {
        box-shadow: 0 0 30px rgba(34, 211, 238, 0.15);
        border-color: rgba(34, 211, 238, 0.4);
    }

    100% {
        box-shadow: 0 0 15px rgba(34, 211, 238, 0.05);
    }
}

.jarvis-orb {
    width: 8px;
    height: 8px;
    background: #22d3ee;
    border-radius: 50%;
    box-shadow: 0 0 10px #22d3ee;
}

/* ═══════════════════════════════════════════════
   MENU STYLE SWITCHER — CHIP ROW
═══════════════════════════════════════════════ */
.menu-style-panel {
    list-style: none;
    padding: 8px 14px 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 4px;
}

.menu-style-label {
    display: block;
    font-size: 8px;
    letter-spacing: 0.18em;
    color: rgba(224, 224, 224, 0.38);
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.menu-style-options {
    display: flex;
    gap: 6px;
}

.menu-style-chip {
    flex: 1;
    padding: 4px 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    color: rgba(224, 224, 224, 0.45);
    font-size: 11px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.menu-style-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.menu-style-chip.is-selected {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
    color: #d4af37;
}

/* ═══════════════════════════════════════════════
   THEME 1 — FACEBOOK FUNCIONAL
   Activado con: body[data-menu-style="style-1"]
═══════════════════════════════════════════════ */
body[data-menu-style="style-1"] .viva-sidebar-elite {
    background: #1c1e21;
    border-right: 2px solid #1877f2;
    border-radius: 0 16px 16px 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* ─── HAMBURGER ICON BARS ─── */
/* Research-verified: 2px thick, 2px radius (subtle, not pill), 200ms snappy */
body[data-menu-style="style-1"] .viva-hamburger-elite .bar-noir {
    background: #1877f2;
    height: 2px;
    border-radius: 2px;
    transition: all 0.2s ease;
}

/* All 3 bars equal width (no stagger) */
body[data-menu-style="style-1"] .bar-2 {
    width: 100%;
}

/* 24px wide, gap-driven spacing (6px explicit gap) */
body[data-menu-style="style-1"] .hamburger-bars-noir {
    width: 24px;
    height: auto;
    gap: 6px;
    justify-content: flex-start;
}

/* 12px padding = 48px touch target (24px icon + 24px padding) */
body[data-menu-style="style-1"] .viva-hamburger-elite {
    padding: 12px;
    border-radius: 50%;
    transition: background 0.15s ease-out, box-shadow 0.15s ease-out;
}

/* Hover: 0.08 opacity (subtle per FB spec) */
body[data-menu-style="style-1"] .viva-hamburger-elite:hover {
    background: rgba(24, 119, 242, 0.08);
    box-shadow: inset 0 0 0 1px rgba(24, 119, 242, 0.1);
}

/* Active: 0.16 opacity + Material ripple (no scale shrink) */
@keyframes fb-ripple-tap {
    0%   { box-shadow: inset 0 0 0px rgba(24, 119, 242, 0.3); }
    100% { box-shadow: inset 0 0 8px rgba(24, 119, 242, 0.08); }
}

body[data-menu-style="style-1"] .viva-hamburger-elite:active {
    background: rgba(24, 119, 242, 0.16);
    transform: scale(1);
    animation: fb-ripple-tap 0.6s ease-out;
}

/* X animation — recalculated for 24px icon, 2px bars, 6px gaps
   bar-1 center=1px, bar-2 center=9px (target), bar-3 center=17px */
body[data-menu-style="style-1"] .viva-hamburger-elite.is-active .bar-1 {
    transform: translateY(8px) rotate(45deg);
    width: 100%;
}

body[data-menu-style="style-1"] .viva-hamburger-elite.is-active .bar-3 {
    transform: translateY(-8px) rotate(-45deg);
    width: 100%;
}

/* No text label (FB icon-only) */
body[data-menu-style="style-1"] .menu-label-noir {
    display: none;
}

body[data-menu-style="style-1"] .nav-link-elite {
    color: #e3e6ea;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.02em;
}

body[data-menu-style="style-1"] .nav-link-elite i {
    color: #1877f2;
    transition: color 0.2s;
}

body[data-menu-style="style-1"] .nav-link-elite:hover {
    color: #ffffff;
    letter-spacing: 0.04em;
}

body[data-menu-style="style-1"] .nav-link-elite:hover i {
    color: #5ba5fa;
}

body[data-menu-style="style-1"] .nav-item-elite::after {
    background: #1877f2;
}

body[data-menu-style="style-1"] .menu-style-panel {
    border-bottom-color: rgba(24, 119, 242, 0.2);
}

body[data-menu-style="style-1"] .menu-style-chip.is-selected {
    background: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.6);
    color: #5ba5fa;
}

body[data-menu-style="style-1"] .btn-reserve-elite {
    border-color: #1877f2 !important;
    color: #5ba5fa !important;
}

body[data-menu-style="style-1"] .btn-reserve-elite:hover {
    background: rgba(24, 119, 242, 0.15) !important;
}
/* ═══════════════════════════════════════════════
   THEME 2 — HÍBRIDO PREMIUM (default — base style)
   Activado con: body[data-menu-style="style-2"]
═══════════════════════════════════════════════ */
/* No overrides needed — this is the existing base style */

/* ═══════════════════════════════════════════════
   THEME 3 — CINEMÁTICO EDITORIAL
   Activado con: body[data-menu-style="style-3"]
═══════════════════════════════════════════════ */
body[data-menu-style="style-3"] .viva-sidebar-elite {
    background: rgba(8, 8, 8, 0.98);
    border-right: none;
    border-radius: 0;
    width: 80vw;
    max-width: 340px;
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
}

body[data-menu-style="style-3"] .viva-sidebar-overlay-elite {
    background: rgba(0, 0, 0, 0.88);
}

body[data-menu-style="style-3"] .nav-link-elite {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #c0c0c0;
    text-transform: uppercase;
}

body[data-menu-style="style-3"] .nav-link-elite i {
    display: none;
}

body[data-menu-style="style-3"] .nav-link-elite:hover {
    color: #ffffff;
    letter-spacing: 0.18em;
}

body[data-menu-style="style-3"] .nav-item-elite {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body[data-menu-style="style-3"] .nav-item-elite::after {
    background: #e0e0e0;
}

body[data-menu-style="style-3"] .menu-style-panel {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body[data-menu-style="style-3"] .menu-style-chip.is-selected {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

body[data-menu-style="style-3"] .btn-reserve-elite {
    font-family: 'Cormorant Garamond', serif !important;
    letter-spacing: 0.12em !important;
    font-size: 12px !important;
}

body[data-menu-style="style-3"] .btn-jarvis-elite {
    font-family: 'Cormorant Garamond', serif !important;
    letter-spacing: 0.12em !important;
    font-size: 12px !important;
}

body[data-menu-style="style-3"] .jarvis-orb {
    display: none;
}

/* ═══════════════════════════════════════════════
   PREMIUM PHOTOGRAPHER UPGRADE
═══════════════════════════════════════════════ */
.viva-header-mobile {
    background: linear-gradient(120deg, rgba(6, 10, 18, 0.96), rgba(14, 22, 34, 0.92)) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45) !important;
}

.header-mobile-center {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 0.78rem;
    letter-spacing: 2.8px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(247, 240, 225, 0.96);
}

.viva-hamburger-elite {
    padding: 10px 12px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header-mobile-icon {
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

body[data-menu-style="style-3"] .viva-sidebar-elite {
    width: 84vw;
    max-width: 360px;
    top: 2%;
    max-height: 96vh;
    border-radius: 0 24px 24px 0;
    border-right: 1px solid rgba(212, 175, 55, 0.24);
    background:
        radial-gradient(circle at 12% 8%, rgba(212, 175, 55, 0.08), transparent 32%),
        linear-gradient(145deg, rgba(9, 12, 18, 0.98), rgba(4, 7, 12, 0.97));
}

body[data-menu-style="style-3"] .viva-sidebar-elite::after {
    border-radius: 0 22px 22px 0;
    background: linear-gradient(150deg, rgba(6, 9, 14, 0.98), rgba(3, 5, 9, 0.98));
}

body[data-menu-style="style-3"] .nav-link-elite {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(242, 236, 225, 0.9);
    padding: 11px 14px;
    justify-content: flex-start;
    border-left: 2px solid transparent;
}

body[data-menu-style="style-3"] .nav-link-elite i {
    display: inline-flex;
    color: rgba(212, 175, 55, 0.75);
    font-size: 0.95rem;
    min-width: 18px;
}

body[data-menu-style="style-3"] .nav-link-elite:hover,
body[data-menu-style="style-3"] .nav-link-elite.is-current {
    color: #ffffff;
    border-left-color: rgba(212, 175, 55, 0.95);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.14), rgba(212, 175, 55, 0.02));
    letter-spacing: 0.12em;
}

body[data-menu-style="style-3"] .btn-reserve-elite,
body[data-menu-style="style-3"] .btn-jarvis-elite {
    width: 94%;
    max-width: 310px;
    border-radius: 12px;
}

/* LOCK SCROLL */
body.sidebar-open {
    overflow: hidden !important;
}

body.sidebar-open .viva-obsidian-nav {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ABOUT MODAL SYSTEM */
#about-modal {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#about-modal.active {
    opacity: 1;
}

.about-modal-content {
    background: #050505;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    position: relative;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#about-modal.active .about-modal-content {
    transform: scale(1);
}

.about-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-flex-container {
    display: flex;
    flex-direction: column;
}

.about-img-side {
    width: 100%;
    height: 350px;
    flex-shrink: 0;
    position: relative;
}

@media (min-width: 768px) {
    .about-flex-container {
        flex-direction: row;
    }

    .about-img-side {
        width: 400px;
        height: 500px;
    }
}

/* HERO CAPSULE BUTTONS */
.hero-btn-capsule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 22px;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    text-align: center;
    line-height: 1.2;
    width: 100%;
}

.btn-cyan-glass {
    background: rgba(0, 229, 255, 0.1);
    color: #00e5ff;
    border: 2px solid rgba(0, 229, 255, 0.5);
}

.btn-white-luxe {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
}

.btn-gold-artist {
    background: rgba(212, 175, 55, 0.15);
    color: #fff;
    border: 2px solid rgba(212, 175, 55, 0.6);
}