/*
  Pro Citas - Premium Landing Page Styles
  Creative Direction & UI/UX Full Upgrade
*/

*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --font-primary: 'Inter', sans-serif;
    --ease-out-cubic: cubic-bezier(0.215, 0.610, 0.355, 1);
}

/* --- TEMA OSCURO --- */
.dark-mode, body.dark-mode {
    --bg-primary: #0D1117;
    --bg-secondary: #161B22;
    --bg-tertiary: #21262d;
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --border-primary: rgba(255, 255, 255, 0.1);
    --brand-primary: #4A90E2;
    --brand-secondary: #58A6FF;
    --shadow-color: rgba(0, 0, 0, 0.5);
    
    /* El Glow del ratón */
    --glow-color: rgba(74, 144, 226, 0.15);
    
    /* El Glow del Hero (Estático) */
    --hero-glow: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 60%);
    
    /* Botones Secundarios Oscuros */
    --btn-sec-bg: rgba(255, 255, 255, 0.05);
    --btn-sec-border: rgba(255, 255, 255, 0.1);
    --btn-sec-hover: rgba(255, 255, 255, 0.1);
}

/* --- TEMA CLARO DINÁMICO (SERIO Y LIMPIO) --- */
body.light-mode {
    --bg-primary: #FAFAFA;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #F4F4F5;
    --text-primary: #09090B;
    --text-secondary: #52525B;
    --border-primary: rgba(0, 0, 0, 0.08);
    --brand-primary: #2563EB; /* Azul vibrante corporativo */
    --brand-secondary: #3B82F6;
    --shadow-color: rgba(0, 0, 0, 0.06);
    
    /* El Glow del ratón en Blanco (azul muy claro para no ensuciar el blanco) */
    --glow-color: rgba(37, 99, 235, 0.08); 
    
    /* El Glow del Hero esconde para mantener la página blanca pura */
    --hero-glow: none;
    
    /* Botones Secundarios Claros */
    --btn-sec-bg: #FFFFFF;
    --btn-sec-border: #E4E4E7;
    --btn-sec-hover: #F4F4F5;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-primary);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3 { font-weight: 900; letter-spacing: -0.04em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; letter-spacing: -0.06em; }
h2 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.2; }
p { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* --- EFECTO ÚNICO: Resplandor que sigue al cursor --- */
.mouse-glow {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none; z-index: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--glow-color), transparent 40%);
    transition: opacity 0.5s ease;
    will-change: background;
}

main, .navbar-wrapper, .footer { position: relative; z-index: 1; }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.8rem 1.5rem; border-radius: 0.75rem; font-weight: 700; font-size: 1rem;
    text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: all 0.2s var(--ease-out-cubic);
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }

.btn-primary {
    background: var(--brand-primary); color: #fff;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.3), 0 4px 10px rgba(0,0,0,0.2);
    position: relative; overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}
.btn-primary::after {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(74, 144, 226, 0.5), 0 6px 15px rgba(0,0,0,0.2); }
.btn-primary:hover::after { left: 100%; }

.btn-secondary {
    background: var(--btn-sec-bg); color: var(--text-primary); border: 1px solid var(--btn-sec-border);
}
.btn-secondary:hover { background: var(--btn-sec-hover); }
.btn-block { width: 100%; }

/* --- HEADER FLOTANTE TIPO ISLA (APPLE / VERCEL STYLE) --- */
.navbar-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    pointer-events: none; /* Deja pasar clicks fuera de la barra */
}
.navbar {
    pointer-events: auto; /* Reactiva los clicks dentro de la barra */
    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-primary);
    border-radius: 100px;
    padding: 0.5rem 1.5rem;
    width: 90%;
    max-width: 1100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.navbar-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.navbar-logo { display: flex; align-items: center; gap: 0.75rem; font-weight: 800; font-size: 1.25rem; color: var(--text-primary); text-decoration: none; }
