/* --- STICKY CTA SIDEBAR - PREMIUM ARCHITECTURAL DOCK --- */
.sticky-cta-sidebar {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(2, 6, 23, 0.8); /* Slate-950 with transparency */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px;
    border-radius: 40px; /* Deep rounded dock */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 48px;
    height: 48px;
    position: relative;
    border-radius: 50%;
    background: transparent;
}

.cta-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.cta-whatsapp:hover {
    color: #22C55E !important;
}

.cta-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.cta-icon i, 
.cta-icon svg {
    width: 20px !important;
    height: 20px !important;
    stroke-width: 2px;
}

.cta-text {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 12px;
}

.cta-item:hover .cta-text {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Status Accents Removed */


/* --- MOBILE RESPONSIVE BOTTOM BAR --- */
@media (max-width: 768px) {
    .sticky-cta-sidebar {
        bottom: 24px;
        top: auto;
        right: 24px;
        left: 24px;
        transform: none;
        flex-direction: row;
        border-radius: 20px;
        padding: 6px;
        height: auto;
        gap: 4px;
        justify-content: space-around;
        background: rgba(2, 6, 23, 0.9);
    }

    .cta-item {
        flex: 1;
        flex-direction: column;
        height: 56px;
        width: auto;
        padding: 8px 4px;
        border-radius: 14px;
        justify-content: center;
        gap: 4px;
    }

    .cta-item:hover {
        width: auto;
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }

    .cta-icon {
        margin-bottom: 0;
    }

    .cta-icon i,
    .cta-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .cta-text {
        position: static;
        opacity: 0.8;
        transform: none;
        background: transparent;
        backdrop-filter: none;
        border: none;
        padding: 0;
        margin: 0;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-align: center;
        white-space: normal;
        pointer-events: auto;
    }

    .cta-item:hover .cta-text {
        opacity: 1;
        transform: none;
    }

    .cta-item::before {
        display: none;
    }
}
