@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

/* ==============================================
   1. VARIABLES CORE (IDENTIDAD R&A)
   ============================================== */
:root {
    --navy: #1c2b4b;
    --navy-dark: #0b1120;
    --teal: #06B6D4;
    --teal-light: #5db3c2;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-main: #334155;
    --bg-main: #f8fafc;
    --max-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; font-family: 'Poppins', sans-serif; }

body {
    background-color: var(--bg-main); color: var(--text-main);
    line-height: 1.6; overflow-x: hidden; position: relative;
    background-image: linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; width: 100%; }
.section-padding { padding: 100px 0; }
.text-gradient { background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%); -webkit-background-clip: text; color: transparent; }
.text-gradient-cyan { background: linear-gradient(135deg, var(--teal) 0%, #38bdf8 100%); -webkit-background-clip: text; color: transparent; }
.text-highlight { color: var(--teal); position: relative; }
.text-highlight::after { content: ''; position: absolute; bottom: 4px; left: 0; width: 100%; height: 8px; background: rgba(6, 182, 212, 0.2); z-index: -1; }

/* ==============================================
   2. SISTEMA AMBIENTAL (Luciérnagas)
   ============================================== */
#ray-fireflies-container, #evangeline-glows { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; pointer-events: none; }
.ray-firefly { position: absolute; width: 4px; height: 4px; background: var(--teal); border-radius: 50%; box-shadow: 0 0 12px 3px rgba(6, 182, 212, 0.8); opacity: 0; animation: floatUp 15s infinite ease-in; }
.evangeline-star { position: absolute; width: 2px; height: 2px; background: #fff; border-radius: 50%; box-shadow: 0 0 10px 2px rgba(255,255,255,0.8); opacity: 0; animation: pulseStar 5s infinite ease-in-out; }

@keyframes floatUp { 0% { transform: translateY(100vh) scale(0); opacity: 0; } 20% { opacity: 0.8; } 80% { opacity: 0.6; } 100% { transform: translateY(-20vh) scale(1.5); opacity: 0; } }
@keyframes pulseStar { 0%, 100% { opacity: 0.1; transform: scale(1); } 50% { opacity: 1; transform: scale(1.5); } }

/* ==============================================
   3. HEADER Y NAVEGACIÓN
   ============================================== */
.top-system-bar { background-color: var(--navy); color: #94a3b8; font-family: monospace; font-size: 0.75rem; padding: 5px 0; letter-spacing: 1px; }
.top-bar-flex { display: flex; justify-content: space-between; align-items: center; }
.pulse-dot { display: inline-block; width: 8px; height: 8px; background-color: #10b981; border-radius: 50%; margin-right: 5px; box-shadow: 0 0 8px #10b981; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.tech-header { position: fixed; top: 0; width: 100%; z-index: 1000; background: var(--glass-bg); backdrop-filter: blur(15px); border-bottom: 1px solid var(--glass-border); transition: all 0.3s ease; }
.tech-header.scrolled { box-shadow: 0 10px 30px rgba(28, 43, 75, 0.1); top: -30px; } /* Oculta la top bar al bajar */
.header-container { display: flex; justify-content: space-between; align-items: center; height: 85px; }

.logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 60px; width: auto; transition: 0.3s ease; }
.logo-link:hover .logo-img { transform: scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-main { font-size: 1.15rem; font-weight: 800; color: var(--navy); }
.brand-sub { font-size: 1.3rem; font-weight: 900; color: var(--teal); }

.nav-menu { position: relative; display: flex; align-items: center; padding: 0 10px; }
.nav-links { display: flex; gap: 35px; list-style: none; position: relative; z-index: 2; }
.nav-link { color: var(--navy); font-weight: 600; text-decoration: none; font-size: 0.95rem; padding: 10px 0; transition: color 0.3s; }
.nav-link:hover { color: var(--teal); }
.firefly-tracker { position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background-color: var(--teal); border-radius: 50%; box-shadow: 0 -2px 15px 4px rgba(6, 182, 212, 0.6); transition: all 0.4s ease; opacity: 0; z-index: 1; }

.btn-cyber, .btn-cyber-solid { background: var(--navy); color: white; padding: 10px 22px; border-radius: 8px; text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(28, 43, 75, 0.2); }
.btn-cyber:hover, .btn-cyber-solid:hover { background: var(--teal); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4); color: white; }
.btn-cyber-outline { background: transparent; color: var(--navy); padding: 12px 24px; border-radius: 8px; font-weight: 600; text-decoration: none; border: 2px solid var(--navy); transition: all 0.3s; }
.btn-cyber-outline:hover { background: rgba(28, 43, 75, 0.05); }
.mobile-toggle { display: none; background: transparent; border: none; font-size: 1.8rem; color: var(--navy); cursor: pointer; }

.data-flow-border { height: 2px; width: 100%; background: linear-gradient(90deg, transparent, var(--teal), transparent); background-size: 200% 100%; animation: dataFlow 3s linear infinite; }
@keyframes dataFlow { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* ==============================================
   4. HERO SECTION
   ============================================== */
.hero-section { min-height: 85vh; padding-top: 140px; padding-bottom: 60px; display: flex; align-items: center; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }

.tech-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(6, 182, 212, 0.1); color: var(--teal); padding: 8px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 600; border: 1px solid rgba(6, 182, 212, 0.2); margin-bottom: 25px; }
.hero-title { font-size: 4rem; font-weight: 900; line-height: 1.1; color: var(--navy); margin-bottom: 25px; }
.cursor-blink { font-weight: 400; color: var(--teal); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero-subtitle { font-size: 1.1rem; color: #64748b; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 15px; }

.hero-visual { position: relative; width: 100%; display: flex; justify-content: center; animation: floatElement 6s ease-in-out infinite; }
@keyframes floatElement { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }

.glow-orb { position: absolute; width: 300px; height: 300px; border-radius: 50%; filter: blur(70px); z-index: -1; animation: floatOrb 8s infinite alternate; }
.orb-cyan { background: rgba(6, 182, 212, 0.3); top: -20px; right: 10%; }
.orb-blue { background: rgba(59, 130, 246, 0.2); bottom: -40px; left: 10%; animation-delay: 2s; }
@keyframes floatOrb { 0% { transform: scale(1) translate(0,0); } 100% { transform: scale(1.1) translate(20px, -20px); } }

.floating-code-window { background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; width: 100%; max-width: 500px; box-shadow: 0 30px 60px rgba(15, 23, 42, 0.4); }
.window-header { background: #1e293b; padding: 12px 15px; display: flex; align-items: center; border-radius: 12px 12px 0 0; }
.window-dots { display: flex; gap: 6px; } .dot { width: 12px; height: 12px; border-radius: 50%; } .dot.red { background: #ff5f56; } .dot.yellow { background: #ffbd2e; } .dot.green { background: #27c93f; }
.window-title { margin-left: 20px; color: #94a3b8; font-family: monospace; font-size: 0.8rem; }
.window-body { padding: 25px; color: #f8fafc; font-family: 'Courier New', monospace; font-size: 0.9rem; line-height: 1.6; }
.c-keyword { color: #c678dd; font-weight: bold; } .c-method { color: #61afef; } .c-var { color: #e06c75; } .c-string { color: #10b981; } .c-class { color: #e5c07b; } .c-comment { color: #64748b; font-style: italic; } .c-status { color: #38bdf8; }

/* ==============================================
   5. BENTO GRID DE SERVICIOS
   ============================================== */
.services-advanced-section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; color: var(--navy); }

.services-bento-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.srv-card { background: #ffffff; border-radius: 20px; padding: 40px 30px; position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04); border: 1px solid rgba(6, 182, 212, 0.1); transition: transform 0.4s ease, border-color 0.4s; z-index: 1; }
.srv-glow-bg { position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%); transform: translate(-50%, -50%); transition: width 0.6s ease, height 0.6s ease; z-index: -1; }
.srv-card:hover { transform: translateY(-10px); border-color: rgba(6, 182, 212, 0.5); }
.srv-card:hover .srv-glow-bg { width: 200%; height: 200%; }

.srv-icon { font-size: 2.5rem; color: var(--teal); margin-bottom: 20px; transition: transform 0.3s; }
.srv-card:hover .srv-icon { transform: scale(1.15) rotate(-5deg); }
.srv-content h3 { color: var(--navy); font-size: 1.3rem; font-weight: 700; margin-bottom: 15px; }
.srv-content p { color: #64748b; font-size: 0.95rem; line-height: 1.6; }

/* Software Premium Élite */
.featured-software-elite { background: var(--navy-dark); color: white; grid-column: 1 / -1; border: 1px solid rgba(6, 182, 212, 0.2); }
.elite-glow-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(6, 182, 212, 0.1) 0%, transparent 70%); z-index: -1; }
.soft-header-elite { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; margin-bottom: 30px; text-align: center; }
.soft-header-elite h3 { color: #fff; font-size: 1.8rem; }
.software-brands-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.neon-title { color: var(--teal); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }

.brand-items { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.brand-item { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); padding: 15px; border-radius: 12px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: all 0.4s; }
.brand-item:hover { background: rgba(6, 182, 212, 0.1); border-color: var(--teal); transform: translateY(-5px); box-shadow: 0 10px 25px rgba(6, 182, 212, 0.2); }
.brand-icon { font-size: 2.5rem; color: var(--teal); margin-bottom: 10px; transition: 0.4s; filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.3)); }
.brand-item:hover .brand-icon { color: white; transform: scale(1.2); filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9)); }

/* ==============================================
   6. TERMINAL INTERACTIVA
   ============================================== */
.terminal-container { background: #0f172a; border-radius: 12px; box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3); border: 1px solid rgba(6, 182, 212, 0.2); overflow: hidden; margin-top: 30px; }
.terminal-header { background: #1e293b; padding: 12px 20px; display: flex; align-items: center; position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); }
.terminal-buttons { display: flex; gap: 8px; } .t-btn { width: 12px; height: 12px; border-radius: 50%; } .t-btn.close { background: #ef4444; } .t-btn.minimize { background: #eab308; } .t-btn.expand { background: #22c55e; }
.terminal-title { color: #94a3b8; font-size: 0.8rem; font-family: monospace; position: absolute; left: 50%; transform: translateX(-50%); }
.terminal-body-grid { display: grid; grid-template-columns: 250px 1fr; min-height: 320px; }
.terminal-sidebar { background: #111827; padding: 20px 10px; border-right: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; gap: 8px; }
.term-tab { background: transparent; border: none; color: #94a3b8; padding: 12px; border-radius: 6px; text-align: left; font-family: monospace; cursor: pointer; transition: 0.3s; display: flex; gap: 10px; }
.term-tab:hover, .term-tab.active { background: rgba(6, 182, 212, 0.1); color: var(--teal); box-shadow: inset 3px 0 0 var(--teal); }
.terminal-content { padding: 30px; color: #e2e8f0; }
.tab-panel { display: none; } .tab-panel.active { display: block; animation: fadeInTerminal 0.4s; }
@keyframes fadeInTerminal { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
.code-line { font-family: monospace; font-size: 0.85rem; margin-bottom: 8px; }
.tech-badges { display: flex; gap: 10px; margin-top: 25px; flex-wrap: wrap; }
.tech-badges span { background: rgba(255,255,255,0.05); padding: 6px 14px; border-radius: 4px; font-size: 0.8rem; font-family: monospace; border: 1px solid rgba(255,255,255,0.1); color: #cbd5e1; }
.tech-badges span i { color: var(--teal); }

/* ==============================================
   7. PROYECTOS ÉLITE Y EFECTOS
   ============================================== */
.projects-elite-section { padding: 100px 0; background: var(--navy-dark); }
.elite-projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-top: 50px; }
.elite-project-card { position: relative; border-radius: 20px; padding: 2px; overflow: hidden; background: #0f172a; z-index: 1; }
.animated-border { position: absolute; width: 200%; height: 200%; top: -50%; left: -50%; background: conic-gradient(from 0deg, transparent 70%, #06B6D4 80%, #3b82f6 100%); animation: rotateBorder 4s linear infinite; z-index: -1; }
@keyframes rotateBorder { 100% { transform: rotate(360deg); } }
.card-inner { background: rgba(15, 23, 42, 0.95); border-radius: 18px; padding: 40px 30px; height: 100%; display: flex; flex-direction: column; backdrop-filter: blur(20px); }
.project-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.tech-badge { background: rgba(6, 182, 212, 0.1); color: var(--teal); padding: 6px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; }
.status-indicator { font-size: 0.8rem; color: #94a3b8; display: flex; align-items: center; gap: 5px; }
.status-indicator.live::before { content: ''; display: block; width: 8px; height: 8px; background: #10b981; border-radius: 50%; box-shadow: 0 0 10px #10b981; animation: blinkLive 1.5s infinite; }
.client-mini-logo { height: auto; width: 90px; border-radius: 8px; background: #ffffff; padding: 8px; box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2); border: 1px solid rgba(6, 182, 212, 0.3); transition: 0.5s; }
.elite-project-card:hover .client-mini-logo { transform: scale(1.15) rotate(-3deg); box-shadow: 0 10px 30px rgba(6, 182, 212, 0.6); border-color: var(--teal); }

.project-body { flex-grow: 1; }
.project-title { color: #ffffff; font-size: 1.6rem; margin-bottom: 15px; font-weight: 800; }
.project-desc { color: #94a3b8; font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.tech-stack { display: flex; gap: 10px; margin-bottom: 30px; }
.tech-stack span { color: #cbd5e1; font-size: 0.8rem; border-bottom: 1px solid #334155; }
.btn-neon { display: inline-block; width: 100%; text-align: center; padding: 15px 20px; background: transparent; color: var(--teal); border: 1px solid var(--teal); border-radius: 8px; font-weight: 600; text-decoration: none; transition: 0.3s; }
.btn-neon:hover { background: var(--teal); color: #0f172a; box-shadow: 0 0 20px rgba(6, 182, 212, 0.4); }
.btn-neon.disabled { border-color: #334155; color: #64748b; cursor: not-allowed; }

/* ==============================================
   8. FOOTER SVG WAVES
   ============================================== */
.premium-footer { background: var(--bg-main); position: relative; margin-top: 50px; }
.wave-divider { line-height: 0; }
.editorial-waves { width: 100%; height: 120px; }
.parallax-waves > use { animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite; }
.parallax-waves > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax-waves > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax-waves > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax-waves > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }
@keyframes move-forever { 0% { transform: translate3d(-90px,0,0); } 100% { transform: translate3d(85px,0,0); } }

.footer-core { background: var(--navy-dark); padding: 60px 0 20px 0; color: #cbd5e1; }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; margin-bottom: 40px; }
.f-brand p { margin: 20px 0; font-size: 0.95rem; line-height: 1.6; }
.social-links { display: flex; gap: 15px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: 0.3s; }
.social-links a:hover { background: var(--teal); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(6, 182, 212, 0.4); }
.f-links ul { list-style: none; margin-top: 20px; }
.f-links a { color: #cbd5e1; text-decoration: none; transition: 0.3s; display: block; margin-bottom: 10px; }
.f-links a:hover { color: var(--teal); transform: translateX(5px); }
.f-contact h4, .f-links h4 { color: white; margin-bottom: 20px; }
.contact-item { display: flex; gap: 15px; align-items: flex-start; }
.contact-item i { color: var(--teal); margin-top: 4px; }
.contact-item strong { display: block; color: white; }
.contact-item span { font-size: 0.85rem; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 25px; font-size: 0.85rem; }
.legal-flex { display: flex; justify-content: space-between; align-items: center; }

/* ==============================================
   9. MARQUEE & ANIMACIONES DE ENTRADA
   ============================================== */
.tech-stack-section { padding: 40px 0; background: white; border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); }
.marquee-container { width: 100%; overflow: hidden; white-space: nowrap; position: relative; }
.marquee-content { display: inline-flex; gap: 50px; animation: scrollLeft 30s linear infinite; }
.marquee-content span { font-size: 1.5rem; color: var(--navy); font-weight: 600; display: flex; align-items: center; gap: 10px; opacity: 0.6; transition: 0.3s; }
.marquee-content span:hover { opacity: 1; color: var(--teal); }
@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.reveal, .animate-up { opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active, .animate-up.active { opacity: 1; transform: translateY(0); }
.animate-fade-in { opacity: 0; transform: scale(0.95); transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.animate-fade-in.active { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; } .delay-5 { transition-delay: 0.5s; }


/* --- NUEVA ESTRUCTURA: HUB DE ACCIÓN --- */
.engagement-hub { padding: 120px 0; min-height: 80vh; display: flex; align-items: center; }

.qr-action-center { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 80px; }

/* El efecto visual experto para el QR */
.qr-glow-wrapper { position: relative; padding: 20px; border-radius: 30px; background: rgba(255,255,255,0.05); margin-bottom: 30px; }
.qr-pulse-effect { position: absolute; inset: 0; border-radius: 30px; box-shadow: 0 0 20px rgba(6, 182, 212, 0.4); animation: pulseQR 2s infinite ease-in-out; z-index: -1; }
.main-qr-code { width: 280px; height: 280px; border-radius: 20px; transition: 0.5s ease; border: 4px solid white; }
.main-qr-code:hover { transform: scale(1.05) rotate(2deg); cursor: pointer; box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3); }

@keyframes pulseQR { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.5; } 100% { transform: scale(1); opacity: 1; } }

.qr-text-content h1 { font-size: 3rem; margin-bottom: 10px; }
.status-badge { display: inline-flex; align-items: center; background: #0b1120; color: white; padding: 6px 15px; border-radius: 20px; font-size: 0.8rem; margin-top: 15px; border: 1px solid var(--teal); }

/* Grid de información */
.tech-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 800px; margin: 0 auto; }
.info-card { background: white; padding: 30px; border-radius: 20px; text-align: center; border: 1px solid #e2e8f0; transition: 0.4s; }
.info-card:hover { border-color: var(--teal); box-shadow: 0 10px 30px rgba(0,0,0,0.05); transform: translateY(-5px); }
.info-card i { font-size: 2rem; color: var(--teal); margin-bottom: 15px; }

/* ==============================================
   10. RESPONSIVE (MÓVIL - HEADER SIEMPRE VISIBLE)
   ============================================== */
@media (max-width: 992px) {
    .hero-grid, .terminal-body-grid, .software-brands-grid, .f-grid { 
        grid-template-columns: 1fr;
        text-align: center; 
    }
    .hero-title { font-size: 2.8rem; }
    .hero-actions { justify-content: center; }
    .floating-code-window { display: none; }
    .terminal-sidebar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .contact-item { justify-content: center; text-align: center; }
    .social-links { justify-content: center; }
    .legal-flex { flex-direction: column; gap: 10px; text-align: center; }

    /* CORRECCIÓN: HEADER SIEMPRE VISIBLE */
    .nav-wrapper { 
        display: block !important; 
        width: 100% !important; 
        margin-top: 15px;
    }
    
    .mobile-toggle { 
        display: none !important; 
    }
    
    .nav-menu { 
        position: relative !important; 
        top: 0 !important; 
        width: 100% !important; 
        background: transparent !important; 
        backdrop-filter: none !important; 
        padding: 0 !important; 
        box-shadow: none !important; 
        clip-path: none !important; 
    }

    .nav-links { 
        flex-direction: row; 
        justify-content: center; 
        gap: 15px; 
        font-size: 0.85rem; 
    }
}