.navbar-logo img { height: 32px; }
.navbar-menu { display: flex; gap: 2rem; }
.navbar-menu a { color: var(--text-secondary); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.navbar-menu a:hover { color: var(--text-primary); }
.navbar-actions { display: flex; gap: 1rem; align-items: center; }

/* Control de Vistas (Desktop) */
.mobile-nav-controls { display: none !important; }
.mobile-menu { display: none !important; }
.desktop-only { display: flex !important; }

/* --- BOTÓN THEME TOGGLE (EL SVG AHORA ES VISIBLE SIEMPRE) --- */
.theme-toggle {
    background: transparent; border: 1px solid var(--border-primary); 
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s ease;
    /* FORZA EL COLOR DEL TRAZO DEL SVG */
    color: var(--text-primary); 
}
.theme-toggle svg {
    stroke: var(--text-primary);
}
.theme-toggle:hover { background: var(--bg-tertiary); }
body.dark-mode .sun-icon { display: block; }
body.dark-mode .moon-icon { display: none; }
body.light-mode .sun-icon { display: none; }
body.light-mode .moon-icon { display: block; }

/* --- BOTÓN WHATSAPP FLOTANTE --- */
.floating-wa {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background-color: #25D366; color: #FFF; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); z-index: 9999; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-wa svg { width: 34px; height: 34px; }
.floating-wa:hover { transform: scale(1.1) translateY(-5px); }

/* --- Hero Section --- */
.hero { position: relative; padding: 10rem 0 8rem 0; text-align: center; overflow: hidden; }
.hero-glow {
    position: absolute; top: -20%; left: 50%; width: 800px; height: 800px;
    background: var(--hero-glow); transform: translateX(-50%); pointer-events: none; z-index: -1;
}
.hero-content { display: flex; flex-direction: column; align-items: center; }
.hero-content h1 {
    max-width: 800px; margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 60%, #8b949e 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
body.light-mode .hero-content h1 { background: linear-gradient(180deg, #09090B 60%, #52525B 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { max-width: 600px; margin-bottom: 2.5rem; font-size: 1.25rem; }
.hero-actions { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.hero-footer p { font-size: 0.9rem; color: var(--text-secondary); }

.hero-dashboard { margin-top: 5rem; perspective: 2000px; }
.hero-dashboard img {
    width: 100%; max-width: 900px; min-height: 400px; border-radius: 1rem; border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 30px 60px rgba(0, 0, 0, 0.5); transform-style: preserve-3d; will-change: transform;
}
body.light-mode .hero-dashboard img { border: 1px solid rgba(0, 0, 0, 0.05); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 30px 60px rgba(0, 0, 0, 0.15); }

/* --- Social Proof --- */
.social-proof { padding: 2rem 0 6rem; text-align: center; border-bottom: 1px solid var(--border-primary); }
.social-proof p { font-size: 1rem; margin-bottom: 2rem; }
.logos-slider { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent); mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent); }
.logos-track { display: flex; width: fit-content; animation: scroll 30s linear infinite; }
.logos-track span { display: flex; align-items: center; gap: 0.6rem; color: var(--text-secondary); font-weight: 600; font-size: 1.1rem; padding: 0 2rem; white-space: nowrap; }
.logos-track svg { color: var(--brand-primary); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Section Base --- */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-tag {
    display: inline-block; background: var(--bg-secondary); color: var(--text-secondary);
    padding: 0.5rem 1rem; border-radius: 99px; font-size: 0.9rem; font-weight: 700; border: 1px solid var(--border-primary); margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: 1rem; }

/* --- Features Section --- */
.features { padding: 8rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; } /* FORZADO A 2x2 en PC */
.feature-card { background: var(--bg-secondary); padding: 2rem; border-radius: 1rem; border: 1px solid var(--border-primary); transition: all 0.3s var(--ease-out-cubic); }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.2); }
body.light-mode .feature-card:hover { border-color: var(--brand-primary); box-shadow: 0 10px 30px var(--shadow-color); }
.feature-icon { font-size: 1.5rem; width: 50px; height: 50px; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.icon-blue { background: rgba(74, 144, 226, 0.1); color: var(--brand-secondary); }
.icon-green { background: rgba(34, 197, 94, 0.1); color: #34D399; }
.icon-purple { background: rgba(167, 139, 250, 0.1); color: #A78BFA; }
.icon-orange { background: rgba(245, 158, 11, 0.1); color: #FBBF24; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 1rem; }

/* --- COMPARISON SECTION --- */
.comparison { padding: 6rem 0; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.comparison-card { padding: 3rem; border-radius: 1.5rem; position: relative; }
.old-way { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-primary); opacity: 0.7; }
body.light-mode .old-way { background: var(--bg-tertiary); opacity: 1; }
.pro-way { background: linear-gradient(145deg, rgba(74, 144, 226, 0.1), transparent); border: 1px solid rgba(74, 144, 226, 0.4); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); transform-style: preserve-3d; }
body.light-mode .pro-way { box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15); background: #FFFFFF; border: 1px solid var(--brand-primary); }
.pro-way h3, .pro-way ul { transform: translateZ(30px); }
.comparison-card ul { list-style: none; padding: 0; margin-top: 1.5rem; }
.comparison-card li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-size: 1.1rem; }
.comparison-card li svg { flex-shrink: 0; }
body.light-mode .comparison-card.old-way li svg { stroke: #DC2626; } /* Rojo fuerte de día */

/* --- How It Works Section --- */
.how-it-works { padding: 8rem 0; }
.steps-container { position: relative; display: flex; flex-direction: column; gap: 4rem; }
.steps-container::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: var(--border-primary); }
.step { display: flex; align-items: flex-start; gap: 2rem; }
.step-number {
    flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: var(--bg-secondary); border: 1px solid var(--border-primary); font-size: 1.25rem; font-weight: 700; color: var(--brand-primary); z-index: 1;
}
.step-content h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.step-content p { font-size: 1.1rem; }

/* --- PRICING SECTION (ALINEACIÓN MATEMÁTICA PERFECTA) --- */
.pricing { padding: 8rem 0; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columnas para que quepan todos los planes */
    gap: 2rem;
    align-items: stretch; /* TODAS miden exactamente la misma altura */
    max-width: 1200px; /* Aumentamos un poco para acomodar las 4 */
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 1.5rem;
    padding: 3.5rem 2rem;
    position: relative;
    text-align: left;
    
    /* El truco de Flexbox para alinear el botón */
    display: flex;
    flex-direction: column;
    height: 100%; 
    transition: all 0.3s var(--ease-out-cubic);
}

.pricing-card.popular {
    background: linear-gradient(145deg, var(--bg-secondary), var(--bg-primary));
    border: 1px solid var(--brand-primary);
    transform: scale(1.05); /* Efecto Pop-out */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

body.light-mode .pricing-card.popular {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-primary);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    white-space: nowrap;
}

.pricing-header h3 { font-size: 2rem; text-align: center; }
.pricing-header p { font-size: 1.1rem; margin-top: 0.5rem; text-align: center; }

.price { display: flex; align-items: baseline; justify-content: center; margin: 2rem 0; }
.price-amount { font-size: 2.5rem; font-weight: 900; color: var(--text-primary); }
.pricing-card.popular .price-amount { font-size: 2.8rem; color: var(--brand-primary); }
.price-period { font-size: 1rem; color: var(--text-secondary); margin-left: 0.5rem; }

.savings {
    text-align: center;
    color: #10B981; /* Verde esmeralda (éxito) */
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.pricing-features { 
    list-style: none; padding: 0; margin: 0 auto; width: fit-content;
    /* El flex-grow ocupa todo el espacio sobrante del centro */
    flex-grow: 1; 
    display: flex; flex-direction: column;
}
.pricing-features li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; font-weight: 500; font-size: 1.05rem; }
.pricing-features svg { flex-shrink: 0; width: 20px; height: 20px; color: #10B981; }

/* Empuja el botón al borde exacto de abajo en todas las tarjetas */
.pricing-card .btn-block { margin-top: 2.5rem; width: 100%; justify-content: center; }

/* --- FAQ Section --- */
.faq { padding: 8rem 0; }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-primary); }
.faq-question { width: 100%; background: none; border: none; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; cursor: pointer; text-align: left; }
.faq-question span { font-size: 1.2rem; font-weight: 600; color: var(--text-primary); }
.faq-chevron { color: var(--text-secondary); transition: transform 0.3s var(--ease-out-cubic); }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out-cubic), padding 0.5s var(--ease-out-cubic); }
.faq-answer p { padding-bottom: 1.5rem; font-size: 1.1rem; }

/* --- CTA FINAL (PREMIUM GLOW) --- */
.cta { padding: 8rem 0; }
.cta-content {
    background: linear-gradient(135deg, #1e3a8a, #0f172a); 
    border-radius: 1.5rem; padding: 5rem; text-align: center; position: relative; overflow: hidden;
}
body.light-mode .cta-content {
    background: linear-gradient(135deg, #2563EB, #1D4ED8); /* Azul vibrante profundo de día */
}
.cta-content::before {
    content: ''; position: absolute; inset: 0; border-radius: 1.5rem; padding: 1px;
    background: linear-gradient(45deg, rgba(255,255,255,0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
}
.cta-content h2 { max-width: 600px; margin: 0 auto 1.5rem; color: #FFF; }
.cta-content p { max-width: 500px; margin: 0 auto 2.5rem; color: rgba(255,255,255,0.8); }
.cta-content .btn-primary { background: #FFFFFF; color: #1e3a8a; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.cta-content .btn-primary:hover { background: #F8FAFC; transform: translateY(-3px); }

/* --- Footer --- */
.footer { padding: 4rem 0 2rem; border-top: 1px solid var(--border-primary); }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; font-weight: 800; font-size: 1.25rem; }
.footer-logo img { height: 32px; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a, .footer-legal a { color: var(--text-secondary); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover, .footer-legal a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--text-secondary); }
.footer-legal { display: flex; gap: 1.5rem; }

.footer-socials { display: flex; gap: 1.5rem; align-items: center; }
.footer-socials a { color: var(--text-secondary); transition: color 0.3s ease, transform 0.3s ease; display: flex; }
.footer-socials a:hover { color: var(--brand-primary); transform: translateY(-3px); }
.footer-socials svg { width: 24px; height: 24px; }


/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 450px; }
    .pricing-card.popular { transform: scale(1); } /* En tablet/móvil no se hace zoom */
    .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .container { padding: 0 1rem; }
    
    .comparison-grid { grid-template-columns: 1fr; }
    
    .desktop-only { display: none !important; }
    
    .navbar-wrapper { top: 10px; }
    .navbar { width: 95%; padding: 0.5rem 1rem; }

    .mobile-nav-controls { display: flex !important; align-items: center; gap: 1rem; }
    .mobile-menu-toggle { display: flex; flex-direction: column; gap: 5px; width: 24px; height: 24px; cursor: pointer; background: none; border: none; }
    .mobile-menu-toggle span { width: 100%; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }
    .mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    
    .mobile-menu {
        position: absolute; top: 120%; left: 0; width: 100%; max-width: 100%; border-radius: 1.5rem;
        background: rgba(13, 17, 23, 0.98); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
        padding: 1.5rem 2rem; display: none !important; flex-direction: column; gap: 1rem;
        border: 1px solid var(--border-primary); box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        z-index: -1; justify-content: flex-start; align-items: flex-start; transform: translateY(-10px);
        opacity: 0; transition: all 0.3s var(--ease-out-cubic);
    }
    body.light-mode .mobile-menu { background: rgba(255, 255, 255, 0.98); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
    .mobile-menu.active { display: flex !important; transform: translateY(0); opacity: 1; z-index: 999; }
    .mobile-menu a { color: var(--text-primary); text-decoration: none; font-size: 1.25rem; font-weight: 600; padding: 0.75rem 0; width: 100%; text-align: left; border-bottom: 1px solid var(--border-primary); }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu .mobile-login-link { color: var(--brand-primary); font-weight: 800; }

    .hero { padding: 8rem 0 4rem 0; }
    .hero-dashboard { display: none; } 
    .social-proof { padding: 2rem 0 4rem; }
    .features, .comparison, .how-it-works, .pricing, .faq, .cta { padding: 4rem 0; }
    .steps-container::before { left: 14px; }
    .step { gap: 1rem; }
    .step-number { width: 30px; height: 30px; font-size: 1rem; }
    .cta-content { padding: 3rem 1.5rem; }
    .footer-top, .footer-bottom { flex-direction: column; gap: 2rem; }
    .footer-socials { justify-content: center; margin-top: 1rem; }
}
/* =========================================================
   BLOQUEO DE VERCEL TOOLBAR
========================================================= */
vercel-live-feedback,
vercel-toolbar,
#vercel-live-feedback {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: -9999 !important;
}