/* Estilos para o contador de usuários online */
.online-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.online-counter:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.online-counter i {
    color: #4ade80;
    font-size: 16px;
    animation: pulse 2s infinite;
}

.online-counter #online-count {
    font-weight: 600;
    font-size: 16px;
    min-width: 20px;
    text-align: center;
}

.online-counter span:last-child {
    font-size: 12px;
    opacity: 0.8;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .online-counter {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .online-counter #online-count {
        font-size: 14px;
    }
    
    .online-counter span:last-child {
        display: none;
    }
}

