.cookie-consent-banner {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 800px;
        z-index: 99999;
        transition: all 0.5s ease-in-out;
    }
    .cookie-consent-banner.show {
        display: block !important;
        animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    @keyframes slideUpFade {
        0% { opacity: 0; transform: translate(-50%, 50px); }
        100% { opacity: 1; transform: translate(-50%, 0); }
    }
.highlight-share-tooltip {
        position: absolute;
        background: #1e293b;
        border-radius: 8px;
        padding: 5px 10px;
        display: flex;
        gap: 12px;
        z-index: 999999;
        transform: translate(-50%, -100%);
        margin-top: -10px;
        pointer-events: auto;
        opacity: 0;
        transition: opacity 0.2s ease, margin-top 0.2s ease;
    }
    .highlight-share-tooltip::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 6px 6px 0;
        border-style: solid;
        border-color: #1e293b transparent transparent transparent;
    }
    .highlight-share-tooltip.show {
        opacity: 1;
        margin-top: -15px;
    }
    .hs-btn {
        text-decoration: none;
        font-size: 1.1rem;
        transition: transform 0.2s;
    }
    .hs-btn:hover {
        transform: scale(1.2);
    }
    #hsTwitter:hover i { color: #1DA1F2 !important; }
    #hsWhatsapp:hover i { color: #25D366 !important; }
.back-to-top-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #0d6efd, #0dcaf0);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        z-index: 999998;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s ease;
        text-decoration: none;
    }
    .back-to-top-btn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .back-to-top-btn:hover {
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(13,110,253,0.4) !important;
    }
.global-page-loader {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(30, 41, 59, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 9999999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .global-page-loader.show {
        opacity: 1;
    }
    .loader-content {
        text-align: center;
        transform: scale(0.9);
        transition: transform 0.3s ease;
    }
    .global-page-loader.show .loader-content {
        transform: scale(1);
    }
.otonom-overlay {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        z-index: 10000000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .otonom-overlay.show {
        opacity: 1;
    }
    .otonom-overlay-backdrop {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(15, 23, 42, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    .otonom-overlay-content {
        position: relative;
        background: #1e293b;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        width: 90%;
        max-width: 600px;
        padding: 20px;
        transform: translateY(30px) scale(0.95);
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .otonom-overlay.show .otonom-overlay-content {
        transform: translateY(0) scale(1);
    }
    .otonom-overlay-body {
        max-height: 70vh;
        overflow-y: auto;
    }